@charset "UTF-8";
@font-face {
  font-family: "Opulent";
  src: url("../assets/fonts/opulent-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("../assets/fonts/suisse-intl-light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url("../assets/fonts/suisse-intl-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 3.72vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1024px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "Suisse Intl", sans-serif;
  font-size: 3.72vw;
  line-height: 1.56;
  color: #302e2d;
  background-color: #ffffff;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body {
    font-size: 0.8333333333vw;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

.iti--fullscreen-popup.iti--container {
  min-height: 100%;
}

.iti__arrow {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Opulent", sans-serif;
  font-weight: 300;
  line-height: 1.1;
  color: #302e2d;
}

.h1-mobile {
  font-family: "Opulent", sans-serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.h1-desktop {
  font-family: "Opulent", sans-serif;
  font-size: 7.875rem;
  font-weight: 300;
  line-height: 1.2;
}

h2,
.h2 {
  font-family: "Opulent", sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.2;
}

h3,
.h3 {
  font-family: "Opulent", sans-serif;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1.2;
}

h4,
.h4 {
  font-family: "Opulent", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

h5,
.h5 {
  font-family: "Opulent", sans-serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.2;
}

h6,
.h6 {
  font-family: "Opulent", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
}

p {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.56;
  color: #606269;
}

.caption {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.text-primary {
  color: #302e2d;
}

.text-secondary {
  color: #606269;
}

.text-tertiary {
  color: rgba(255, 255, 255, 0.7);
}

.text-invert {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.container {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 2rem;
}

.gap-2xl {
  gap: 3.5rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button {
  background-color: #0c2726;
  color: #ffffff;
}
.button:hover {
  background-color: rgb(6, 19.5, 19);
}
.button:active {
  background-color: black;
}
.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button:disabled:hover {
  background-color: inherit;
}
.button--primary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--primary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--primary {
  background-color: #0c2726;
  color: #ffffff;
}
.button--primary:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--primary:active {
  background-color: black;
}
.button--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--primary:disabled:hover {
  background-color: inherit;
}
.button--secondary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--secondary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--secondary {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.button--secondary:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--secondary:active {
  background-color: #cccccc;
}
.button--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--secondary:disabled:hover {
  background-color: inherit;
}
.button--small {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .button--small {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.button--small {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--small {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--small {
  background-color: #0c2726;
  color: #ffffff;
}
.button--small:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--small:active {
  background-color: black;
}
.button--small:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--small:disabled:hover {
  background-color: inherit;
}
.button--medium {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--medium {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--medium {
  background-color: #0c2726;
  color: #ffffff;
}
.button--medium:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--medium:active {
  background-color: black;
}
.button--medium:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--medium:disabled:hover {
  background-color: inherit;
}
.button--large {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 1.5rem 1.5rem;
  height: 3.75rem;
}
@media (min-width: 1024px) {
  .button--large {
    font-size: 0.9375rem;
    line-height: 0.9375rem;
    height: 3.75rem;
  }
}
.button--large {
  background-color: #0c2726;
  color: #ffffff;
}
.button--large:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--large:active {
  background-color: black;
}
.button--large:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--large:disabled:hover {
  background-color: inherit;
}
.button--primary.button--small {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .button--primary.button--small {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.button--primary.button--small {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--primary.button--small {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--primary.button--small {
  background-color: #0c2726;
  color: #ffffff;
}
.button--primary.button--small:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--primary.button--small:active {
  background-color: black;
}
.button--primary.button--small:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--primary.button--small:disabled:hover {
  background-color: inherit;
}
.button--primary.button--large {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 1.5rem 1.5rem;
  height: 3.75rem;
}
@media (min-width: 1024px) {
  .button--primary.button--large {
    font-size: 0.9375rem;
    line-height: 0.9375rem;
    height: 3.75rem;
  }
}
.button--primary.button--large {
  background-color: #0c2726;
  color: #ffffff;
}
.button--primary.button--large:hover {
  background-color: rgb(6, 19.5, 19);
}
.button--primary.button--large:active {
  background-color: black;
}
.button--primary.button--large:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--primary.button--large:disabled:hover {
  background-color: inherit;
}
.button--secondary.button--small {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .button--secondary.button--small {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.button--secondary.button--small {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--secondary.button--small {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--secondary.button--small {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.button--secondary.button--small:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--secondary.button--small:active {
  background-color: #cccccc;
}
.button--secondary.button--small:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--secondary.button--small:disabled:hover {
  background-color: inherit;
}
.button--secondary.button--medium {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .button--secondary.button--medium {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.button--secondary.button--medium {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.button--secondary.button--medium:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--secondary.button--medium:active {
  background-color: #cccccc;
}
.button--secondary.button--medium:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--secondary.button--medium:disabled:hover {
  background-color: inherit;
}
.button--secondary.button--large {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 1.5rem 1.5rem;
  height: 3.75rem;
}
@media (min-width: 1024px) {
  .button--secondary.button--large {
    font-size: 0.9375rem;
    line-height: 0.9375rem;
    height: 3.75rem;
  }
}
.button--secondary.button--large {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.button--secondary.button--large:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.button--secondary.button--large:active {
  background-color: #cccccc;
}
.button--secondary.button--large:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button--secondary.button--large:disabled:hover {
  background-color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: transparent;
  padding: 0.75rem 1rem;
  height: 4.25rem;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    padding: 0.75rem 1rem;
  }
}
@media (min-width: 1024px) {
  .header {
    padding: 0.75rem 12.5rem;
  }
}
.header--scrolled {
  background-color: #ffffff;
}
.header--scrolled .header__nav-item {
  color: #302e2d;
}
.header--scrolled .header__lang-text {
  color: #302e2d;
}
.header--scrolled .header__lang-icon path {
  stroke: #302e2d;
}
.header--scrolled .header__logo img {
  filter: invert(1);
}
.header--scrolled .header__menu-line {
  background-color: #302e2d;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 3.4375rem;
}

.header__logo {
  height: 2.5rem;
  width: 9.0625rem;
  position: relative;
  overflow: hidden;
}
.header__logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  transition: filter 0.3s ease;
}

.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.header__nav-item {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.15s ease, color 0.3s ease;
}
.header__nav-item:hover {
  opacity: 0.7;
}

.header__actions {
  display: none;
}
@media (min-width: 1024px) {
  .header__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__lang-frame {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__lang-text {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__lang-icon {
  display: block;
  width: 1rem;
  height: 1rem;
}
.header__lang-icon path {
  stroke: #ffffff;
  transition: stroke 0.3s ease;
}

.header__menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__menu.active .header__menu-line:nth-child(1) {
  transform: rotate(45deg) translateY(0.5rem);
}
.header__menu.active .header__menu-line:nth-child(2) {
  opacity: 0;
}
.header__menu.active .header__menu-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-0.5rem);
}

.header__menu-line {
  display: block;
  width: 1.5rem;
  height: 0.096rem;
  background-color: #ffffff;
  border-radius: 30px;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.3s ease;
}

.header__mobile-menu {
  position: fixed;
  top: 4.25rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header__mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}
.header__mobile-menu.active {
  transform: translateX(0);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-container {
  display: flex;
  flex-direction: column;
  padding: 3.5rem 0;
  min-height: 100%;
  gap: 3.5rem;
  padding-bottom: max(3rem, env(safe-area-inset-bottom, 3rem));
}

.header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header__mobile-nav-item {
  font-family: "Opulent", sans-serif;
  font-size: 1.375rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #302e2d;
  text-decoration: none;
  text-align: center;
  padding: 1rem 1.5rem;
  border-bottom: 0px solid #e7e6e3;
  transition: all 0.15s ease;
  position: relative;
}
.header__mobile-nav-item::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 1px;
  background: #e7e6e3;
  transition: background 0.15s ease;
}
.header__mobile-nav-item:last-child {
  border-bottom: none;
}
.header__mobile-nav-item:last-child::before {
  display: none;
}
.header__mobile-nav-item:active {
  background: rgba(0, 0, 0, 0.02);
  transform: scale(0.98);
}
.header__mobile-nav-item::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.15s ease;
  color: #606269;
}
.header__mobile-nav-item:active::after {
  opacity: 1;
  transform: translateX(0);
}

.header__mobile-actions {
  margin-top: auto;
  padding: 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header__mobile-button {
  width: 100%;
  box-shadow: 0 4px 16px rgba(12, 39, 38, 0.15);
}
.header__mobile-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(12, 39, 38, 0.15);
}

.hero {
  position: relative;
  min-height: 52.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 1rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding: 4rem 1rem 3.5rem;
    max-height: 100vh;
    box-sizing: border-box;
    min-height: 120vw;
    height: 100vh;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 56.25rem;
    padding: 0rem;
    padding-bottom: 6rem;
    align-items: flex-end;
  }
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(rgba(0, 0, 0, 0) 67.476%, rgba(0, 0, 0, 0.2) 77.233%), linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media (min-width: 1024px) {
  .hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: 6rem;
    gap: 2rem;
    max-width: 100rem;
  }
}

.hero__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .hero__header {
    gap: 0.5rem;
    max-width: 60rem;
  }
}

.hero__location {
  margin-bottom: 0.5rem;
}

.hero__title {
  margin: 0;
  line-height: 1.1;
  font-size: 4.5rem;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 7.875rem;
    line-height: 1.2;
  }
}

.hero__subtitle {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.125rem;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero__actions {
    flex-direction: column;
    gap: 2rem;
    width: 45.125rem;
    flex-shrink: 0;
  }
}

.hero__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 10.8125rem;
}

.hero__price-label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #ffffff;
}

.hero__price-value {
  font-family: "Opulent", sans-serif;
  font-size: 1.625rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .hero__price-value {
    font-size: 2.375rem;
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    gap: 0.5rem;
    width: auto;
  }
}

.advantages {
  background-color: #0c2726;
  padding: 4.5rem 1rem;
}
@media (min-width: 1024px) {
  .advantages {
    padding: 9rem 12.5rem;
  }
}

.advantages__container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .advantages__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}

.advantages__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .advantages__header {
    gap: 0.5rem;
    margin-bottom: 0;
    max-width: 38.5rem;
    flex: 0 0 38.5rem;
  }
}

.advantages__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .advantages__title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.advantages__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .advantages__description {
    font-size: 1rem;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.7);
  }
}

.advantages__list {
  display: grid;
  gap: 1rem;
  max-width: 100%;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .advantages__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 40.75rem;
    max-width: 40.75rem;
  }
}

.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 1024px) {
  .advantages__item {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .advantages__item:last-child {
    border-bottom: none;
    padding-bottom: 1rem;
  }
}

.advantages__item-label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media (min-width: 1024px) {
  .advantages__item-label {
    text-align: left;
    font-size: 1rem;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.7);
  }
}

.advantages__item-value {
  font-family: "Opulent", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .advantages__item-value {
    font-size: 2rem;
    line-height: 1.2;
    text-align: right;
    color: #ffffff;
  }
}

.slider {
  background-color: #ffffff;
  padding: 4.5rem 0px 1.5rem;
}
.slider__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .slider__header {
    margin-bottom: 3.5rem;
    align-items: space-between;
    text-align: left;
  }
}

.slider__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .slider__title {
    font-size: 3.5rem;
    max-width: 47.5rem;
    line-height: 1.2;
  }
}

.slider__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .slider__description {
    max-width: 47.5rem;
  }
}

.slider__slides {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .slider__slides {
    max-width: 100%;
    gap: 6rem;
  }
}

.slider__slide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .slider__slide {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .slider__slide:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.slider__image-card {
  position: relative;
  height: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1024px) {
  .slider__image-card {
    width: 62.8125rem;
    height: 32.5rem;
    flex-shrink: 0;
  }
}
.slider__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider__image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slider__pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
}

.slider__dot {
  width: 2.5rem;
  height: 0.1875rem;
  border-radius: 0.125rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.slider__dot--active {
  background-color: #e7e6e3;
}

.slider__content-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0 1rem;
  border-radius: 0.5rem;
}
@media (min-width: 1024px) {
  .slider__content-card {
    width: 30.6875rem;
    height: 32.5rem;
    padding: 2rem;
    justify-content: center;
    flex-shrink: 0;
  }
}

.slider__slide-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .slider__slide-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}

.slider__slide-description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.56;
}
@media (min-width: 1024px) {
  .slider__slide-description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.slider__buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}
@media (min-width: 1024px) {
  .slider__buttons {
    justify-content: left;
    gap: 0.5rem;
  }
}

.slider__button {
  flex: 1;
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .slider__button {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.slider__button {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .slider__button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.slider__button {
  background-color: #0c2726;
  color: #ffffff;
}
.slider__button:hover {
  background-color: rgb(6, 19.5, 19);
}
.slider__button:active {
  background-color: black;
}
.slider__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider__button:disabled:hover {
  background-color: inherit;
}
.slider__button--primary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .slider__button--primary {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.slider__button--primary {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .slider__button--primary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.slider__button--primary {
  background-color: #0c2726;
  color: #ffffff;
}
.slider__button--primary:hover {
  background-color: rgb(6, 19.5, 19);
}
.slider__button--primary:active {
  background-color: black;
}
.slider__button--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider__button--primary:disabled:hover {
  background-color: inherit;
}
.slider__button--secondary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.6rem;
  padding: 0.5rem 0.5rem;
  height: 2.75rem;
}
@media (min-width: 1024px) {
  .slider__button--secondary {
    font-size: 0.6rem;
    line-height: 0.75rem;
    height: 2.75rem;
    max-height: 2.75rem;
  }
}
.slider__button--secondary {
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .slider__button--secondary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.slider__button--secondary {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.slider__button--secondary:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.slider__button--secondary:active {
  background-color: #cccccc;
}
.slider__button--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider__button--secondary:disabled:hover {
  background-color: inherit;
}

.map {
  background-color: #ffffff;
  padding: 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .map {
    padding: 4.5rem 0 0;
  }
}

.map__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .map__header {
    max-width: 47.5rem;
    margin-bottom: 0.625rem;
  }
}

.map__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .map__title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.map__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .map__description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.map__tabs {
  display: inline-flex;
  border: 1px solid #e7e6e3;
  border-radius: 9999px;
  padding: 0.25rem;
  gap: 0.25rem;
  margin: 0 auto;
}

.map__tab {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  background-color: #ffffff;
  color: #302e2d;
  transition: all 0.15s ease;
}
.map__tab--active {
  background-color: #0c2726;
  color: #ffffff;
}
.map__tab:hover:not(.map__tab--active) {
  background-color: rgba(0, 0, 0, 0.02);
}

.map__container {
  position: relative;
  height: 26.875rem;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 1024px) {
  .map__container {
    height: 40rem;
    width: 116rem;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
  }
}

.map__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.15s ease;
}
@media (min-width: 1024px) {
  .map__overlay {
    border-radius: 0.5rem;
  }
}
.map__overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.map__overlay-text {
  font-family: "Opulent", sans-serif;
  font-size: 1.375rem;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .map__overlay-text {
    font-size: 1.625rem;
  }
}

.map__image {
  position: absolute;
  inset: 0;
}
.map__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .map__image img {
    border-radius: 0.5rem;
  }
}

.map__mapbox {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
@media (min-width: 1024px) {
  .map__mapbox {
    border-radius: 0.5rem;
    overflow: hidden;
  }
}

.mapboxgl-map {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .mapboxgl-map {
    border-radius: 0.5rem;
  }
}

.custom-marker {
  pointer-events: none;
}

.map__markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map__marker {
  position: absolute;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  color: #302e2d;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.map__marker:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.map-details {
  background-color: #ffffff;
  padding: 4.5rem 0 0;
}
.map-details .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .map-details {
    padding: 4.5rem 12.5rem;
  }
  .map-details .container {
    display: flex;
    flex-direction: row;
    display: flex;
    gap: 3.5rem;
  }
}

.map-details__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .map-details__item {
    flex: 1;
    margin-bottom: 0;
    gap: 0.5rem;
  }
}
.map-details__item:last-child {
  margin-bottom: 0;
}

.map-details__time {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .map-details__time {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}

.map-details__location {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .map-details__location {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.amenities {
  background-color: #ffffff;
  padding: 1.5rem 1rem 4.5rem;
}
@media (min-width: 1024px) {
  .amenities {
    padding: 4.5rem 12.5rem;
  }
}

.amenities__header {
  margin-bottom: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .amenities__header {
    max-width: 47.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
  }
}

.amenities__title {
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .amenities__title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .amenities__grid {
    grid-template-columns: repeat(4, 22.625rem);
    gap: 1.5rem;
    max-width: 95rem;
    justify-content: start;
  }
}

.amenities__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .amenities__card {
    width: 22.625rem;
    gap: 2rem;
  }
}

.amenities__image {
  height: 11.625rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .amenities__image {
    width: 22.625rem;
    height: 22.625rem;
  }
}
.amenities__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.amenities__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.amenities__card--placeholder {
  background-color: #f8f8f8;
  height: 11.625rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .amenities__card--placeholder {
    width: 22.625rem;
    height: 22.625rem;
  }
}

.amenities__card-title {
  font-size: 1.375rem;
  line-height: 1.2;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .amenities__card-title {
    font-size: 2rem;
    line-height: 1.2;
    padding: 0 1.25rem;
  }
}

.cards {
  background-color: #ffffff;
  padding: 1.5rem 1rem 4.5rem;
}
@media (min-width: 1024px) {
  .cards {
    padding: 4.5rem 12.5rem;
  }
}

.cards__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .cards__header {
    max-width: 47.5rem;
    margin-bottom: 3.5rem;
    align-items: center;
    text-align: center;
  }
}

.cards__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .cards__title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.cards__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .cards__description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.cards__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .cards__list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 100%;
  }
}

.cards__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border: 1px solid #e7e6e3;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .cards__card {
    flex: 1;
    flex-direction: column;
    gap: 3.5rem;
    padding: 2rem;
    align-items: flex-start;
  }
}

.cards__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .cards__icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.cards__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cards__content {
  flex: 1;
}
@media (min-width: 1024px) {
  .cards__content {
    padding-right: 3.5rem;
  }
}

.cards__card-title {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cards__card-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}

.cards__card-description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.56;
}
@media (min-width: 1024px) {
  .cards__card-description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.company {
  background-color: #ffffff;
  padding: 1.5rem 1rem 4.5rem;
}
@media (min-width: 1024px) {
  .company {
    padding: 4.5rem 12.5rem 9rem;
  }
}

.company__container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .company__container {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.company__image {
  width: 100%;
  height: 20rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .company__image {
    flex: 1;
    height: 32.5rem;
    margin-bottom: 0;
  }
}
.company__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company__card {
  border: 1px solid #e7e6e3;
  border-radius: 0.5rem;
  padding: 3.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease;
}
.company__card:hover {
  border-color: #0c2726;
}
@media (min-width: 1024px) {
  .company__card {
    flex: 1;
    height: 32.5rem;
    padding: 3.5rem;
    justify-content: space-between;
  }
}

.company__logo {
  height: 2.5rem;
  width: 9.27rem;
}
@media (min-width: 1024px) {
  .company__logo {
    height: 2.5rem;
    width: 9.27rem;
  }
}
.company__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .company__content {
    gap: 1rem;
  }
}

.company__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .company__title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}

.company__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
}
@media (min-width: 1024px) {
  .company__description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.company__pin {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid #e7e6e3;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .company__pin {
    top: 2rem;
    right: 2rem;
    bottom: auto;
  }
}
.company__pin img {
  width: 1.25rem;
  height: 1.25rem;
}

.form {
  background-color: #0c2726;
  padding: 4.5rem 1rem;
  position: relative;
}
@media (min-width: 1024px) {
  .form {
    padding: 9rem 12.5rem;
  }
}

.form__container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .form__container {
    display: flex;
    align-items: flex-end;
  }
}

.form__modal {
  background-color: #ffffff;
  border: 0px solid #e7e6e3;
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .form__modal {
    flex: 1;
    padding: 3.5rem;
    margin: 0;
  }
}

.form__content {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .form__content {
    gap: 4rem;
    max-width: 43.375rem;
  }
}

.form__header {
  margin-top: 1.5rem;
}
@media (min-width: 1024px) {
  .form__header {
    margin-top: 0;
    max-width: 47.5rem;
  }
}

.form__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .form__title {
    font-size: 3.5rem;
    line-height: 3.5rem;
    margin-bottom: 0.5rem;
  }
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .form__fields {
    gap: 4rem;
  }
}

.form__fields-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .form__fields-row {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding-bottom: 1.5rem;
  position: relative;
}
@media (min-width: 1024px) {
  .form__field {
    flex: 1;
    gap: 1rem;
  }
}
.form__field.has-error {
  border-bottom-color: #d93025;
}

.form__error {
  color: #d93025;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  line-height: 1.25rem;
  margin-top: -0.5rem;
}

.form__label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  line-height: 1.25rem;
  color: #606269;
}
@media (min-width: 1024px) {
  .form__label {
    font-size: 0.9375rem;
  }
}

.form__input {
  border: none;
  padding: 0.5rem 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #302e2d;
  background: transparent;
  height: 1.5rem;
}
.form__input:focus {
  outline: none;
  border-bottom-color: #0c2726;
}
.form__input::placeholder {
  color: #606269;
}

.iti {
  height: 1.5rem;
}

.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .iti__country-list {
    max-height: 300px;
  }
}

.form__phone-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding-bottom: 0.5rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .form__phone-group {
    height: 3.25rem;
  }
}

.form__phone-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  height: 2.75rem;
}

.form__flag {
  width: 1.5rem;
  height: 1.5rem;
}
.form__flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form__phone-divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(34, 34, 34, 0.2);
}
@media (min-width: 1024px) {
  .form__phone-divider {
    height: 2.5rem;
  }
}

