@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue/BebasNeue-Regular-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue/BebasNeue-Regular-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue/BebasNeue-Regular2.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue/BebasNeue-Regular-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
* {
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

body,
button {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  color: #45484a;
}

.container {
  max-width: 1310px;
  padding: 0 65px;
  margin: auto;
}

.section {
  margin-bottom: 140px;
}

.section-title {
  text-align: end;
  color: #4a4c4f;
  font-family: "Bebas Neue";
  font-size: 64px;
  font-weight: 400;
  line-height: 70px;
  margin-bottom: 60px;
}

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

@media (max-width: 650px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 900px) {
  .section-title {
    font-size: 36px;
    line-height: 130%;
    margin-bottom: 50px;
  }
}
.header {
  background: linear-gradient(89.2deg, #f7f7f7 -8.69%, rgba(255, 255, 255, 0.93) 109.9%);
  box-shadow: 0 2px 9px 0 rgba(94, 94, 94, 0.1);
  border-end-start-radius: 30px;
  border-end-end-radius: 30px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99999;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header__navigation {
  max-width: 565px;
  margin: 31px auto;
}

.header__navigation-list {
  display: flex;
  gap: 30px;
}

.header__navigation-item > a {
  font-size: 16px;
  line-height: 18px;
  color: #7d7f82;
  transition: 0.3s ease;
}

.language-switcher {
  position: relative;
  width: 84px;
}

.language-dropdown {
  position: absolute;
  top: 30px;
  right: -6px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12), 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  padding: 12px 25px;
  width: 96px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
  display: none;
  z-index: 1000;
}
.language-dropdown.active {
  display: flex;
}

.language-option {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

.language-flag {
  display: block;
  width: 20px;
  height: 14px;
}

.language-name {
  color: #1a365d;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}

.language-switcher__button {
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  width: 84px;
  cursor: pointer;
}

.language-code {
  color: #1a365d;
  line-height: 18px;
}

.language-flag-main {
  display: block;
  width: 28px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s ease;
}

.language-switcher__button::before {
  position: absolute;
  right: 0px;
  top: 6px;
  content: "";
  width: 9px;
  height: 9px;
  background-image: url("../assets/icons/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.language-switcher__button.active::before {
  transform: rotate(0);
  transition: 0.3s ease;
}

.header__burger-menu {
  width: 35px;
  height: 21px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  display: none;
}
.header__burger-menu .header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #1a365d;
  border-radius: 100px;
}
.header__burger-menu .header__burger-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #1a365d;
  border-radius: 100px;
  top: 0;
  transition: 0.3s ease;
}
.header__burger-menu .header__burger-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #1a365d;
  border-radius: 100px;
  bottom: 0;
  transition: 0.3s ease;
}

.header__burger-menu.active .header__burger-line::before {
  transform: rotate(45deg);
  transition: 0.3s ease;
  top: 55%;
  z-index: 999;
}

.header__burger-menu.active .header__burger-line::after {
  transform: rotate(-45deg);
  transition: 0.3s ease;
  bottom: 30%;
  z-index: 999;
}

.header__burger-menu.active .header__burger-line {
  background-color: white;
}

.popup-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 65px;
  transform: translateY(-200%);
  transition: 0.3s ease;
  background: linear-gradient(89.2deg, #f7f7f7 -8.69%, rgba(255, 255, 255, 0.93) 109.9%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
  z-index: 9999;
}

.popup-menu.open {
  transition: 0.3s ease;
  transform: translateY(0);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.popup-menu.open .header__navigation-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-menu__content {
  position: relative;
  padding: 60px;
}

@media (hover: hover) {
  .header__navigation-item:hover a {
    color: #5c5f63;
    transition: 0.3s ease;
  }
  .language-switcher:hover .language-flag-main {
    transform: scale(1.1);
    transition: 0.3s ease;
  }
}
@media (max-width: 900px) {
  .header__navigation,
  .language-switcher {
    display: none;
  }
  .header__burger-menu {
    display: flex;
  }
}
@media (max-width: 500px) {
  .language-switcher {
    margin-bottom: 50px;
  }
}
.introduction {
  background-color: #f9fafb;
  padding-top: 164px;
  padding-bottom: 86px;
  overflow: hidden;
}

.fullscreen-introduction-slider {
  height: calc(100vh - 80px - 50px - 84px) !important;
  border-radius: 30px;
}

.introduction__slider {
  background: linear-gradient(216deg, #1185b3 -65.13%, #1a365d 92.4%);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(auto, 536px) 1fr;
  overflow: hidden;
  height: 100%;
}

.second-slide {
  background: linear-gradient(213deg, #cfddf4 -19.84%, #464b65 129.08%), linear-gradient(216deg, #1185b3 -65.13%, #1a365d 92.4%);
}

.third-slide {
  background: linear-gradient(206deg, #e492e2 -15.89%, #2c2d59 105.49%), linear-gradient(216deg, #1185b3 -65.13%, #1a365d 92.4%);
}

.introduction__slider-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 96px 0;
}

.introduction__slider-title {
  color: #ffffff;
  font-family: "Bebas Neue";
  font-size: 64px;
  line-height: 70px;
  margin-bottom: 10px;
}

.introduction__slider-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 45px;
}

.introduction__slider-button {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 1000px;
  background: #fefefe;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.introduction__slider-image {
  overflow: hidden;
}
.introduction__slider-image > img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
  height: 100%;
  width: 100%;
}

.fullscreen-swiper {
  width: 100%;
  height: 100%;
  margin-bottom: 46px;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 17px !important;
  opacity: 1 !important;
  background-color: #bebfc1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #2c7a7b !important;
  position: relative;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 1px solid #2c7a7b;
  border-radius: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
}

.swiper-outer {
  position: relative;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 0 20px;
}

.swiper-pagination {
  bottom: 2px !important;
  z-index: 1;
}

@media (hover: hover) {
  .introduction__slider-button:hover {
    background-color: #569595;
    color: white;
    border-color: transparent;
    transition: 0.3s ease;
  }
}
@media (max-width: 1150px) {
  .introduction__slider {
    grid-template-columns: 1fr;
  }
  .introduction__slider-image {
    display: none;
  }
}
@media (max-width: 650px) {
  .introduction__slider-content {
    text-align: center;
    padding: 80px 30px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .introduction__slider-title {
    font-size: 36px;
  }
  .introduction__slider-text {
    font-size: 14px;
  }
  .introduction__slider-button {
    font-size: 16px;
  }
}
.properties__list {
  display: flex;
  justify-content: center;
}

.properties__item {
  border-radius: 20px;
  border: 1px solid #dedfe0;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.22);
  overflow: hidden;
}

.properties__item-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
.properties__item-wrapper > img {
  width: 100%;
}
.properties__item-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(98deg, #fff -3.97%, rgba(255, 255, 255, 0.6) 55.24%, rgba(255, 255, 255, 0) 80.47%, rgba(255, 255, 255, 0) 110.14%);
  opacity: 0;
  transition: 0.3s ease;
}
.properties__item-wrapper::before {
  content: "BUY";
  color: #1a365d;
  font-family: "Bebas Neue";
  font-size: 64px;
  line-height: 70px;
  position: absolute;
  top: 40px;
  left: 20px;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9;
}

.properties__item-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 30px 20px;
}

.properties__item-title {
  color: #76869e;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  transition: 0.3s ease;
}

.properties__item-location {
  display: flex;
  align-items: end;
  gap: 6px;
  transition: 0.3s ease;
}
.properties__item-location > svg > path {
  transition: 0.3s ease;
}
.properties__item-location > p {
  color: #9d9fa1;
  font-weight: 400;
  line-height: 18px;
  transition: 0.3s ease;
}

.properties__item-price {
  color: #80afb0;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .properties__item:hover {
    cursor: pointer;
  }
  .properties__item:hover .properties__item-wrapper::after, .properties__item:hover .properties__item-wrapper::before {
    transition: 0.3s ease;
    opacity: 1;
  }
  .properties__item:hover .properties__item-location > svg > path {
    fill: #5c5f63;
    transition: 0.3s ease;
  }
  .properties__item:hover .properties__item-location > p {
    color: #45484a;
    transition: 0.3s ease;
  }
  .properties__item:hover .properties__item-title {
    color: #485e7d;
    transition: 0.3s ease;
  }
  .properties__item:hover .properties__item-price {
    color: #2c7a7b;
    transition: 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .properties__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .properties__list {
    grid-template-columns: 1fr;
  }
}
.categories {
  background-color: #f9fafb;
  padding-top: 60px;
  padding-bottom: 100px;
  margin-bottom: 0;
}

.categories__container {
  margin-bottom: 0;
}

.categories__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 94px;
       column-gap: 94px;
  row-gap: 60px;
}

.categories__item {
  border-radius: 20px;
  border: 1px solid #dedfe0;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  padding: 34px 0;
  align-content: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.categories__item-icon {
  display: block;
  text-align: center;
}
.categories__item-icon svg {
  color: #569595;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.categories__item-title {
  color: #485e7d;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .categories__item:hover {
    background-color: #569595;
    transition: 0.3s ease;
  }
  .categories__item:hover .categories__item-icon svg {
    color: white;
    transition: 0.3s ease;
  }
  .categories__item:hover .categories__item-title {
    color: white;
    transition: 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .categories__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .categories__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.services__container {
  position: relative;
  z-index: 9;
  top: -130px;
}

.services__wrapper {
  position: relative;
  min-height: 150vh;
  overflow: hidden;
  transform: translateZ(0);
}

.services__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  top: -70%;
  left: 0;
  transform: translateY(0);
}

.services__overlay {
  position: absolute;
  right: 0;
  bottom: -675px;
  transform: translateZ(0);
}

.services__overlay-element-mobile {
  display: none;
}

.services__title {
  margin-bottom: 80px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}

.services__item {
  padding: 40px 45px;
  border-radius: 20px;
  border: 1px solid #a3afbe;
  background: #ffffff;
  transition: 0.3s ease;
}

.services__item-icon {
  display: block;
  margin-bottom: 22px;
  text-align: center;
}
.services__item-icon > svg {
  color: #e8ebef;
  transition: 0.3s ease;
}

.services__item-title {
  color: #76869e;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.services__item-line {
  display: block;
  height: 1px;
  background-color: #d1d7df;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.services__item-content {
  display: flex;
  justify-content: space-between;
}

.services__item-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #76869e;
  transition: 0.3s ease;
}

.services__item-link {
  width: 94px;
  height: 94px;
  border-radius: 1000px;
  background-color: #569595;
  color: #ffffff;
  font-weight: 400;
  line-height: 120%;
  align-content: center;
  padding: 26px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 0;
  transition: 0.3s ease;
}

.services__hero {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}
.services__hero > img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.services__text {
  display: flex;
  justify-content: space-between;
}
.services__text > p {
  max-width: 520px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

@media (hover: hover) {
  .services__item:hover {
    background: rgba(209, 215, 223, 0.5);
    transition: 0.3s ease;
  }
  .services__item:hover .services__item-icon > svg {
    color: #569595;
    transition: 0.3s ease;
  }
  .services__item:hover .services__item-title {
    color: #1a365d;
    transition: 0.3s ease;
  }
  .services__item:hover .services__item-line {
    background-color: #a3afbe;
    transition: 0.3s ease;
  }
  .services__item:hover .services__item-text {
    color: #45484a;
    transition: 0.3s ease;
  }
  .services__item:hover .services__item-link {
    opacity: 1;
    transition: 0.3s ease;
  }
}
@media (max-width: 1360px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1230px) {
  .services__text {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}
@media (max-width: 970px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 750px) {
  .services__image {
    top: -100%;
  }
  .services__hero {
    height: 320px;
  }
  .services__hero > img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 500px) {
  .services__item-content {
    display: block;
    text-align: center;
  }
  .services__item-link {
    display: none;
  }
  .services__text > p {
    font-size: 15px;
  }
}
@media (max-width: 376px) {
  .services__overlay-element-pc {
    display: none;
  }
  .services__overlay {
    bottom: -300px;
  }
  .services__overlay-element-mobile {
    display: block;
    width: 100%;
  }
}
.areas__title {
  margin-bottom: 20px;
}

.areas__subtitle {
  max-width: 480px;
  text-align: left;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 60px;
}

.areas__content {
  display: flex;
  gap: 66px;
}

.areas__cities {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 350px;
}

.areas__city {
  color: #a2a3a5;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  padding: 18px 20px;
  background-color: #ffffff;
  border-radius: 1000px;
  border: 1px solid transparent;
  border-color: #d1d7df;
  cursor: pointer;
  transition: 0.3s ease;
}

.areas__city.active {
  background-color: #569595;
  color: #ffffff;
  border-color: #569595;
}

.areas__map {
  position: relative;
}
.areas__map > svg {
  width: 100%;
}

.map {
  width: 100%;
  height: auto;
}

.point,
.name {
  color: white;
}

.point.clicked {
  color: #5eda30;
  transform: scale(1.5);
  transform-origin: center;
  transform-box: fill-box;
}

.name.clicked {
  color: #5eda30;
  transform: scale(1.1);
  transform-origin: center;
}

.point > .active {
  color: #5eda30;
  width: 22px;
  height: 22px;
  transform: translate(-5px, 5px);
}

.bangtao-beach-point {
  bottom: 35%;
  left: 22%;
}

.kathu-point {
  bottom: 37%;
  left: 41%;
}

@media (hover: hover) {
  .areas__city:hover {
    background-color: #569595;
    color: #ffffff;
    border-color: #569595;
    transition: 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .areas__content {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .areas__subtitle {
    font-size: 14px;
  }
  .areas__city {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .areas__cities {
    width: 100%;
  }
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 40px;
  background: #eaf2f2;
  padding: 40px 94px 40px 40px;
  cursor: pointer;
  border: 1px solid transparent;
  border-color: #eaf2f2;
  transition: 0.3s ease;
}

.about__item-left {
  border-right: 1px solid #abcaca;
}

.about__item-title {
  color: #1a365d;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.about__item-subtitle {
  color: #485e7d;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.about__item-text {
  color: #485e7d;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-left: 40px;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .about__item:hover {
    background-color: #ffffff;
    border-color: #abcaca;
    transition: 0.3s ease;
  }
  .about__item:hover .about__item-title {
    color: #1a365d;
    transition: 0.3s ease;
  }
  .about__item:hover .about__item-subtitle {
    color: #485e7d;
    transition: 0.3s ease;
  }
  .about__item:hover .about__item-text {
    color: #485e7d;
    transition: 0.3s ease;
  }
}
@media (max-width: 950px) {
  .about__item {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .about__item-left {
    margin-bottom: 20px;
    border-right: none;
  }
  .about__item-text {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .about__item-title {
    font-size: 20px;
  }
  .about__item-subtitle,
  .about__item-text {
    font-size: 15px;
  }
  .about__item {
    padding: 30px;
  }
}
.reviews {
  background-color: #f9fafb;
  padding: 60px 0;
}

.reviews-inner {
  width: 100%;
  height: 100%;
}

.js-fullscreen-reviews-swiper {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.reviews__slider {
  box-sizing: border-box;
  display: flex;
}

.reviews__slide {
  max-width: 415px !important;
  min-height: 300px;
}

.reviews__card {
  position: relative;
  height: 300px;
  border-radius: 20px;
  border: 1px solid #569595;
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  padding: 40px 20px 20px;
}

.main-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  display: none;
  opacity: 0;
  transition: 0.3s ease;
  height: 100%;
}

.main-stack-card__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.main-card.active {
  display: flex;
  opacity: 1;
  transition: 0.3s ease;
}

.reviews__card-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reviews__card-text {
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  color: #45484a;
  font-family: "Open Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.reviews__card-user > p {
  color: #485e7d;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}
.reviews__card-user > span {
  color: #76869e;
  font-weight: 400;
  line-height: 120%;
}

.reviews__card-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #80afb0;
  font-weight: 600;
  line-height: 120%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  gap: 4px;
}

.reviews__star {
  color: transparent;
}

.reviews__rating.star-1 .reviews__star:nth-child(1),
.reviews__rating.star-2 .reviews__star:nth-child(-n+2),
.reviews__rating.star-3 .reviews__star:nth-child(-n+3),
.reviews__rating.star-4 .reviews__star:nth-child(-n+4),
.reviews__rating.star-5 .reviews__star:nth-child(-n+5) {
  color: #ff8b11;
}

.reviews__rating.stack-rating.star-1 .reviews__star:nth-child(1),
.reviews__rating.stack-rating.star-2 .reviews__star:nth-child(-n+2),
.reviews__rating.stack-rating.star-3 .reviews__star:nth-child(-n+3),
.reviews__rating.stack-rating.star-4 .reviews__star:nth-child(-n+4),
.reviews__rating.stack-rating.star-5 .reviews__star:nth-child(-n+5) {
  color: #d5e4e5;
}

.reviews__stack {
  position: relative;
  height: 300px;
  width: 765px;
}

.stack-card {
  position: absolute;
  width: 382px;
  height: 300px;
  box-sizing: border-box;
  right: 0;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  border-color: transparent;
}
.stack-card .reviews__card-text {
  color: #bebfc1;
}
.stack-card .reviews__card-user > p {
  color: #a3afbe;
}
.stack-card .reviews__card-user > span {
  color: #d1d7df;
}

.card-1 {
  top: 0;
  right: 0;
  z-index: 3;
  transform: translateY(0);
}

.card-2 {
  top: 0;
  right: 15%;
  z-index: 2;
  opacity: 0.9;
  width: 85%;
}

.card-3 {
  top: 0;
  right: 30%;
  z-index: 1;
  opacity: 0.8;
  width: 85%;
}

.reviews__more-btn {
  color: #76869e;
  text-align: center;
  font-weight: 400;
  line-height: 120%;
  border: none;
  background-color: transparent;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

@media (max-width: 1350px) {
  .reviews-inner {
    justify-content: center;
  }
  .reviews__stack {
    display: none;
  }
  .reviews__card {
    min-height: 300px;
  }
}
@media (max-width: 900px) {
  .reviews__card-text {
    font-size: 14px;
  }
  .reviews__card {
    min-height: 200px;
  }
}
.contacts {
  padding: 60px 0;
}

.contacts__wrapper {
  max-width: 585px;
  margin: 0 auto;
  margin-bottom: 75px;
}

.contacts__title {
  margin-bottom: 14px;
}

.contacts__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.contacts__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contacts__form {
  border-radius: 20px;
  border: 1px solid rgba(209, 215, 223, 0.6);
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px 36px;
}
.contacts__form > textarea {
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid rgba(209, 215, 223, 0.5);
  background: #fff;
  resize: none;
  height: 240px;
  padding-top: 20px;
  padding-left: 20px;
  font-family: "Open Sans";
}
.contacts__form > input {
  border-radius: 6px;
  border: 1px solid rgba(209, 215, 223, 0.5);
  background: #fff;
  padding: 14px 20px 13px 20px;
}
.contacts__form > input,
.contacts__form textarea {
  color: #a3afbe;
  font-weight: 400;
  line-height: 120%;
  font-size: 16px;
}
.contacts__form > input::-moz-placeholder, .contacts__form textarea::-moz-placeholder {
  color: #a3afbe;
}
.contacts__form > input::placeholder,
.contacts__form textarea::placeholder {
  color: #a3afbe;
}

.contacts__content-button {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  border-radius: 1000px;
  background: #569595;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-color: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.contacts__info {
  border-radius: 20px;
  border: 1px solid rgba(209, 215, 223, 0.6);
  background: #fff;
  box-shadow: 0px 8px 20px 0px rgba(157, 159, 161, 0.21);
  padding: 40px 20px 36px;
}

.contacts__info-title {
  color: #569595;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.24px;
  margin-bottom: 40px;
}

.contacts__info-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.contacts__info-contact > a,
.contacts__info-contact div {
  color: #45484a;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  display: flex;
  gap: 20px;
  align-items: center;
  -webkit-text-decoration: underline transparent 1px;
          text-decoration: underline transparent 1px;
  transition: 0.3s ease;
}
.contacts__info-contact > a > span {
  display: inline-block;
  align-content: center;
  display: flex;
  align-items: center;
}
.contacts__info-contact > p {
  color: #45484a;
  font-size: 20px;
  line-height: 130%;
}

.contacts__info-messengers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__info-messengers > p {
  color: #45484a;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.contacts__info-messengers-links {
  display: flex;
  gap: 20px;
}
.contacts__info-messengers-links > a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  background: #80afb0;
  border: 1px solid transparent;
  text-align: center;
  align-content: center;
  box-sizing: border-box;
  transition: 0.3s ease;
}
.contacts__info-messengers-links > a > span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__info-messengers-links > a > span > svg {
  color: white;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .contacts__content-button:hover {
    background-color: white;
    border-color: #569595;
    color: #569595;
    transition: 0.3s ease;
  }
  .contacts__info-messengers-links > a:hover {
    background-color: white;
    border-color: #569595;
    transition: 0.3s ease;
  }
  .contacts__info-messengers-links > a:hover > span > svg {
    color: #569595;
    transition: 0.3s ease;
  }
  .contacts__info-contact > a:hover {
    text-decoration-color: #45484a;
    transition: 0.3s ease;
  }
}
@media (max-width: 900px) {
  .contacts__content {
    grid-template-columns: 1fr;
  }
  .contacts__info-contact > a,
  .contacts__info-contact > div,
  .contacts__info-contact > p {
    font-size: 14px;
  }
  .contacts__info-messengers > p {
    font-size: 14px;
  }
  .contacts__info-title {
    font-size: 16px;
  }
  .contacts__content-button {
    font-size: 16px;
  }
  .contacts__subtitle {
    font-size: 14px;
  }
}
.investment {
  background-image: url("../../assets/images/manor/phuket-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 40px;
}

.investment__content {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 763px);
  gap: 88px;
}

.investment__left-title {
  color: #185bae;
  font-family: "Bebas Neue";
  font-size: 64px;
  font-weight: 400;
  line-height: 70px;
  margin-bottom: 40px;
}

.investment__left-text {
  color: #45484a;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 20px;
}

.investment__right {
  max-width: 763px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.investment__right > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.investment__right-text {
  display: block;
  position: absolute;
  background-image: url("../../assets/icons/manor/logo-manor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 660px;
  height: 73px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1350px) {
  .investment__right-text {
    display: none;
  }
}
@media (max-width: 1100px) {
  .investment__content {
    grid-template-columns: 1fr;
  }
  .investment__right {
    display: none;
  }
  .investment__left-title {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .investment__left-title {
    font-size: 36px;
    line-height: 130%;
  }
  .investment__left-text {
    font-size: 14px;
  }
  .investment__left-button {
    font-size: 16px;
  }
  .gallery__title {
    margin-bottom: 30px;
  }
}
.gallery__title {
  color: #2e8ca9;
  font-weight: 400;
  margin-bottom: 60px;
}

.fullscreen-gallery-swiper {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
}

.gallery__slide {
  width: 765px !important;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  margin-right: 30px;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-wrapper {
  box-sizing: border-box;
  display: flex;
}

@media (max-width: 1100px) {
  .gallery__slide {
    width: 100% !important;
  }
}
@media (max-width: 700px) {
  .gallery__slide {
    height: 250px;
    border-radius: 20px;
  }
}
.plan {
  background-color: #23231f;
  border-radius: 40px 40px 0 0;
  padding-top: 100px;
  padding-bottom: 130px;
}

.plan__title {
  color: #ff8b11;
  margin-bottom: 60px;
}

.plan__map {
  margin-bottom: 40px;
  position: relative;
  height: 850px;
  width: 100%;
}
.plan__map > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.units,
.marker-block {
  position: absolute;
}

.units__circle {
  border-radius: 50%;
  border: 0.654px solid #fff;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.units__text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.units-34 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  top: -3%;
  left: 50%;
}
.units-34 .units-34__line {
  width: 50%;
  height: 243px;
  border-right: 2px dashed #fff;
}

.units-6 {
  top: 70px;
  right: 255px;
}

.units-6,
.units-17 {
  display: flex;
  gap: 6px;
}

.units-17 {
  top: 248px;
  right: 185px;
}

.units-6__line,
.units-17__line {
  width: 154px;
  height: 50%;
  border-bottom: 2px dashed #fff;
  margin-bottom: 6px;
}

.units-6__text,
.units-17__text {
  text-align: end;
}

.units-19 {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  bottom: 8px;
  left: 393px;
}
.units-19 .units-19__line {
  width: 50%;
  height: 70px;
  border-right: 2px dashed #fff;
}

.marker-block__block {
  color: #2f2929;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  width: 220px;
  background-color: #cbc5b8;
  border-radius: 12px;
  padding: 4px 0;
  margin-bottom: 10px;
}

.marker-block__wrapper {
  display: flex;
}

.marker-block__icon {
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: contain;
}

.phase-1 {
  top: 160px;
  left: 90px;
}
.phase-1 .phase-1__circle {
  margin-right: 6px;
}
.phase-1 .phase-1__line {
  width: 220px;
  height: 50%;
  border-bottom: 2px dashed #fff;
  margin-bottom: 6px;
}
.phase-1 .phase-1__text {
  text-align: start;
}
.phase-1 .phase-1__icon {
  margin-right: 12px;
}

.clubhouse {
  bottom: 330px;
  left: 30px;
}
.clubhouse .clubhouse__block {
  background-color: #aa8769;
  padding: 15px 0;
}
.clubhouse .clubhouse__icons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.clubhouse .clubhouse__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clubhouse .clubhouse__line {
  width: 250px;
  height: 50%;
  border-bottom: 2px dashed #fff;
}
.clubhouse .clubhouse__text {
  text-align: start;
}

.phase-2 {
  bottom: 120px;
  left: 32px;
}
.phase-2 .phase-2__wrapper {
  margin-bottom: 20px;
}
.phase-2 .phase-2__text {
  text-align: start;
}
.phase-2 .phase-2__line {
  width: 180px;
  height: 50%;
  border-bottom: 2px dashed #fff;
  margin-bottom: 10px;
}
.phase-2 .phase-2__icon {
  margin-bottom: 10px;
}

.phase-3 {
  top: 170px;
  right: 140px;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.phase-3 .phase-3__block {
  background-color: #ff8b11;
  color: #fff;
  padding: 15px 0;
  margin-bottom: 10px;
}
.phase-3 .phase-3__line {
  width: 260px;
  height: 50%;
  border-bottom: 2px dashed #fff;
  display: flex;
  justify-content: end;
}

.grand-manor {
  bottom: 345px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.grand-manor .grand-manor__block {
  background-color: #3a3531;
  color: #c9c4bf;
}
.grand-manor .grand-manor__line {
  width: 305px;
  height: 50%;
  border-bottom: 2px dashed #fff;
  display: flex;
  justify-content: end;
}

.compas-icon {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 66px;
}

.plan__tables {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.plan__table {
  max-width: 260px;
  border: 1.307px solid #cbc5b8;
}
.plan__table .plan__table-top {
  padding: 11px 0;
  background-color: #cbc5b8;
  text-align: center;
  color: #2f2929;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plan__table .plan__table-list {
  padding: 0 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan__table .plan__table-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan__table .plan__table-item .table__circle {
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #383735;
  box-sizing: border-box;
}
.plan__table .plan__table-item .table__circle.--reserved {
  background-color: #cac4b5;
  border-color: #9a7d63;
}
.plan__table .plan__table-item .table__circle.--sold {
  background-color: #3a3531;
  border-color: #9e7e68;
}
.plan__table .plan__table-item .table__line {
  width: 105px;
  height: 50%;
  border-bottom: 2px dashed #d3d3d2;
}
.plan__table .plan__table-item .table__text {
  color: #cbc5b8;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.right-table {
  border: 1.307px solid #ff8b11;
}
.right-table .right-table__top {
  background-color: #ff8b11;
}
.right-table .table__circle.--phase-3 {
  border-color: #ff8b11;
}

.plan__button {
  border-radius: 1000px;
  background: #ff8b11;
  padding: 12px 20px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
  max-width: 244px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .plan__button:hover {
    color: #45484a;
    background-color: #fff;
    transition: 0.3s ease;
  }
}
@media (max-width: 1430px) {
  .plan__map {
    height: 400px;
    width: 622px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .units,
  .marker-block {
    transform: scale(0.5);
  }
  .units-34 {
    top: -24%;
    left: 48%;
  }
  .grand-manor {
    bottom: 33%;
    right: -4%;
  }
  .phase-3 {
    top: 16%;
    right: 0%;
  }
  .units-6 {
    top: 3%;
    right: 17%;
  }
  .units-17 {
    top: 28%;
    right: 5%;
  }
  .units-19 {
    bottom: -10%;
    left: 28%;
  }
  .phase-1 {
    top: 11%;
    left: -5%;
  }
  .phase-2 {
    bottom: 1%;
    left: -7%;
  }
  .clubhouse {
    bottom: 22%;
    left: -10%;
  }
}
@media (max-width: 800px) {
  .plan__tables {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (max-width: 768px) {
  .plan__map {
    height: 250px;
    width: 320px;
  }
  .units,
  .marker-block {
    transform: scale(0.3);
  }
  .units-34 {
    top: -48%;
    left: 45%;
  }
  .grand-manor {
    bottom: 26%;
    right: -29%;
  }
  .phase-3 {
    top: 11%;
    right: -25%;
  }
  .units-6 {
    top: 0%;
    right: -3%;
  }
  .units-17 {
    top: 24%;
    right: -16%;
  }
  .units-19 {
    bottom: -21%;
    left: 21%;
  }
  .phase-1 {
    top: 4%;
    left: -33%;
  }
  .phase-2 {
    bottom: -11%;
    left: -31%;
  }
  .clubhouse {
    bottom: 8%;
    left: -35%;
  }
  .compas-icon {
    transform: scale(0.4);
  }
}
@media (max-width: 600px) {
  .plan__button {
    font-size: 16px;
  }
}
.project__title {
  color: #185bae;
}

.project__side-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 60px;
}
.project__side-text > p {
  max-width: 655px;
  grid-column: 2;
  color: #45484a;
  font-size: 34px;
  font-weight: 600;
  line-height: 130%;
}

.project__accordion {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.project__item {
  height: 100%;
  box-sizing: border-box;
  max-width: 246px;
  height: 408px;
  border-radius: 10px;
  border: 1px solid #d1deef;
  padding: 20px 20px 40px;
  overflow: hidden;
  transition: 0.5s ease;
}
.project__item .project__item-top {
  margin-bottom: 80px;
}
.project__item .project__item-number {
  display: block;
  color: #a3bddf;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 20px;
}
.project__item .project__item-title {
  color: #a3bddf;
  font-size: 32px;
  font-weight: 400;
  line-height: 130%;
  transition: 0.5s ease;
}
.project__item .project__item-text {
  color: #45484a;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease;
}

.project__item.active {
  max-width: 514px;
  border-color: #467cbe;
  background-color: #e8eff7;
  transition: 0.5s ease;
}
.project__item.active .project__item-number,
.project__item.active .project__item-title {
  color: #185bae;
  transition: 0.5s ease;
}
.project__item.active .project__item-text {
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease;
}

@media (max-width: 1385px) {
  .project__accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 1100px) {
  .project__item.active {
    height: 100%;
  }
  .project__item .project__item-top {
    margin-bottom: 30px;
  }
  .project__side-text > p {
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  .project__side-text {
    grid-template-columns: 1fr;
  }
  .project__side-text > p {
    grid-column: 1;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .project__side-text > p {
    font-size: 14px;
  }
  .project__item.active .project__item-title {
    font-size: 16px;
  }
  .project__item.active .project__item-text {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .project__accordion {
    grid-template-columns: 1fr;
  }
}
.property-haven__title {
  color: #2e8ca9;
}

.property-haven__top {
  padding-bottom: 20px;
  border-bottom: 1px solid #b6d8dd;
}

.property-haven__top-name {
  color: #45484a;
  text-transform: uppercase;
  font-size: 16px;
}

.row {
  display: flex;
  justify-content: start;
  border-bottom: 1px solid #b6d8dd;
}
.row .cell:nth-child(1) {
  flex: 0.5;
}
.row .cell:nth-child(2) {
  flex: 1;
}
.row .cell:nth-child(3) {
  flex: 1;
}
.row .cell:nth-child(4) {
  flex: 1;
}

.property-haven__row {
  position: relative;
  padding: 40px 0;
  padding-left: 10px;
  transition: 0.3s ease;
}

.property-haven__cell {
  color: #1d3f44;
  font-size: 20px;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.property-haven__button {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 20px;
  border-radius: 1000px;
  border: 1px solid #45484a;
  background: #fff;
  color: #45484a;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  padding: 12px 24px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.property-haven__image {
  position: absolute;
  bottom: 0;
  right: 34%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .property-haven__row:hover {
    background-color: #dbecee;
    border-color: transparent;
    transition: 0.3s ease;
  }
  .property-haven__row:hover .property-haven__cell {
    color: #1d3f44;
    transition: 0.3s ease;
  }
  .property-haven__row:hover .property-haven__button {
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease;
  }
  .property-haven__row:hover .property-haven__image {
    transform: translateY(-28px);
    visibility: visible;
    opacity: 1;
    transition: 0.3s ease;
  }
  .property-haven__button:hover {
    background-color: #499eaa;
    color: #fff;
    border-color: transparent;
    transition: 0.3s ease;
  }
}
@media (max-width: 1100px) {
  .property-haven__cell {
    font-size: 15px;
  }
}
@media (max-width: 900px) {
  .property-haven__top-name {
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .property-haven__top-name {
    font-size: 10px;
  }
  .property-haven__cell {
    font-size: 12px;
  }
}
@media (max-width: 530px) {
  .property-haven__top-name {
    font-size: 8px;
  }
}
@media (max-width: 440px) {
  .property-haven__top-name {
    font-size: 6px;
  }
}
.location {
  border-radius: 40px 40px 0 0;
  background: #23231f;
  padding-top: 100px;
  padding-bottom: 130px;
}

.location__title {
  color: #ff8b11;
}

.location__content {
  display: flex;
  gap: 50px;
}

.location__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.location__icon-mark {
  color: #616161;
  width: 32px;
  height: 32px;
  transition: 0.3s ease;
}

.map__icon-mark {
  color: transparent;
  padding: 2px;
}

.location__item-name {
  color: #616161;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.location__item-line {
  width: 67px;
  height: 50%;
  border-bottom: 2px dashed #616161;
  transition: 0.3s ease;
}

.location__item-time {
  color: #616161;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.location__item-left,
.location__item-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location__item.active .location__icon-mark {
  color: #ff8b11;
  transition: 0.3s ease;
}
.location__item.active .location__item-name {
  color: #d8d8d8;
  transition: 0.3s ease;
}
.location__item.active .location__item-line {
  border-color: #d8d8d8;
  transition: 0.3s ease;
}
.location__item.active .location__item-time {
  color: #d8d8d8;
  transition: 0.3s ease;
}

.map__icon-mark.active {
  color: #ff8b11;
  transform: scale(1.5);
  transform-origin: center;
  transform-box: fill-box;
}

@media (max-width: 1350px) {
  .location__map > svg {
    width: 600px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .location__content {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (max-width: 800px) {
  .location__map > svg {
    width: 400px;
  }
}
@media (max-width: 460px) {
  .location__map > svg {
    width: 300px;
  }
}
.construction__title {
  color: #185bae;
  margin-bottom: 40px;
}

#construction__video {
  width: 100%;
  border-radius: 40px;
  margin-bottom: 40px;
}

.construction__info {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.construction__left > img {
  width: 100%;
  margin-bottom: 40px;
}

.construction__description {
  max-width: 520px;
  color: #45484a;
  font-size: 20px;
}

.construction__text {
  max-width: 655px;
  color: #ff8b11;
  font-size: 34px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 40px;
}

.construction__download {
  display: flex;
  gap: 10px;
  color: #45484a;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.construction__download .construction__download-icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: 0.3s ease;
}
.construction__download .construction__download-icon > svg {
  color: #45484a;
}

@media (hover: hover) {
  .construction__download:hover {
    color: #ff8b11;
    transition: 0.3s ease;
  }
  .construction__download:hover .construction__download-icon {
    transform: rotate(30deg);
    transition: 0.3s ease;
  }
  .construction__download:hover .construction__download-icon > svg {
    color: #ff8b11;
  }
}
@media (max-width: 1320px) {
  .construction__text {
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  .construction__info {
    flex-direction: column;
  }
  #construction__video {
    border-radius: 20px;
  }
  .construction__description {
    font-size: 14px;
  }
  .construction__text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .construction__download {
    font-size: 16px;
    align-items: end;
  }
}
.form {
  background-color: #edf6f7;
  padding-bottom: 100px;
  margin-bottom: 0;
  padding-top: 60px;
}

.form__title {
  color: #2e8ca9;
}

.form__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 100px;
}

.form__form {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  max-width: 426px;
}
.form__form .form__form-title {
  color: #2e8ca9;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.form__form .form__form-input {
  border: none;
  border-bottom: 1px solid #b6d8dd;
  padding: 20px 0;
  color: #8f9192;
  font-size: 20px;
  text-transform: uppercase;
  background-color: transparent;
}
.form__form .form__form-input:focus {
  outline: none;
}
.form__form .form__form-button {
  border-radius: 1000px;
  background: #b6d8dd;
  padding: 12px 40px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  border-color: transparent;
  width: 146px;
  margin-top: 40px;
  cursor: pointer;
  transition: 0.3s ease;
}

.form__hero {
  overflow: hidden;
  border-radius: 20px;
}
.form__hero > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (hover: hover) {
  .form__form-button:hover {
    background-color: #499eaa;
    color: #fff;
    transition: 0.3s ease;
  }
}
@media (max-width: 900px) {
  .form__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .form__form {
    grid-column: 1;
  }
  .form__form .form__form-input {
    font-size: 14px;
  }
  .form__form .form__form-button {
    font-size: 16px;
  }
}
.footer {
  background-color: #e8ebef;
  padding-top: 60px;
  padding-bottom: 130px;
  margin: 0;
}

.footer__list {
  display: flex;
  justify-content: space-between;
}

.footer__item-title {
  color: #1a365d;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 40px;
}

.footer__about {
  width: 226px;
}

.footer__about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}
.footer__about-text > p {
  color: #37393b;
  line-height: 130%;
}

.footer__logo {
  display: block;
}

.footer__copyright {
  color: #37393b;
  line-height: 130%;
  display: block;
  margin-top: 20px;
}

.footer__navigation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__navigation-list > li > a {
  color: #37393b;
  line-height: 130%;
  -webkit-text-decoration: underline transparent 1px;
          text-decoration: underline transparent 1px;
  transition: 0.3s ease;
}

.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contacts-item {
  border-bottom: 1px solid #dedfe0;
  padding-bottom: 20px;
}
.footer__contacts-item > p {
  color: #7d7f82;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 10px;
}
.footer__contacts-item > span,
.footer__contacts-item a {
  color: #37393b;
  line-height: 130%;
}
.footer__contacts-item > a {
  -webkit-text-decoration: underline transparent 1px;
          text-decoration: underline transparent 1px;
  transition: 0.3s ease;
}

.socials__wrapper {
  border: none;
  padding: 0;
}

.footer__contacts-socials {
  display: flex;
  gap: 14px;
}
.footer__contacts-socials > a > span {
  display: inline-block;
  color: #37393b;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .footer__navigation-list > li > a:hover {
    text-decoration-color: #37393b;
    transition: 0.3s ease;
  }
  .footer__contacts-item > a:hover {
    text-decoration-color: #37393b;
    transition: 0.3s ease;
  }
  .footer__contacts-socials > a:hover > span {
    opacity: 0.5;
    transition: 0.3s ease;
  }
}
@media (max-width: 800px) {
  .footer__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .footer__copyright {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .footer__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer__logo {
    text-align: center;
  }
  .footer__about-text > p {
    text-align: center;
  }
  .footer__navigation-list > li {
    text-align: center;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__item > p {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */