@import "./normalize.css";
@import "./hamburger.css";
/* GLOBAL STYLES */
body {
  font-family: Inter, sans-serif;
}

:root {
  --swiper-theme-color: white !important;
}

:root {
  scrollbar-color: rgb(24, 24, 24) rgb(241, 241, 241) !important;
  scrollbar-width: thin !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: unset;
  font-size: unset;
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #181818;
}

::-webkit-scrollbar-thumb:hover {
  background: #181818;
}

/* NAVBAR */
.navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  height: 156px;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .navbar {
    padding: 0 5% 0 5%;
  }
}
.navbar__spacer {
  width: 100%;
  height: 150px;
}
.navbar__spacer--scrolled {
  height: 102px;
  transition: all 0.5s ease-in-out;
}
.navbar__contact {
  display: none;
}
@media (max-width: 1024px) {
  .navbar__contact {
    display: block;
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 1000;
    cursor: pointer;
  }
  .navbar__contact > img {
    position: relative;
  }
  .navbar__contact-text {
    position: absolute;
    z-index: 1;
    left: 3px;
    top: 250px;
    width: 100%;
    white-space: nowrap;
    font-family: "Monument";
    font-size: 12px;
    line-height: 107.5%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    transform: rotate(-90deg);
  }
}
.navbar__light {
  color: white;
}
.navbar__light--scrolled {
  height: 102px;
  background-color: white;
  color: #181818;
  transition: all 0.5s ease-in-out;
}
.navbar--dark {
  color: #181818;
}
.navbar__container {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1920px;
}
.navbar__logo {
  height: 40px;
  width: 192px;
  display: block;
  cursor: pointer;
}
.navbar__logo--scrolled {
  display: none;
}
.navbar__logo-dark {
  display: none;
}
.navbar__logo-dark--scrolled {
  display: block;
}
.navbar__arrow {
  height: 12px;
  width: 12px;
  background-image: url("/assets/img/chevron-down.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.navbar__arrow--scrolled {
  background-image: url("/assets/img/chevron-down-black.svg");
}
.navbar__offer-dropdown {
  padding-top: 2px;
}
@media (max-width: 1280px) {
  .navbar__offer-dropdown {
    padding-top: 3px;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .navbar__offer-dropdown {
    display: none;
  }
}
.navbar__offer-dropdown-toggle {
  color: white;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.navbar__offer-dropdown-toggle--scrolled {
  color: #181818;
}
.navbar__offer-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #181818;
  border-radius: 0px 60px 60px 60px;
}
.navbar__offer-items {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 30px;
}
.navbar__offer-item {
  display: flex;
  padding: 8px 15px 10px;
  border: 1px solid #FFFFFF;
  border-radius: 55px;
  list-style-type: none;
  font-size: 18px;
  gap: 10px;
}
.navbar__offer-item > a {
  color: white;
}
.navbar__links {
  display: flex;
  gap: 2em;
  list-style-type: none;
  padding: 0;
  margin: 0;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .navbar__links {
    display: none;
  }
}
.navbar__links > li {
  cursor: pointer;
}
.navbar__links-item {
  text-decoration: none;
  color: white;
}
@media (max-width: 1280px) {
  .navbar__links-item {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .navbar__links-item {
    display: none;
  }
}
.navbar__links-item--scrolled {
  color: #181818;
}
.navbar__contact-btn {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-family: Monument, serif;
  background-color: #181818;
  color: #ffffff;
  border-radius: 15px;
  height: 44px;
  padding-left: 25px;
  padding-right: 25px;
  border: none;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  padding-top: 3px;
}
.navbar__contact-btn--scrolled {
  background: #7877F7;
}
@media (max-width: 1024px) {
  .navbar__contact-btn {
    display: none;
  }
}
.navbar__icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
  width: 1.125rem;
  height: 1rem;
  transition: all 0.2s ease-out;
  margin-left: 1.5rem;
}
.navbar__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .navbar__mobile {
    margin-top: 5px;
    display: block;
  }
}
.navbar__list::before {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar__list {
  display: none;
  position: fixed;
  flex-direction: column;
  align-items: center;
  padding-top: 125px;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 999;
  height: 100vh;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.29) 0%, rgba(0, 0, 0, 0.188154) 25.42%, rgba(0, 0, 0, 0.108012) 52.02%, rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0.25);
  background-blend-mode: multiply;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar__list_active {
  display: flex;
}
.navbar__list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 90px;
  color: white;
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid white;
  cursor: pointer;
}