.form__phone-input {
  border: none;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #302e2d;
  background: transparent;
  flex: 1;
}
.form__phone-input:focus {
  outline: none;
}

.form__actions-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .form__actions-row {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
  }
}

.form__checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .form__checkbox {
    width: 20.9375rem;
    flex-shrink: 0;
  }
}

.form__checkbox-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form__checkbox-label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #606269;
}
.form__checkbox-label a {
  color: #302e2d;
  text-decoration: underline;
}

.form__submit {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .form__submit {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.form__submit {
  background-color: #0c2726;
  color: #ffffff;
}
.form__submit:hover {
  background-color: rgb(6, 19.5, 19);
}
.form__submit:active {
  background-color: black;
}
.form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form__submit:disabled:hover {
  background-color: inherit;
}
.form__submit {
  width: 100%;
}
@media (min-width: 1024px) {
  .form__submit {
    flex: 1;
    width: auto;
  }
}

.form__image {
  position: relative;
  height: 18.5625rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e7e6e3;
}
@media (min-width: 1024px) {
  .form__image {
    position: absolute;
    bottom: -0.03125rem;
    right: 0px;
    height: 33.75rem;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.form__image img {
  width: 44rem;
  height: au;
  object-fit: cover;
  object-position: center;
}

.form__contact-card {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
  width: 70vw;
}
@media (min-width: 1024px) {
  .form__contact-card {
    bottom: 2rem;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    padding: 0.75rem 1.25rem;
  }
}

.form__contact-avatar {
  position: absolute;
  top: -1.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.13475rem;
  height: 2.2925625rem;
}
@media (min-width: 1024px) {
  .form__contact-avatar {
    display: none;
  }
}
.form__contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form__contact-name {
  font-family: "Opulent", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #302e2d;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .form__contact-name {
    font-size: 1.125rem;
    line-height: 1.2;
    margin-top: 0;
    text-transform: uppercase;
  }
}

.form__contact-role {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #606269;
}

.surroundings {
  background-color: #ffffff;
  padding: 4.5rem 1rem;
}
@media (min-width: 1024px) {
  .surroundings {
    padding: 9rem 12.5rem 4.5rem;
  }
}

.surroundings__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .surroundings__header {
    max-width: 47.5rem;
    align-items: center;
    text-align: center;
  }
}

.surroundings__title {
  font-family: "Opulent", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  font-size: 1.75rem;
}
@media (min-width: 1024px) {
  .surroundings__title {
    font-size: 3.5rem;
  }
}

.surroundings__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  color: #606269;
}

.surroundings__grid {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .surroundings__grid {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.surroundings__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.surroundings__image {
  height: 15rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .surroundings__image {
    height: 20rem;
  }
}
.surroundings__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.surroundings__card-title {
  font-family: "Opulent", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  font-size: 2rem;
}

.surroundings__card-description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  color: #606269;
}

.popup-form__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.popup-form__overlay--hidden {
  display: none;
}

.popup-form__container {
  position: relative;
  width: 100%;
  max-width: 24.875rem;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .popup-form__container {
    max-width: 60rem;
  }
}

.popup-form__modal {
  background-color: #ffffff;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .popup-form__modal {
    flex-direction: row;
    align-items: stretch;
  }
}

.popup-form__image {
  position: relative;
  height: 15.625rem;
  width: 100%;
  flex-shrink: 0;
  order: -1;
}
@media (min-width: 1024px) {
  .popup-form__image {
    order: 1;
    flex: 1;
    height: auto;
    min-height: auto;
  }
}
.popup-form__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.popup-form__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 301;
}
@media (min-width: 1024px) {
  .popup-form__close {
    top: 1rem;
    right: 1rem;
  }
}

