@import "normalize.css";
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Figtree", sans-serif;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.container {
  padding: 0 16px;
}
@media (min-width: 992px) {
  .container {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1488px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 400;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transition-property: opacity, visibility;
  opacity: 0;
  visibility: hidden;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  position: relative;
  max-width: calc(100% - 48px);
  background-color: white;
  padding: 24px;
  border-radius: 20px;
  max-height: 90svh;
  overflow: auto;
}
.modal .modal-content .close-modal-button {
  background-color: #233244;
  border: none;
  padding: 0;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 11;
}
.modal .modal-content .form-wrapper {
  padding: 0;
}
.modal .modal-content .form-wrapper-heading {
  text-align: left;
  padding-top: 24px;
}
@media (min-width: 992px) {
  .modal {
    display: none;
  }
}

.modal-button {
  position: relative;
  background: #233244;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 45px;
  left: calc(50% - 16px);
  transform: translateX(-50%);
  color: white;
  z-index: 9;
  padding: 15px 64px 15px 23px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-button:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: white;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1;
}
.modal-button::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
.modal-button span {
  background-color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  border: 10px solid #233244;
}
.modal-button span img {
  width: 16px;
}
.modal-button.active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .modal-button {
    display: none;
  }
}

.form-wrapper {
  position: relative;
  background-color: #fff;
  padding: 64px 0;
}
.form-wrapper .form-success-message-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 52px 20px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.form-wrapper .form-success-message-wrapper.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.form-wrapper .form-success-message-wrapper img {
  width: 156px;
}
.form-wrapper .form-success-message-wrapper .form-success-message-title {
  color: #233244;
  font-size: 40px;
  text-align: center;
}
.form-wrapper .form-success-message-wrapper .form-success-message-text {
  color: #233244;
  font-size: 22px;
  text-align: center;
}
@media (min-width: 992px) {
  .form-wrapper .form-success-message-wrapper {
    border-radius: 30px;
    padding: 52px 40px;
  }
}
.form-wrapper-heading {
  color: #233244;
  text-align: center;
  font-size: 31px;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .form-wrapper-heading {
    margin-bottom: 42px;
  }
}
.form-wrapper form {
  display: flex;
  flex-direction: column;
}
.form-wrapper form input,
.form-wrapper form textarea {
  margin-bottom: 16px;
  padding: 19px 26px;
  border-radius: 10px;
  border: 1px solid #233244;
  border-bottom: 4px solid #233244;
  transition: 0.3s;
}
.form-wrapper form input::placeholder,
.form-wrapper form textarea::placeholder {
  color: #3b3b3b;
  font-weight: 600;
}
.form-wrapper form input[type=checkbox],
.form-wrapper form textarea[type=checkbox] {
  margin-bottom: 0;
  display: none;
}
.form-wrapper form input[type=checkbox] ~ .checkbox-mark,
.form-wrapper form textarea[type=checkbox] ~ .checkbox-mark {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 16px;
  height: 16px;
  border: 2px solid #233244;
  border-radius: 4px;
  flex-shrink: 0;
}
.form-wrapper form input[type=checkbox]:checked ~ .checkbox-mark,
.form-wrapper form textarea[type=checkbox]:checked ~ .checkbox-mark {
  background-image: url("images/check.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 9px;
}
.form-wrapper form input[type=checkbox] ~ label,
.form-wrapper form textarea[type=checkbox] ~ label {
  padding-left: 24px;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.form-wrapper form input[type=checkbox] ~ label.expanded,
.form-wrapper form textarea[type=checkbox] ~ label.expanded {
  white-space: normal;
}
.form-wrapper form input.error,
.form-wrapper form textarea.error {
  color: red;
  border-color: red;
}
.form-wrapper form input.error[type=checkbox] ~ .checkbox-mark,
.form-wrapper form textarea.error[type=checkbox] ~ .checkbox-mark {
  border-color: red;
}
.form-wrapper form input.error[type=checkbox] ~ label,
.form-wrapper form textarea.error[type=checkbox] ~ label {
  color: red;
}
.form-wrapper form input.error[type=checkbox] ~ button,
.form-wrapper form textarea.error[type=checkbox] ~ button {
  color: red;
}
.form-wrapper form .error-message {
  color: red;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
.form-wrapper form .checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 12px;
}
.form-wrapper form .checkbox-wrapper:first-of-type {
  margin-top: 12px;
}
.form-wrapper form .more-button {
  border: none;
  background: none;
  color: #233244;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.form-wrapper form .form-text {
  color: #3b3b3b;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: -0.022px;
}
.form-wrapper form .submit-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #233244;
  gap: 12px;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: 100px;
  font-size: 20px;
  margin-top: 24px;
  cursor: pointer;
}
.form-wrapper form .submit-button:disabled {
  cursor: not-allowed;
}
.form-wrapper form .submit-button.loading {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
  overflow: hidden;
}
.form-wrapper form .submit-button.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
}
.form-wrapper form .submit-button.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/loading.svg");
  background-size: auto 75%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .form-wrapper form .submit-button {
    margin-top: 57px;
  }
}
@media (min-width: 992px) {
  .form-wrapper {
    border-radius: 30px;
  }
}

