@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Colors */
  --primary: #2f3975;
  --textColor: #2a2829;
  --white: #fff;
  --black: #000;

  /* Font */
  --lufga: lufga, sans-serif;
  --raleway: "Raleway", sans-serif;
  --montserrat: "Montserrat", sans-serif;

  --fs-32: calc(30px + (32 - 30) * ((100vw - 320px) / (1920 - 320)));
  --fs-16: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  --fs-18: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  --fs-15: calc(13px + (15 - 13) * ((100vw - 320px) / (1920 - 320)));
  --fs-20: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
  --fs-24: calc(22px + (24 - 22) * ((100vw - 320px) / (1920 - 320)));
  --fs-30: calc(28px + (30 - 28) * ((100vw - 320px) / (1920 - 320)));
  --fs-40: calc(38px + (40 - 38) * ((100vw - 320px) / (1920 - 320)));
  --fs-42: calc(40px + (42 - 40) * ((100vw - 320px) / (1920 - 320)));
  --fs-45: calc(43px + (45 - 43) * ((100vw - 320px) / (1920 - 320)));
  --fs-75: calc(73px + (75 - 73) * ((100vw - 320px) / (1920 - 320)));
  --fs-80: calc(78px + (80 - 78) * ((100vw - 320px) / (1920 - 320)));
  --fs-50: calc(58px + (60 - 58) * ((100vw - 320px) / (1920 - 320)));
  --fs-100: calc(98px + (100 - 98) * ((100vw - 320px) / (1920 - 320)));
  --fs-120: calc(118px + (120 - 118) * ((100vw - 320px) / (1920 - 320)));
  --fs-150: calc(148px + (150 - 148) * ((100vw - 320px) / (1920 - 320)));
  --fs-180: calc(178px + (180 - 178) * ((100vw - 320px) / (1920 - 320)));
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--montserrat);
  scroll-behavior: smooth;
  font-size: 16px;
}

.container {
  width: 1920px;
  max-width: 95%;
  margin: 0 auto;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Custom font */
@font-face {
  font-family: lufga;
  src: url("~/static/lufga_fonts/Lufga-Thin.otf");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: lufga;
  src: url("~/static/lufga_fonts/Lufga-SemiBold.otf");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: lufga;
  src: url("~/static/lufga_fonts/Lufga-Medium.otf");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: lufga;
  src: url("~/static/lufga_fonts/Lufga-Regular.otf");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: lufga;
  src: url("~/static/lufga_fonts/Lufga-Bold.otf");
  font-style: normal;
  font-weight: 700;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 14px;
  }
}