.popup-form__close-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.15s ease;
}
.popup-form__close-button:hover {
  background-color: rgb(255, 255, 255);
}
.popup-form__close-button svg {
  width: 1rem;
  height: 1rem;
}

.popup-form__content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .popup-form__content {
    padding: 3.5rem;
    gap: 4rem;
    flex: 1;
  }
}

.popup-form__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.popup-form__title {
  font-family: "Opulent", sans-serif;
  font-size: 1.625rem;
  line-height: 1.14;
  color: #302e2d;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-form__title {
    font-size: 2.375rem;
  }
}

.popup-form__subtitle {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.56;
  color: #606269;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-form__subtitle {
    font-size: 1rem;
  }
}

.popup-form__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .popup-form__fields {
    gap: 4rem;
  }
}

.popup-form__fields-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .popup-form__fields-row {
    gap: 2rem;
  }
}

.popup-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding-bottom: 1.5rem;
  min-height: 3.25rem;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .popup-form__field {
    width: 100%;
    gap: 0.5rem;
  }
}
.popup-form__field.has-error {
  border-bottom-color: #d93025;
}

.popup-form__error {
  color: #d93025;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  line-height: 1.25rem;
  margin-top: -0.5rem;
}

.popup-form__label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  line-height: 1.25rem;
  color: #606269;
}
@media (min-width: 1024px) {
  .popup-form__label {
    font-size: 0.9375rem;
  }
}

.popup-form__input {
  border: none;
  padding: 0.5rem 0;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #302e2d;
  background: transparent;
  height: 1.5rem;
}
.popup-form__input:focus {
  outline: none;
}
.popup-form__input::placeholder {
  color: #606269;
}

.popup-form__phone-input {
  border: none;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #302e2d;
  background: transparent;
  flex: 1;
}
.popup-form__phone-input:focus {
  outline: none;
}

.popup-form__field .iti {
  height: 1.5rem;
  width: 100%;
}
.popup-form__field .iti .iti__flag-container {
  height: 2.75rem;
}
.popup-form__field .iti .iti__selected-flag {
  padding: 0.25rem 0.5rem;
  height: 2.75rem;
  border-radius: 0.625rem;
}
.popup-form__field .iti .iti__arrow {
  width: 1rem;
  height: 1rem;
}
.popup-form__field .iti .iti__divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(34, 34, 34, 0.2);
  margin: 0 0.5rem;
}
.popup-form__field .iti input {
  padding: 0.5rem 0;
  height: 1.5rem;
}

.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 410;
}
@media (min-width: 1024px) {
  .iti__country-list {
    max-height: 300px;
  }
}

.popup-form__actions-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .popup-form__actions-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

.popup-form__checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .popup-form__checkbox {
    width: 20.9375rem;
    flex-shrink: 0;
  }
}

.popup-form__checkbox-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.popup-form__checkbox-label {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  color: #606269;
}
.popup-form__checkbox-label a {
  color: #302e2d;
  text-decoration: underline;
}

.popup-form__submit {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .popup-form__submit {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.popup-form__submit {
  background-color: #0c2726;
  color: #ffffff;
}
.popup-form__submit:hover {
  background-color: rgb(6, 19.5, 19);
}
.popup-form__submit:active {
  background-color: black;
}
.popup-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.popup-form__submit:disabled:hover {
  background-color: inherit;
}
.popup-form__submit {
  width: 100%;
}
@media (min-width: 1024px) {
  .popup-form__submit {
    flex: 1;
    width: auto;
  }
}

.popup-success__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 401;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.popup-success__overlay--hidden {
  display: none;
}

.popup-success__container {
  position: relative;
  width: 100%;
  max-width: 24.875rem;
}
@media (min-width: 1024px) {
  .popup-success__container {
    max-width: 28rem;
  }
}

.popup-success__modal {
  background-color: #ffffff;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.popup-success__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 301;
}
@media (min-width: 1024px) {
  .popup-success__close {
    top: 1rem;
    right: 1rem;
  }
}

.popup-success__close-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.15s ease;
}
.popup-success__close-button:hover {
  background-color: rgb(255, 255, 255);
}
.popup-success__close-button svg {
  width: 1rem;
  height: 1rem;
}

.popup-success__content {
  padding: 3.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .popup-success__content {
    padding: 4rem 3.5rem;
    gap: 2rem;
  }
}

.popup-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-success__icon svg {
  width: 4rem;
  height: 4rem;
}
@media (min-width: 1024px) {
  .popup-success__icon svg {
    width: 5rem;
    height: 5rem;
  }
}

.popup-success__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.popup-success__title {
  font-family: "Opulent", sans-serif;
  font-size: 1.625rem;
  line-height: 1.14;
  color: #302e2d;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-success__title {
    font-size: 2.375rem;
  }
}