@media (min-width: 992px) {
  .form-wrapper {
    position: absolute;
    top: 35px;
    right: max(24px, (100vw - 1160px - 24px) / 2);
    width: 436px;
    padding: 52px 40px;
    z-index: 1;
  }
}
@media (min-width: 1600px) {
  .form-wrapper {
    right: max(24px, (100vw - 1440px - 24px) / 2);
  }
}
.hero .hero-wrapper {
  position: relative;
}
.hero .hero-wrapper .hero-background {
  position: relative;
  height: 100svh;
}
@media (min-width: 992px) {
  .hero .hero-wrapper .hero-background {
    height: 926px;
  }
}
.hero .hero-wrapper .hero-background .hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: 35% 50%;
}
.hero .hero-wrapper .hero-background .hero-logo-wrapper {
  background-color: #233244;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 0px 0px 30px 30px;
  position: absolute;
  top: 0;
  left: 16px;
}
@media (min-width: 992px) {
  .hero .hero-wrapper .hero-background .hero-logo-wrapper {
    width: 259px;
    padding: 35px 28px;
    left: max(24px, (100vw - 1160px - 24px) / 2);
  }
}
@media (min-width: 1600px) {
  .hero .hero-wrapper .hero-background .hero-logo-wrapper {
    left: max(24px, (100vw - 1488px - 24px) / 2);
  }
}
.hero .hero-wrapper .hero-background .hero-logo {
  width: 151px;
}
@media (min-width: 992px) {
  .hero .hero-wrapper .hero-background .hero-logo {
    width: 203px;
  }
}
.hero .hero-wrapper .hero-background .hero-lang-switch {
  position: absolute;
  top: 24px;
  right: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 100px;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  color: #233244;
}
.hero .hero-wrapper .hero-background .hero-lang-switch .hero-lang-switch-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
@media (min-width: 992px) {
  .hero .hero-wrapper .hero-background .hero-lang-switch {
    top: 43px;
    left: max(307px, (100vw - 1160px - 24px) / 2 + 283px);
  }
}
@media (min-width: 1600px) {
  .hero .hero-wrapper .hero-background .hero-lang-switch {
    left: max(307px, (100vw - 1488px - 24px) / 2 + 283px);
  }
}
.hero .hero-wrapper .hero-heading {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 41px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .hero .hero-wrapper .hero-heading {
    font-size: 50px;
    line-height: 56px;
    text-align: left;
    left: max(24px, (100vw - 1160px - 24px) / 2);
    transform: none;
    bottom: 160px;
  }
}
@media (min-width: 1600px) {
  .hero .hero-wrapper .hero-heading {
    left: max(24px, (100vw - 1440px - 24px) / 2);
  }
}
.hero .hero-promotion-box {
  background-color: #233244;
  color: white;
  position: absolute;
  bottom: 211px;
  left: 16px;
  right: 16px;
  padding: 32px 32px 24px 32px;
  border-radius: 32px;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .hero .hero-promotion-box {
    bottom: 376px;
    left: max(24px, (100vw - 1160px - 24px) / 2);
    margin: 0;
  }
}
@media (min-width: 1600px) {
  .hero .hero-promotion-box {
    left: max(24px, (100vw - 1440px - 24px) / 2);
  }
}
.hero .hero-promotion-box .hero-promotion-box-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f00;
  padding: 8px 12px;
  border-radius: 32px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 992px) {
  .hero .hero-promotion-box .hero-promotion-box-label {
    left: 32px;
    transform: translate(0, -50%);
  }
}
.hero .hero-promotion-box .hero-promotion-box-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .hero .hero-promotion-box .hero-promotion-box-title {
    font-size: 28px;
    line-height: 34px;
  }
}
.hero .hero-promotion-box .hero-promotion-box-text {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
}