/* FOOTER */
.footer {
  display: flex;
  flex-direction: column;
  background-image: url("/assets/img/footer/footer-bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__map {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  width: calc(100% - 48px);
  max-width: 1920px;
  border-radius: 35px;
}
.footer__map-bg {
  width: 100%;
}
@media (max-width: 520px) {
  .footer__map-bg {
    display: none;
  }
}
.footer__map-bg--mobile {
  display: none;
}
@media (max-width: 520px) {
  .footer__map-bg--mobile {
    display: block;
  }
}
.footer__map-radar {
  position: absolute;
  width: 10%;
  left: 53%;
  bottom: 27%;
  transition: transform 150s linear;
  cursor: pointer;
  z-index: 1;
  animation: radar 2s linear 0s infinite;
}
@media (max-width: 520px) {
  .footer__map-radar {
    width: 25%;
    left: 35%;
    bottom: unset;
    top: 31%;
  }
}
.footer__map-radar:hover {
  transform: rotate(36000deg);
}
@keyframes radar {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.footer__map_text {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  gap: 30px;
  padding: 140px 10%;
  font-family: "Monument", serif;
  color: white;
}
@media (max-width: 1024px) {
  .footer__map_text {
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .footer__map_text {
    padding: 25% 10% 15%;
    justify-content: end;
    gap: 40px;
  }
}
.footer__map_text-header {
  font-size: 64px;
  text-transform: uppercase;
  margin-bottom: 92px;
}
@media (max-width: 1280px) {
  .footer__map_text-header {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .footer__map_text-header {
    font-size: 36px;
  }
}
@media (max-width: 520px) {
  .footer__map_text-header {
    font-size: 28px;
  }
}
.footer__map_text-street {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__map_text-street {
    gap: 25px;
  }
}
.footer__map_text-street > img {
  height: 30px;
}
@media (max-width: 768px) {
  .footer__map_text-street > img {
    height: 20px;
  }
}
.footer__map_text-street-content {
  font-size: 18px;
  line-height: 150%;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer__map_text-street-content {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer__map_text-street-content {
    font-size: 14px;
  }
}
.footer__map_text-street-content > img {
  margin-left: 10px;
  cursor: pointer;
}
.footer__map_text-email {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__map_text-email {
    gap: 25px;
  }
}
.footer__map_text-email > img {
  height: 16px;
}
@media (max-width: 768px) {
  .footer__map_text-email > img {
    height: 14px;
  }
}
.footer__map_text-email-content {
  font-size: 18px;
  line-height: 150%;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer__map_text-email-content {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer__map_text-email-content {
    font-size: 14px;
  }
}
.footer__map_text-email-content > a {
  color: white;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 10%;
  color: white;
}
@media (max-width: 1024px) {
  .footer__content {
    padding: 10% 5%;
  }
}
@media (max-width: 768px) {
  .footer__content {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.footer__left-logo > img {
  margin-bottom: 15px;
}
.footer__left-media-icons {
  display: inline-flex;
  gap: 20px;
  margin-bottom: 15px;
}
.footer__left-media-icons > img {
  height: 24px;
  width: 24px;
}
@media (max-width: 768px) {
  .footer__left-media {
    display: none;
  }
}
.footer__left-media-bottom {
  display: none;
}
@media (max-width: 768px) {
  .footer__left-media-bottom {
    display: block;
  }
}
.footer__right {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
    flex-grow: 1;
    justify-content: space-between;
    gap: unset;
  }
}
@media (max-width: 520px) {
  .footer__right {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }
}
.footer__right-column-l {
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
}
@media (max-width: 520px) {
  .footer__right-column-l {
    width: 100%;
  }
}
.footer__right-column-r {
  display: flex;
  flex-direction: column;
  text-align: right;
  height: 100%;
}
@media (max-width: 520px) {
  .footer__right-column-r {
    text-align: left;
  }
}
.footer__right-header {
  font-family: Monument, serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .footer__right-header {
    margin-bottom: 20px;
  }
}
.footer__right-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0px;
  flex-grow: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
}
@media (max-width: 520px) {
  .footer__right-item {
    justify-content: unset;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
  }
}
.footer__right-item > div {
  width: 100%;
}
.footer__right-item > a {
  color: white;
}
@media (max-width: 520px) {
  .footer__right-item > a {
    width: 45%;
  }
}
.footer__right-item_big {
  line-height: 150%;
}
.footer__right-item_big > a {
  color: white;
}
.footer__docs {
  color: white;
}

@font-face {
  font-family: "Monument";
  src: url("../fonts/MonumentExtended-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*# sourceMappingURL=main.css.map */