.popup-success__message {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.56;
  color: #606269;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-success__message {
    font-size: 1rem;
  }
}

.popup-success__button {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .popup-success__button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.popup-success__button {
  background-color: #0c2726;
  color: #ffffff;
}
.popup-success__button:hover {
  background-color: rgb(6, 19.5, 19);
}
.popup-success__button:active {
  background-color: black;
}
.popup-success__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.popup-success__button:disabled:hover {
  background-color: inherit;
}
.popup-success__button {
  width: 100%;
}
@media (min-width: 1024px) {
  .popup-success__button {
    width: 100%;
    max-width: 20rem;
  }
}

.popup-error__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 402;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.popup-error__overlay--hidden {
  display: none;
}

.popup-error__container {
  position: relative;
  width: 100%;
  max-width: 24.875rem;
}
@media (min-width: 1024px) {
  .popup-error__container {
    max-width: 28rem;
  }
}

.popup-error__modal {
  background-color: #ffffff;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.popup-error__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 301;
}
@media (min-width: 1024px) {
  .popup-error__close {
    top: 1rem;
    right: 1rem;
  }
}

.popup-error__close-button {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.15s ease;
}
.popup-error__close-button:hover {
  background-color: rgb(255, 255, 255);
}
.popup-error__close-button svg {
  width: 1rem;
  height: 1rem;
}

.popup-error__content {
  padding: 3.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .popup-error__content {
    padding: 4rem 3.5rem;
    gap: 2rem;
  }
}

.popup-error__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-error__icon svg {
  width: 4rem;
  height: 4rem;
}
@media (min-width: 1024px) {
  .popup-error__icon svg {
    width: 5rem;
    height: 5rem;
  }
}

.popup-error__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.popup-error__title {
  font-family: "Opulent", sans-serif;
  font-size: 1.625rem;
  line-height: 1.14;
  color: #302e2d;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-error__title {
    font-size: 2.375rem;
  }
}