.location {
  position: relative;
}
.location__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.location__background-wrapper img {
  position: absolute;
  top: 192px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media (min-width: 992px) {
  .location__background-wrapper img {
    top: 0;
    height: 100%;
  }
}
.location__tiles-wrapper {
  display: grid;
  gap: 12px;
  padding-bottom: 286px;
}
@media (min-width: 992px) {
  .location__tiles-wrapper {
    transform: translateY(-83px);
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 660px;
  }
}
.location__tile-wrapper {
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .location__tile-wrapper {
    padding: 52px 70px;
  }
}
.location__tile-wrapper--with-image {
  width: 100%;
  height: 216px;
  position: relative;
  grid-row: 1/2;
}
.location__tile-wrapper--with-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .location__tile-wrapper--with-image {
    width: 100%;
    height: 100%;
    grid-column: 2/3;
  }
}
.location__tile-wrapper--small {
  background-color: #fff;
  padding: 26px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 992px) {
  .location__tile-wrapper--small {
    padding: 26px 48px;
    border-radius: 100px;
  }
}
.location__tile-wrapper--small .location-tile-small-title {
  color: #3b3b3b;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}
.location__tile-wrapper--small .location-tile-small-title span {
  color: #233244;
}
.location__tile-wrapper--small .location-tile-small-title br {
  display: none;
}
@media (min-width: 992px) {
  .location__tile-wrapper--small .location-tile-small-title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (min-width: 1600px) {
  .location__tile-wrapper--small .location-tile-small-title br {
    display: block;
  }
}
.location__tile-wrapper--small .location-tile-small-text {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}
.location__tile-wrapper .location-tile-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 34px;
  color: #233244;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .location__tile-wrapper .location-tile-title {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 36px;
  }
}
.location__tile-wrapper .location-tile-text {
  color: #777;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .location__tile-wrapper .location-tile-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 36px;
  }
}
.location__tile-wrapper .location-tile-comissioning {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.location__tile-wrapper .location-tile-comissioning .location-tile-comissioning-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.location__tile-wrapper .location-tile-comissioning .location-tile-comissioning-badge {
  background-color: #233244;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
}
@media (min-width: 992px) {
  .location__tile-wrapper .location-tile-comissioning {
    flex-direction: row;
    align-items: center;
  }
}
.location__tile-wrapper .location-tile-caption {
  color: #3b3b3b;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}
.location__tile-wrapper .location-tile-caption span {
  color: #233244;
}
@media (min-width: 992px) {
  .location__tile-wrapper .location-tile-caption {
    font-size: 28px;
    line-height: 34px;
  }
}

.views {
  position: relative;
}
@media (min-width: 992px) {
  .views {
    height: 972px;
  }
}
.views__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.views__background-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.views__tiles-wrapper {
  display: grid;
  gap: 24px;
  padding-top: 48px;
  padding-bottom: 416px;
}
@media (min-width: 992px) {
  .views__tiles-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 0;
    transform: translateY(-100px);
  }
}
.views__tile-wrapper--with-image {
  width: 100%;
  height: 216px;
  position: relative;
}
.views__tile-wrapper--with-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .views__tile-wrapper--with-image {
    width: 100%;
    height: 100%;
  }
}
.views__tile-wrapper {
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .views__tile-wrapper {
    padding: 52px 70px;
  }
  .views__tile-wrapper:nth-child(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.views .views-tile-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 34px;
  color: #233244;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .views .views-tile-title {
    font-size: 40px;
    line-height: 41px;
    margin-bottom: 36px;
  }
}
.views .views-tile-text {
  color: #777;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 16px;
}
.views .views-tile-text:last-child {
  margin-top: 16px;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .views .views-tile-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 36px;
  }
}
.views .views-tile-caption {
  color: #3b3b3b;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}
.views .views-tile-caption span {
  color: #233244;
}
@media (min-width: 992px) {
  .views .views-tile-caption {
    font-size: 28px;
    line-height: 34px;
  }
}

.interior__map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 375/390;
  z-index: -1;
}
.interior__map-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
@media (min-width: 992px) {
  .interior__map-wrapper {
    aspect-ratio: 1440/737;
  }
}
.interior__map-wrapper .interior__map-mobile {
  display: block;
}
@media (min-width: 992px) {
  .interior__map-wrapper .interior__map-mobile {
    display: none;
  }
}
.interior__map-wrapper .interior__map-desktop {
  display: none;
}
@media (min-width: 992px) {
  .interior__map-wrapper .interior__map-desktop {
    display: block;
  }
}
.interior__inner-wrapper {
  padding: 32px 0;
}
.interior__inner-wrapper__subheading {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.interior__inner-wrapper__heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
}
.interior__inner-wrapper__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid #b6b6b6;
}
.interior__inner-wrapper__tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.interior__inner-wrapper__packages {
  padding: 32px 0 0;
  display: grid;
  gap: 40px;
}
.interior__inner-wrapper__package {
  overflow: hidden;
}
.interior__inner-wrapper__package-subheading {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  margin-bottom: 4px;
}
.interior__inner-wrapper__package-heading {
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  margin-bottom: 12px;
}
.interior__inner-wrapper__package-description {
  color: #777;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.interior__inner-wrapper__package-description.full {
  overflow: visible;
  display: block;
}
.interior__inner-wrapper__package-read-more-button {
  border: none;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #3b3b3b;
}
.interior__inner-wrapper__package-slider-wrapper {
  margin-bottom: 20px;
}
.interior__inner-wrapper .swiper-container {
  position: relative;
}
.interior__inner-wrapper .swiper-button-next,
.interior__inner-wrapper .swiper-button-prev {
  background: #233244;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.interior__inner-wrapper .swiper-button-next::after,
.interior__inner-wrapper .swiper-button-prev::after {
  display: none;
}
.interior__inner-wrapper__package-slider-image-wrapper {
  height: 240px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.interior__inner-wrapper__package-slider-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .interior__inner-wrapper {
    border: 1px solid #b6b6b6;
    padding: 64px 48px;
    margin-top: -80px;
    background-color: #fff;
    border-radius: 30px;
  }
  .interior__inner-wrapper__subheading {
    font-size: 16px;
  }
  .interior__inner-wrapper__heading {
    font-size: 40px;
    line-height: 41px;
  }
  .interior__inner-wrapper__tiles {
    grid-template-columns: repeat(4, 1fr);
    padding: 36px 0 48p 0;
  }
  .interior__inner-wrapper__packages {
    padding: 48px 0 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .interior__inner-wrapper__package-heading {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 16px;
  }
  .interior__inner-wrapper__package-description {
    color: #3b3b3b;
  }
  .interior__inner-wrapper__package-slider-wrapper {
    margin-bottom: 32px;
  }
  .interior__inner-wrapper__package-slider-image-wrapper {
    height: 380px;
    border-radius: 30px;
  }
}

.contact__wrapper {
  display: grid;
  gap: 20px;
  padding: 32px 0 24px;
}
@media (min-width: 992px) {
  .contact__wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
  }
}
.contact__wrapper__logo-wrapper {
  background-color: #233244;
  display: flex;
  align-items: center;
  padding: 69px 102px;
  border-radius: 20px;
  padding: 68px 36px;
}
.contact__wrapper__logo-wrapper img {
  width: 100%;
}
@media (min-width: 992px) {
  .contact__wrapper__logo-wrapper {
    padding: 69px 102px;
  }
}
.contact__wrapper__contact-info-wrapper__title {
  color: #233244;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-top: 12px;
}
.contact__wrapper__contact-info-wrapper__content {
  display: grid;
  gap: 32px;
}
.contact__wrapper__contact-info-wrapper__content .content__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__wrapper__contact-info-wrapper__content .content__item-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: #233244;
}
.contact__wrapper__contact-info-wrapper__content .content__item-email, .contact__wrapper__contact-info-wrapper__content .content__item-phone {
  font-weight: 600;
  text-decoration: underline;
  color: #233244;
}
.contact__wrapper__contact-info-wrapper__content .content__item-button {
  width: fit-content;
  background-color: #233244;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
}
.contact__wrapper__contact-info-wrapper__content .content__item-button img {
  width: 21px;
}
@media (min-width: 992px) {
  .contact__wrapper__contact-info-wrapper {
    border-radius: 30px;
    border: 1px solid #b6b6b6;
    padding: 42px 40px 52px;
  }
  .contact__wrapper__contact-info-wrapper__title {
    font-size: 40px;
    margin-bottom: 24px;
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .contact__wrapper__contact-info-wrapper__content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .contact__wrapper__contact-info-wrapper__content .content__item:first-child {
    grid-column: 1/3;
  }
}

footer {
  padding: 0 0 24px 0;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 20px;
}
footer .footer-content__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  footer .footer-content {
    padding: 15px 40px;
    justify-content: space-between;
    flex-direction: row;
  }
  footer .footer-content__inner {
    flex-direction: row;
    gap: 40px;
  }
}
footer .footer-content a,
footer .footer-content p {
  font-weight: 600;
}
footer .footer-content a {
  color: #3b3b3b;
  text-decoration: none;
}

