@font-face {
  font-family: "Saira Condensed Bold";
  src: url('../fonts/sairaCondensedBold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: "Rubik Regular";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/rubikRegular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
  background-color: #141A26;
  margin: 0;
  padding: 0;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
}
body img {
  width: 100%;
  height: auto;
}
body h1,
body h2,
body h3 {
  margin: 0;
  font-family: Saira Condensed Bold, sans-serif;
  text-transform: uppercase;
  font-weight: 100;
}
body #prompt_button {
  width: 250px;
  max-width: 80%;
  outline: none;
  border: none;
  padding: 5px 20px 8px 20px;
  text-align: center;
  border-radius: 30px;
  background: #EF712E;
  color: white;
  font-family: "Saira Condensed Bold";
  cursor: pointer;
  transition: translate 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  /* font-size: clamp(12px, 0.7vw + 0.7vh + 0.7vmax, 17px); */
  font-size: 25px;
  text-transform: uppercase;
}
body #prompt_button:hover {
  translate: 0 -2px;
}
@media (max-width: 768px) {
  body #prompt_button {
    font-size: 22px;
    margin: 14px auto 0;
    width: 200px;
  }
}
body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  width: 80%;
  padding: 45px 0;
}
body .container .container_column {
  width: 50%;
}
@media (max-width: 768px) {
  body .container .container_column {
    width: 100%;
  }
}
body .hero_section {
  background-image: url(../img/Header_Desktop.webp);
  background-color: #141A26;
  background-size: 100% auto;
  width: 100%;
  aspect-ratio: 128/57;
}
@media (max-width: 768px) {
  body .hero_section {
    /* background-image: url(../img/Header_Mobile.webp); */
    background-image: none;
    background-size: 100% 100%;
    background-position-y: bottom;
    background-repeat: no-repeat;
    aspect-ratio: unset;
  }
}
body .hero_section .container {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  body .hero_section .container {
    align-items: baseline;
    width: 100%;
  }
}
body .hero_section .container .main_logo {
  max-width: 150px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  body .hero_section .container .main_logo {
    margin-bottom: unset;
  }
}
body .hero_section .container .hero {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  body .hero_section .container .hero {
    flex-direction: column-reverse;
  }
}
body .hero_section .container .hero .container_column {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
body .hero_section .container .hero .container_column:nth-of-type(1) {
  width: 60%;
}
@media (max-width: 768px) {
  body .hero_section .container .hero .container_column {
    width: 100%;
    align-items: center;
  }
  body .hero_section .container .hero .container_column:nth-of-type(1) {
    gap: 15px;
    padding: 55px 0 0 0;
    max-width: 300px;
  }
  body .hero_section .container .hero .container_column:nth-of-type(2) {
    background-image: url(../img/Banner_Mobile.webp);
    background-size: 141%;
    background-position-x: center;
    background-position-y: bottom;
    aspect-ratio: 10 / 9;
    background-repeat: no-repeat;
    background-size: auto;
  }
}
body .hero_section .container .hero .container_column h1 {
  color: #f4f4f4;
  font-size: 46px;
  line-height: 48px;
  text-align: center;
  max-width: 90%;
}
@media (max-width: 768px) {
  body .hero_section .container .hero .container_column h1 {
    text-align: center;
    font-size: 34px;
    line-height: 30px;
  }
}
body .hero_section .container .hero .container_column h2 {
  color: #EF712E;
  text-align: center;
  font-size: 34px;
  line-height: 38px;
  max-width: 90%;
}
@media (max-width: 768px) {
  body .hero_section .container .hero .container_column h2 {
    text-align: center;
    font-size: 22px;
    line-height: 20px;
  }
}
body .instructons_section .container {
  max-width: 500px;
  align-items: start;
}
body .instructons_section .container h3 {
  color: white;
  font-size: 32px;
}
@media (max-width: 768px) {
  body .instructons_section .container h3 {
    font-size: 28px;
  }
}
body .instructons_section .container ol {
  padding-left: 20px;
}
body .instructons_section .container p {
  font-weight: bold;
}
body .instructons_section .container p,
body .instructons_section .container li {
  color: white;
  font-size: 22px;
  font-family: "Rubik Regular", sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  body .instructons_section .container p,
  body .instructons_section .container li {
    font-size: 19px;
  }
}

.langDropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}
.langDropdown .custom-select {
  position: relative;
  width: 150px;
  font-family: "Rubik Regular", sans-serif;
  text-align: center;
}
.langDropdown .custom-select .select-display {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  outline: none;
  display: flex;
  gap: 10px;
  user-select: none;
}
.langDropdown .custom-select .select-display img {
  width: 20px;
}
.langDropdown .custom-select .options {
  transition: all 0.2s ease-out;
  max-height: 0px;
  top: 0%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.langDropdown .custom-select .option {
  background-color: white;
  padding: 5px;
  cursor: pointer;
}
.langDropdown .custom-select .option:hover {
  background-color: #f0f0f0;
}/*# sourceMappingURL=index.css.map */