.popup-error__message {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.56;
  color: #606269;
  margin: 0;
}
@media (min-width: 1024px) {
  .popup-error__message {
    font-size: 1rem;
  }
}

.popup-error__button {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .popup-error__button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.popup-error__button {
  background-color: #0c2726;
  color: #ffffff;
}
.popup-error__button:hover {
  background-color: rgb(6, 19.5, 19);
}
.popup-error__button:active {
  background-color: black;
}
.popup-error__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.popup-error__button:disabled:hover {
  background-color: inherit;
}
.popup-error__button {
  width: 100%;
}
@media (min-width: 1024px) {
  .popup-error__button {
    width: 100%;
    max-width: 20rem;
  }
}

.faq {
  background-color: #ffffff;
  padding: 4.5rem 1rem;
}
@media (min-width: 1024px) {
  .faq {
    padding: 4.5rem 12.5rem 9rem;
  }
}

.faq__container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .faq__container {
    display: flex;
    justify-content: center;
    gap: 17.5625rem;
    align-items: flex-start;
  }
}

.faq__header {
  margin-bottom: 3.5rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .faq__header {
    flex: 0 0 30.6875rem;
    max-width: 30.6875rem;
    margin: 0;
    margin-bottom: 0;
    padding-top: 0.25rem;
  }
}