.privacy-hero .hero-wrapper {
  position: relative;
}
.privacy-hero .hero-wrapper .hero-background {
  position: relative;
  height: 96px;
}
@media (min-width: 992px) {
  .privacy-hero .hero-wrapper .hero-background {
    height: 134px;
  }
}
.privacy-hero .hero-wrapper .hero-background .hero-logo-wrapper {
  background-color: #233244;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 0px 0px 30px 30px;
  position: absolute;
  top: 0;
  left: 16px;
}
@media (min-width: 992px) {
  .privacy-hero .hero-wrapper .hero-background .hero-logo-wrapper {
    width: 259px;
    padding: 35px 28px;
    left: max(24px, (100vw - 1160px - 24px) / 2);
  }
}
@media (min-width: 1600px) {
  .privacy-hero .hero-wrapper .hero-background .hero-logo-wrapper {
    left: max(24px, (100vw - 1488px - 24px) / 2);
  }
}
.privacy-hero .hero-wrapper .hero-background .hero-logo {
  width: 151px;
}
@media (min-width: 992px) {
  .privacy-hero .hero-wrapper .hero-background .hero-logo {
    width: 203px;
  }
}
.privacy-hero .hero-wrapper .hero-background .hero-lang-switch {
  position: absolute;
  top: 24px;
  right: 16px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 100px;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  color: #233244;
}
.privacy-hero .hero-wrapper .hero-background .hero-lang-switch .hero-lang-switch-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
@media (min-width: 992px) {
  .privacy-hero .hero-wrapper .hero-background .hero-lang-switch {
    top: 43px;
    left: max(307px, (100vw - 1160px - 24px) / 2 + 283px);
  }
}
@media (min-width: 1600px) {
  .privacy-hero .hero-wrapper .hero-background .hero-lang-switch {
    left: max(307px, (100vw - 1488px - 24px) / 2 + 283px);
  }
}

.privacy-content {
  padding: 48px 0;
  color: #233244;
}
.privacy-content .privacy-content-inner {
  max-width: 810px;
}
.privacy-content p,
.privacy-content li {
  font-size: 18px;
}
.privacy-content h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 41px;
  margin-bottom: 32px;
}
.privacy-content h4 {
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .privacy-content {
    padding: 64px 0;
  }
  .privacy-content h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 56px;
  }
  .privacy-content h4 {
    font-size: 28px;
    line-height: 34px;
  }
}

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