.faq__title {
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .faq__title {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .faq__list {
    flex: 1;
    max-width: none;
    margin: 0;
  }
}

.faq__item {
  border-bottom: 1px solid #e7e6e3;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .faq__item {
    padding: 2rem 0;
    border-bottom: 1px solid #e7e6e3;
  }
}
.faq__item:first-child {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .faq__item:first-child {
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.faq__item--open .faq__answer {
  height: auto;
  max-height: 1000px;
  padding-top: 2rem;
}
@media (min-width: 1024px) {
  .faq__item--open .faq__answer {
    padding-top: 1rem;
  }
}
.faq__item--open .faq__icon {
  transform: rotate(0deg);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .faq__question {
    gap: 2rem;
  }
}

.faq__question-title {
  font-size: 1.125rem;
  line-height: 1.2;
  flex: 1;
  text-align: left;
}
@media (min-width: 1024px) {
  .faq__question-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

.faq__toggle {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 1024px) {
  .faq__toggle {
    width: 2rem;
    height: 2rem;
  }
}

.faq__icon {
  width: 2rem;
  height: 2rem;
  padding: 0.25rem 0.75rem;
  transform-origin: center;
  overflow: hidden;
  border-radius: 9999px;
  outline: 1px solid rgba(34, 34, 34, 0.2);
  outline-offset: -1px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.15s ease;
  box-sizing: border-box;
  top: 2rem;
  transform: rotate(180deg);
}

.faq__icon-wrapper {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__icon-wrapper img {
  width: 1rem;
  height: 0.3rem;
  display: block;
}

.faq__answer {
  height: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: height 0.15s ease, max-height 0.15s ease, padding-top 0.15s ease;
}
@media (min-width: 1024px) {
  .faq__answer {
    padding-top: 0;
  }
}
.faq__answer p {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.56;
}
@media (min-width: 1024px) {
  .faq__answer p {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
  }
}

.footer {
  background-color: #161616;
  color: #ffffff;
  width: 100%;
}

.footer__top {
  padding: 4.5rem 1rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__top {
    padding: 9rem 12.5rem 4.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 36.25rem;
    max-width: 100%;
  }
}

.footer__logo img {
  width: 16rem;
  height: 4.5rem;
  object-fit: contain;
}
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__newsletter {
    width: auto;
    min-width: 20rem;
  }
}

.footer__newsletter-field {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 3.25rem;
  display: flex;
  align-items: center;
}

.footer__newsletter-input {
  border: none;
  background: transparent;
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0.5rem 0;
}
.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.footer__newsletter-input:focus {
  outline: none;
  color: #ffffff;
}

.footer__newsletter-button {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .footer__newsletter-button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.footer__newsletter-button {
  background-color: #0c2726;
  color: #ffffff;
}
.footer__newsletter-button:hover {
  background-color: rgb(6, 19.5, 19);
}
.footer__newsletter-button:active {
  background-color: black;
}
.footer__newsletter-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.footer__newsletter-button:disabled:hover {
  background-color: inherit;
}
.footer__newsletter-button {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__newsletter-button {
    width: auto;
  }
}

.footer__container {
  max-width: 100%;
  margin: 0 auto;
}

.footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__content {
    flex: 1 1 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.footer__section-title {
  font-size: 1.375rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .footer__section-title {
    display: none;
  }
}

.footer__address,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .footer__address,
  .footer__contact {
    gap: 1.5rem;
  }
}

.footer__address p,
.footer__contact p {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1.125rem;
  line-height: 1.56;
  color: #ffffff;
  width: 22.0625rem;
}
@media (min-width: 1024px) {
  .footer__address p,
  .footer__contact p {
    font-size: 1.125rem;
    line-height: 1.56;
    color: #ffffff;
  }
}
.footer__address p a,
.footer__contact p a {
  text-decoration: underline;
  color: #ffffff;
}

.footer__text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding: 2rem 12.5rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 31.875rem;
    max-width: 100%;
  }
}

.footer__legal,
.footer__copyright,
.footer__developer {
  font-family: "Suisse Intl", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.045rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 1024px) {
  .footer__legal,
  .footer__copyright,
  .footer__developer {
    font-size: 0.75rem;
    letter-spacing: 0.045rem;
    line-height: 1.25rem;
    color: rgba(255, 255, 255, 0.3);
  }
}

.gov {
  background-color: #ffffff;
  padding: 1.5rem 1rem 1.5rem;
}
@media (min-width: 1024px) {
  .gov {
    padding: 4.5rem 12.5rem 9rem;
  }
}

.gov__container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .gov__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}

.gov__image {
  width: 100%;
  height: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .gov__image {
    flex: 0 0 46.75rem;
    height: 32.5rem;
    margin-top: 0;
    order: 1;
  }
}
.gov__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gov__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .gov__header {
    flex: 0 0 38.6875rem;
    max-width: 38.6875rem;
    display: flex;
    justify-content: center;
    margin: 0;
    order: 2;
    gap: 0.5rem;
  }
}

.gov__title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .gov__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
}

.gov__description {
  font-family: "Suisse Intl", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .gov__description {
    font-size: 1rem;
    line-height: 1.56;
    color: #606269;
    margin-top: 0.5rem;
  }
}

.gov__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .gov__buttons {
    flex-direction: row;
    gap: 0.5rem;
    margin-top: 2rem;
  }
}

.gov__button {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .gov__button {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.gov__button {
  background-color: #0c2726;
  color: #ffffff;
}
.gov__button:hover {
  background-color: rgb(6, 19.5, 19);
}
.gov__button:active {
  background-color: black;
}
.gov__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gov__button:disabled:hover {
  background-color: inherit;
}
.gov__button {
  width: 100%;
}
.gov__button--primary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .gov__button--primary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.gov__button--primary {
  background-color: #0c2726;
  color: #ffffff;
}
.gov__button--primary:hover {
  background-color: rgb(6, 19.5, 19);
}
.gov__button--primary:active {
  background-color: black;
}
.gov__button--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gov__button--primary:disabled:hover {
  background-color: inherit;
}
.gov__button--secondary {
  padding: 1rem 1rem;
  border-radius: 0.25rem;
  font-family: "Suisse Intl", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  font-size: 0.8125rem;
  line-height: 1em;
  padding: 1rem 1rem;
  height: 3.25rem;
}
@media (min-width: 1024px) {
  .gov__button--secondary {
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    height: 3.25rem;
  }
}
.gov__button--secondary {
  border: 1px solid rgba(34, 34, 34, 0.2);
  color: #302e2d;
  background-color: white;
}
.gov__button--secondary:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
.gov__button--secondary:active {
  background-color: #cccccc;
}
.gov__button--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gov__button--secondary:disabled:hover {
  background-color: inherit;
}
@media (min-width: 1024px) {
  .gov__button {
    width: auto;
  }
}

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