@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;

}
body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
:root {
  --blue: #39bfc2;
  --black: #393534;
  --brick: #dea588;
  --brown: #987562;
  --inter: "Inter", serif;
  --noto: "Noto Serif", serif;
  --nunito: "Nunito", serif;
}
a,
p,
span,
label,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: var(--inter);
  font-size: 16px;
}
a,
p,
span,
label{
  font-family: var(--nunito);
}
body::-webkit-scrollbar {
  width: 8px;               /* ширина scrollbar */
}
body::-webkit-scrollbar-track {
  background: #ffffff;        /* цвет дорожки */
}
body::-webkit-scrollbar-thumb {
  background-color: var(--blue);    /* цвет плашки */
  border-radius: 10px;       /* закругления плашки */
}

.wrap {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1300px;
}

/* GENERAL */
.form_show {
  font-size: 16px !important;
  padding: 12px 20px;
  box-sizing: border-box !important;
  border: 3px solid var(--blue) !important;
  border-radius: 15px !important;
  cursor: pointer !important;
  transition: 0.3s;
}
.form_show:hover{
  background: var(--blue);
  color: #fff;
  font-family: var(--nunito);
}
.modal__open {
  display: flex !important;
}
.block {
  width: 100%;
  margin-bottom: 100px;
}
h2.main__title {
  font-size: 46px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 68.1px;
  font-family: var(--nunito);
  color: var(--black);
}
.unActive {
  display: none;
}
.popup__trigger{
  cursor: pointer;
}

/* HEADER */

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  height: 80px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.header__left,
.header__right {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  justify-content: flex-start;
  width: 50%;
}
.header__right {
  width: 50%;
}
.header__logo {
  margin-right: 42px;
}
.header__address p {
  color: var(--black);
  font-family: var(--nunito);
}
.header__sn {
  display: flex;
  align-items: center;
}
.header__sn a {
  color: var(--black);
  line-height: 19.36px;
  transition: 0.3s;
  font-family: var(--nunito);
}
.header__sn > a:nth-child(1),
.header__sn > a:nth-child(2) {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.header__sn a:hover{
  transform: scale(1.1);
}
.header__sn span {
  display: block;
  max-width: 135px;
}
.header__sn span a {
  display: block;
}
.header__sn span a:hover {
  transform: scale(1.1);
}
.header__sn span a:first-child {
  margin-bottom: 2px;
}
.header__sn img {
  width: 100%;
  height: 100%;
}
.header__burger{
  width: 50px;
  height: 35px;
  transition: 0.3s;
}
.header__burger:hover{
  transform: scale(1.1);
}
.header__burger img {
  cursor: pointer;
  width: 100%;
  height:100%;
}
.preHeader{
  width: 100%;
  height: 80px;
}
.privacy__burger{
  width: fit-content;
  height: fit-content;
}
.privacy__burger:hover{
  transform: unset;
}
.privacy__burger a{
  color: var(--black);
}

/* SLIDER */
section.slider {
  position: relative;
  height: calc(100vh - 80px);
}
section.slider .flexslider{
  height: 100%;
}
section.slider .flex-viewport{
  height: 100%;
}
section.slider .slides{
  height: 100%;
}
section.slider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.slider .slides li {
  position: relative;
  height: 100%;
}
.slide__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 19px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #39353485;
  top: 19%;
  left: 12%;
  width: 588px;
  color: #fff;
}
.slide__text h2 {
  margin-bottom: 6px;
  font-family: var(--noto);
  font-size: 50px;
  line-height: 68.1px;
  font-weight: 600;
  text-transform: uppercase;
}
.slide__text span {
  margin-bottom: 17px;
  font-size: 32px;
  line-height: 43.65px;
  font-weight: 500;
  font-family: var(--nunito);
}
.slide__text p {
  color: #fff;
  font-family: var(--nunito);
  font-size: 24px;
  line-height: 32.74px;
  font-weight: 400;
}

.slide__btn {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: center;
}
.slide__btn span {
  padding: 20px 60px;
  background: #fff;
  font-family: var(--nunito);
  font-weight: 400;
  line-height: 19.36px;
}
.flex-control-nav {
  bottom: 10px !important;
}

section.slider .flexslider:hover .flex-prev {
  opacity: 1;
  left: 65px;
}
section.slider .flexslider:hover .flex-next {
  opacity: 1;
  right: 65px;
}
section.slider .flex-control-nav li a {
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  box-sizing: border-box;
  background: transparent;
}
section.slider .flex-control-nav li a.flex-active {
  width: 10px;
  height: 10px;
  background: var(--blue);
}
section.slider .flex-next {
  opacity: 1;
  right: 65px;
  width: 40px;
  height: auto;
}
section.slider .flex-prev {
  opacity: 1;
  left: 65px;
  width: 40px;
  height: auto;
}
section.slider .flex-next::before {
  content: url(../images/arr_right.png) !important;
  width: 100%;
}
section.slider .flex-prev::before {
  content: url(../images/arr_left.png) !important;
  width: 100%;
}
section.slider .flex-prev:hover,
section.slider .flex-next:hover {
  transform: scale(1.1);
}
/* POPUP */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #00000018;
}
.popup__form {
  z-index: 20;
}
.popup__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.popup__wrap svg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.popup__content {
  position: relative;
  width: fit-content;
  max-width: 480px;
  padding: 35px 43px;
  box-sizing: border-box;
  border: 3px solid var(--blue);
  border-radius: 15px;
  background: #F9F9F9;
  z-index: 2;
}
.popup__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: --black;
  opacity: 0.5;
  z-index: 1;
  cursor: pointer;
}
.popup span.title {
  font-family: var(--noto);
  font-weight: 400;
  font-size: 32px;
  line-height: 43.58px;
  display: block;
  margin-bottom: 27px;
}
.popup input:not([type="checkbox"]) {
  height: 50px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 11px;
  border: none;
  border-bottom: 1px solid var(--brick);
  border-radius: 15px;
  background: #ffffff;
  font-family: var(--nunito);
  color: var(--black);
  font-size: 16px;
  line-height: 21.82px;
  font-weight: 400;
  width: 68%;
}
.popup input[type="submit"] {
  padding: 0;
  transition: 0.3s;
}
.popup input[type="submit"]:hover{
  background: var(--blue);
  color: #fff;
}
.check__wrap {
  display: flex;
  width: 70%;
}
.check__wrap label a {
  text-decoration: underline;
  cursor: pointer;
  color: var(--black);
}
.check__wrap label, .check__wrap label a {
  font-family: var(--nunito);
  font-size: 14px;
}
.check__wrap input {
  margin-right: 8px;
  width: 15px;
  height: 15px;
  border-radius: 0;
}
.popup__conf {
  z-index: 21;
}
.popup__conf .popup__content {
  width: 80%;
  max-height: 90%;
  overflow: auto;
}
.popup__conf .popup__content p {
  font-size: 24px;
}
.popup__content form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup__conf .popup__content {
  max-width: 1300px;
  padding: 97px 10%;
  box-sizing: border-box;
}
.popup__conf .popup__content span {
  font-family: var(--noto);
  margin-bottom: 52px;
}
.popup__conf .popup__content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 32.74px;
  font-family: var(--nunito);
}
.popup__content .popup__formClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.catalog__popup {
  z-index: 10;
}
/* ABOUT */

section.about {
  display: flex;
  justify-content: space-between;
}
.about__text {
  display: flex;
  flex-direction: column;
  width: 40%;
  padding-right: 50px;
}
.about__text h2 {
  margin-bottom: 46px;
}
.about__text p {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  font-family: var(--nunito);
  color: var(--black);
}
.about__img {
  width: 60%;
}
.about__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* ADVANTAGES */

section.advantages {
  background: var(--brown);
  padding: 70px 0;
  padding-bottom: 0;
  box-sizing: border-box;
}
section.advantages h2 {
  color: #ffffff;
  margin-bottom: 38px;
}
.advantages__imgs {
  display: flex;
  flex-direction: column;
}
.advantages__img__row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}
.advantages__img__rowReverse {
  flex-direction: row-reverse;
  align-items: flex-end;
  transform: translateY(-50px);
  z-index: 1;
}
.advantages__img__block {
  position: relative;
  width: 22%;
  height: fit-content;
}
.advantages__img__block img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 6 / 6;
  border-radius: 15px;
}
.advantages__img__block:hover .advantages__img__text{
  transform: scale(1.05);
}
.advantages__img__block a{
  display: block;
  height: fit-content;
}
.advantages__img__block:nth-child(1),
.advantages__img__block:nth-child(6) {
  width: 48%;
}
.advantages__img__block:nth-child(6) {
  margin-bottom: 0;
}
.advantages__img__block:nth-child(1) img,
.advantages__img__block:nth-child(6) img {
  aspect-ratio: unset;
}
.advantages__img__block:nth-child(4),
.advantages__img__block:nth-child(5) {
  display: flex;

  align-self: flex-end;
}
.advantages__img__text {
  background: var(--black);
  position: absolute;
  bottom: 18px;
  left: 16px;
  display: flex;
  width: 200px;
  padding: 13px 10px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-radius: 10px;
}
.advantages__img__text p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 10px;
  font-family: var(--nunito);
}
.gslide-description p{
  font-family: var(--nunito) !important;
}
.advantages__img__text p::-webkit-scrollbar {
  width: 8px;               /* ширина scrollbar */
}
.advantages__img__text p::-webkit-scrollbar-track {
  background: #ffffff;        /* цвет дорожки */
}
.advantages__img__text p::-webkit-scrollbar-thumb {
  background-color: var(--blue);    /* цвет плашки */
  border-radius: 10px;       /* закругления плашки */
}
.advantages__img__text p:not(:nth-child(1)){
  display: none;
}
.advantages__img__text a:not(:nth-child(1)){
  display: none;
}
.advantages__img__text b:not(:nth-child(1)){
  display: none;
}
/* .advantages__img__text:hover {
  text-overflow: inherit;
  white-space: inherit;
  flex-direction: column;
  overflow: auto;
  height: 80%;
  width: 90%;
}
.advantages__img__text:hover img {
  display: none;
}
.advantages__img__text:hover p {
  overflow: visible;
  height: 100%;
  display: block;
}
.advantages__img__text:hover p:not(:nth-child(1)){
  display: block;
}
.advantages__img__text:hover a:not(:nth-child(1)){
  display: block;
} */
.advantages__img__block img.advantages__img__lupa{
  width: 20px;
  height: 20px;
}

/* CATALOG */
@keyframes rotate {
  from {
    opacity: 1;
  }
}
section.catalog {
  position: relative;
  box-sizing: border-box;
}
.catalog__wrap {
  position: relative;
  width: 100%;
}
.catalog__tower {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  transition: all 0.1s ease;
  /* animation: rotate 1s linear infinite; */
}
.catalog__tower.active{
  opacity: 1;
}
.catalog__tower.disabled .catalog__tower__wrap span{
  background: #e07878;
  color: #fff;
}
.catalog__tower:hover{
  opacity: 1;
}
.tower_1{
  top: 9.3%;
  left: 7%;
  transform: scale(1.1);
}
.tower_2{
  top: 11.8%;
  left: 12.8%;
  transform: scale(1.1);
}
.tower_3{
  top: 14.7%;
  left: 20.6%;
  transform: scale(1.1);
}
.tower_4{
  top: 18.7%;
  left: 27.9%;
  transform: scale(1.1);
}
.tower_5{
  top: 23.9%;
  left: 45%;
  transform: scale(1.1);
}
.tower_6{
  top: 24.7%;
  left: 56.5%;
  transform: scale(1.1);
}
.tower_7{
  top: 26.1%;
  left: 74.9%;
  transform: scale(1.13);
}
img.catalog__mainImg {
  width: 100%;
}
.catalog__tower__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.catalog__tower__wrap span {
  display: block;
  position: absolute;
  top: -15%;
  left: 4%;
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
  background: #fff;
  width: fit-content;
  padding: 20px;
  border-radius: 10px;
  font-family: var(--nunito);
}
.popup__content__cat {
  width: 60%;
  max-width: 1440px;
  padding: 35px 70px 35px 43px;
}
.popup__content__wrap {
  display: flex;
  justify-content: space-between;
}
.popup__cat__img {
  width: 70%;
}
.popup__cat__img img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}
.popup__cat__floor::-webkit-scrollbar {
  width: 8px;               /* ширина scrollbar */
}
.popup__cat__floor::-webkit-scrollbar-track {
  background: #ffffff;        /* цвет дорожки */
}
.popup__cat__floor::-webkit-scrollbar-thumb {
  background-color: var(--blue);    /* цвет плашки */
  border-radius: 10px;       /* закругления плашки */
}
.popup__cat__floor {
  width: 30%;
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
ul.popup__floor__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
ul.popup__floor__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80px;
  border: 1px solid --black;
  margin-bottom: 27px;
  cursor: pointer;
  border-radius: 15px;
  padding: 0 60px;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 400;
  line-height: 32.74px;
  font-family: var(--nunito);
}
ul.popup__floor__list li.active {
  border: 3px solid var(--brick);
}
ul.popup__floor__list li:last-child {
  margin-bottom: 0;
}
ul.popup__floor__list li.floor__unavailable {
  cursor: not-allowed;
  background: #8a8a8a;
}
ul.popup__floor__list li span {
  font-size: 24px;
  font-weight: 400;
  line-height: 32.74px;
  font-family: var(--nunito);
  margin-left: 5px;
}
.popup__cat__form{
  display: flex;
  justify-content: space-between;
}
.popup__cat__prev, .popup__cat__next{
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 30px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}
.popup__cat__prev:hover, .popup__cat__next:hover{
  transform: scale(1.2);
}
.popup__cat__prev{
  left: 2%;
}
.popup__cat__next{
  right: 2%;
}
.popup__cat__form span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 32px;
  box-sizing: border-box;
  border: 1px solid --black;
  cursor: pointer;
  margin-top: 24px;
}
.popap__cat__nav{
  display: flex;
}
.cat__title {
  display: flex;
  justify-content: center;
}
.cat__title span {
  font-family: var(--noto);
  font-weight: 600;
  font-size: 50px;
  line-height: 68.1px;
  color: var(--blue);
  margin-bottom: 45px;
}
.floor__title_mobil {
  display: none !important;
}
.popup__cat__form_mobile {
  display: none;
}

/* PLANNER */

.planner__wrap {
  display: flex;
  justify-content: space-between;
}
.planner__selected {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.planner__selected__img {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}
.planner__selected__img img {
  width: 100%;
  object-fit: cover;
}
.planner__selected__img span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: transparent;
  font-family: var(--nunito);
  font-weight: bold;
  font-size: 16px;
  line-height: 19.36px;
  color: --black;
}
.planner__selected__text {
  display: flex;
  flex-direction: column;
  width: 85%;
  align-self: flex-start;
}
.planner__selected__text p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 18px;
  line-height: 25.28px;
}
.planner__selected__text span {
  padding-top: 17px;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--nunito);
  font-weight: 600;
  font-size: 24px;
  line-height: 32.74px;
}
.planner__list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 45%;
}
.planner__list h2 {
  font-family: var(--noto);
  font-weight: 600;
  font-size: 36px;
  line-height: 51.76px;
  margin-bottom: 56px;
}
.planner__list__text {
  margin-bottom: 30px;
}
.planner__list__text p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 20px;
  line-height: 27.28px;
}
ul.planner__list__layout {
  display: flex;
  margin-bottom: 50px;
  width: 100%;
}
ul.planner__list__layout li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 12px 32px;
  box-sizing: border-box;
  background: var(--brown);
  cursor: pointer;
  height: 55px;
  box-sizing: border-box;
  font-family: var(--nunito);
  font-size: 16px;
  line-height: 19.36px;
  color: #ffffff;
  border-radius: 10px;
  transition: 0.3s;
  border: 3px solid #fff;
  margin-right: 10px;
}
ul.planner__list__imgs_active::-webkit-scrollbar {
  height: 8px;              /* ширина scrollbar */
}
ul.planner__list__imgs_active::-webkit-scrollbar-track {
  background: #f9f9f9;        /* цвет дорожки */
}
ul.planner__list__imgs_active::-webkit-scrollbar-thumb {
  background-color: var(--blue);    /* цвет плашки */
  border-radius: 10px;       /* закругления плашки */
}
ul.planner__list__layout li:last-child{
  margin-right: 0;
}
ul.planner__list__layout li:hover{
  border: 3px solid var(--brown);
}
ul.planner__list__layout li.active {
  border: 3px solid var(--brown);
}
ul.planner__list__imgs {
  display: none;
  flex-wrap: wrap;
  width: 100%;
}
ul.planner__list__imgs li {
  position: relative;
  aspect-ratio: 6 / 6;
  width: 150px;
  height: 150px;
  margin-right: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  object-fit: contain;
}
ul.planner__list__imgs li img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
  border: 3px solid transparent;
}
ul.planner__list__imgs li img:hover{
  border: 3px solid var(--brick);
}
ul.planner__list__imgs li span {
  position: absolute;
  top: 3px;
  right: 3px;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 16px;
  line-height: 21.82px;
  color: --black;
  padding: 0 8px;
  border-radius: 5px;
  background: #fff;
}
ul.planner__list__imgs_active {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
ul.planner__list__imgs_active img.active {
  border: 3px solid var(--brick);
  box-sizing: border-box;
}
.planner__text__current {
  display: none;
  margin-bottom: 20px;
}
.planner__text__current_active {
  display: flex;
  flex-direction: column;
}
.planner__list__text {
  display: block;
}
.planner__list__text_mobile {
  display: none;
}
.planner__title_mobil {
  display: none;
}
.form_show_mobile {
  display: none;
}
.planner__selected__text__desktop {
  display: flex;
}
.planner__selected__text__mobile {
  display: none;
}
.planner__list__wrap{
  width: 100%;
  position: relative;
}
.planner__nav{
  display: flex;
  margin-bottom: 10px;
  position: absolute;
  top: 37%;
  left: -9%;
  width: 120%;
  justify-content: space-between;
}
.planner__nav img{
  width: 25px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.2s;
}
.planner__nav img:hover{
  transform: scale(1.1);
}
/* FOUND */

section.found {
  background: var(--brown);
  padding: 30px 0 40px 0;
  box-sizing: border-box;
  margin-bottom: 0;
}
.found__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.found__text,
.found__form {
  width: 45%;
}
.found__text h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 43.58px;
  color: #ffffff;
  margin-bottom: 35px;
}
.found__text p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 24px;
  line-height: 32.74px;
  color: #ffffff;
  width: 90%;
  text-align: justify;
}
.form {
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid var(--black);
}
.form input {
  font-size: 24px !important;
}
.form input:not([type="checkbox"]) {
  height: 50px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 26px;
  border: none;
  border-bottom: 1px solid var(--brick);
  border-radius: 15px;
  background: #ffffff;
  color: var(--black);
  font-size: 16px;
  line-height: 21.82px;
  font-weight: 400;
  width: 100%;
  font-family: var(--nunito);
}
.form input[type="submit"] {
  padding: 0;
  transition: 0.3s;
}
.form input[type="submit"]:hover{
  background: var(--blue);
  color: #fff;
}
.found__form .check__wrap {
  width: 100%;
}
/*INFRASTRUCTURE */

section.infrastructure {
  width: 100%;
  background: #f9f9f9;
  box-sizing: border-box;
  padding-top: 100px;
}
section.infrastructure h2 {
  margin-bottom: 34px;
}
.map, .saleMap{
  height: 620px;
}
.infrastructure__wrap {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 100px;
  box-sizing: border-box;
}
.infrastructure ul {
  position: absolute;
  top: 13%;
  left: 1%;
  background: #f9f9f9;
  padding: 10px 20px;
  box-sizing: border-box;
  border-radius: 15px;
}
.infrastructure ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 5px;
}
.infrastructure ul li.active {
  transform: translateX(-10px);
}
.infrastructure ul li.active p {
  color: var(--blue);
}
.infrastructure ul li img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.infrastructure ul li p {
  margin-right: 25px;
}
.infrastructure ul li p,
.infrastructure ul li span {
  font-family: var(--nunito);
  font-size: 18px;
  font-weight: 400;
  line-height: 38.19px;
}

/* PROGRESS */

section.progress {
  position: relative;
}
section.progress h2 {
  line-height: 68.1px;
  color: var(--black);
  margin-bottom: 17px;
}
.progress__wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.progressSlider a {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.progressSlider a img {
  width: 90%;
  aspect-ratio: 6 / 6;
  object-fit: cover;
  border-radius: 15px;
}
.progressSlider a span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: var(--black);
  border-radius: 5px;
  color: #ffffff;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 20px;
  line-height: 32.74px;
  padding: 0 5px;
  box-sizing: border-box;
}
.progressSlider p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 16px;
  line-height: 22.48px;
  margin-top: 32px;
  width: 90%;
}
.progressSlider a {
  display: flex;
  height: 100%;
}
.progressSlider a img.progressLupa {
  position: absolute;
  top: 5px;
  right: 29px;
  width: 24px;
  height: 24px;
}
section.progress .flexslider:hover .flex-prev {
  opacity: 1;
  left: 10%;
}
section.progress .flexslider:hover .flex-next {
  opacity: 1;
  right: 10%;
}
section.progress .flex-control-nav li a {
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  box-sizing: border-box;
  background: transparent;
}
section.progress .flex-control-nav li a.flex-active {
  width: 10px;
  height: 10px;
  background: var(--blue);
}
section.progress .flex-next {
  opacity: 1;
  right: 10%;
  width: 40px;
  height: auto;
}
section.progress .flex-prev {
  opacity: 1;
  left: 10%;
  width: 40px;
  height: auto;
}
section.progress .flex-next::before {
  content: url(../images/arr_right.png) !important;
  width: 100%;
}
section.progress .flex-prev::before {
  content: url(../images/arr_left.png) !important;
  width: 100%;
}
section.progress .flex-prev:hover,
section.progress .flex-next:hover {
  transform: scale(1.1);
}
.progress__vision__text p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* PURCHASE */

section.purchase h2{
  margin-bottom: 30px;
}
.purchase__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.purchase__form{
  width: 40%;
}
.purchase__form h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 43.58px;
  margin-bottom: 10px;
}
.purchase__form .form {
  background: #F9F9F9;
  border-radius: 10px;
  border: 3px solid var(--blue);
  padding: 30px 40px;
}

.purchase__form form input[type="submit"] {
  padding: 0;
  text-align: center;
  transition: 0.3s;
}
.purchase__form form input[type="submit"]:hover{
  background: var(--blue);
  color: #fff;
}
.purchase__form .check__wrap {
  width: 100%;
}
.purchase__dropdown {
  width: 55%;
  display: flex;
  flex-direction: column;
}
.purchase__dropdown__block {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.purchase__dropdown__block:hover {
  transform: scale(1.05);
}
.purchase__dropdown__block_vision {
  display: flex;
  justify-content: space-between;
}
.purchase__dropdown__block_vision span {
  width: 30%;
  font-family: var(--nunito);
  font-weight: 600;
  font-size: 24px;
  line-height: 32.74px;
  color: var(--black);
  text-transform: uppercase;
}
.purchase__dropdown__block_vision span.active{
  color: var(--blue);
}
.purchase__dropdown__block_vision p {
  width: 60%;
  font-family: var(--nunito);
  font-weight: 40;
  font-size: 18px;
  line-height: 24px;
  transition: 0.3s;
}
.purchase__dropdown__block_vision p.hide{
  font-size: 14px;
}
.purchase__dropdown__block_vision img {
  width: 5%;
  transition: 0.3s;
}
.purchase__dropdown__block_vision img.active {
  transform: rotate(45deg);
}
.purchase__dropdown__block_unVision {
  height: 0px;
  overflow: hidden;
  transition: 0.3s;
}
.purchase__dropdown__block_unVision.active {
  width: 100%;
}
.purchase__dropdown__block_unVision p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-top: 6px;
  color: var(--black);
}

/* DEVELOPER INFO */

section.developerInfo {
  background: #f9f9f9;
  padding: 56px 0;
  box-sizing: border-box;
}
.developerInfo__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.developerInfo__text {
  display: flex;
  flex-direction: column;
  width: 35%;
}
.developerInfo__text h2 {
  margin-bottom: 60px;
  color: var(--black);
}
.developerInfo__text p,
.developerInfo__text a {
  font-family: var(--nunito);
  font-weight: 400;
  color: var(--black);
  text-align: justify;
}
.developerInfo__img {
  width: 60%;
}
.developerInfo__img img {
  width: 100%;
  border-radius: 10px;
}
.developerInfo__title__mobile {
  display: none;
}

/* PARTNERS */

section.partners {
  background: var(--brown);
  padding: 50px 0;
  box-sizing: border-box;
}
.partners__wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.partners__img {
  width: 50%;
}
.partners__img img {
  width: 100%;
}
.partners__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 45%;
}
.partners__text h2 {
  font-size: 40px;
  color: #ffffff;
}
.partners__text p {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 20px;
  line-height: 27.28px;
  color: #ffffff;
  text-align: justify;
}
.partners__text__imgs {
  display: flex;
  width: 100%;
  margin-top: 20px;
}
.partners__text__imgs img {
  width: 40%;
  border-radius: 15px;
  object-fit: contain;
  margin-right: 25px;
}
.partners__text__imgs img:last-child {
  margin: 0;
}
.partners__wrap h2.main__title {
  display: flex;
  line-height: 40px;
}
.partners__wrap h2.partners__title__mobile {
  display: none;
}

/* DOCUMENTS */

section.documents{
  margin-bottom: 50px;
}
section.documents h2 {
  margin-bottom: 23px;
}
.documents__wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.documents__wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
}
.documents__wrap ul li {
  width: 45%;
  border-bottom: 1px solid var(--brown);
  border-top: 1px solid var(--brown);
  box-sizing: border-box;
  margin-bottom: -1px;
}
.documents__wrap ul li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  box-sizing: border-box;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 24px;
  line-height: 32.74px;
  color: var(--black);
  transition: 0.3s;
}
.documents__wrap ul li a p{
  font-family: var(--nunito);
}
.documents__wrap ul li a:hover img {
  transform: scale(1.3);
}
.documents__wrap ul li a img {
  width: 24px;
  object-fit: contain;
  transition: 0.3s;
}
.marker-class {
  width: 50px;
  height: 50px;
}

/* FOOTER */

footer {
  padding: 50px 0 30px 0;
  box-sizing: border-box;
  background: var(--black);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.footer__icon {
  display: flex;
  flex-direction: column;
  width: 16.3%;
}
.footer__icon img {
  margin-bottom: 20px;
  width: 156px;
  object-fit: contain;
}
.footer__icon span, .footer__icon a {
  display: block;
  width: fit-content;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 14px;
  line-height: 19.1px;
  color: #ffffff;
}
.footer__icon a {
  text-decoration: underline;
}
.footer__icon span.popup__conf__trigger{
  cursor: pointer;
}
.footer__declaration {
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 30px;
}
.footer__declaration p {
  font-size: 14px;
}
.footer__declaration ul {
  padding-left: 15px;
  font-size: 14px;
}
.footer__declaration ul li {
  font-size: 14px;
  list-style: disc;
}
.footer__nav {
  width: 32.7%;
  margin: 0 10px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 175px;
}
.footer__nav li {
  margin-bottom: 2px;
}
.footer__nav a {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 16px;
  line-height: 21.82px;
  color: #ffffff;
  border-bottom: 0px solid #fff;
}
.footer__nav a:hover{
border-bottom: 1px solid #fff;
}
.footer__info {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
}
.footer__info__top {
  width: fit-content;
  border: 3px solid var(--blue);
  border-radius: 15px;
  height: fit-content;
  padding: 14px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.footer__info__bottom {
  max-width: 560px;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.footer__info p,
.footer__info a {
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 16px;
  line-height: 21.82px;
  margin-bottom: 2px;
  color: #ffffff;
}
.footer__info__phone {
  margin-top: 4px;
  display: flex;
}
.footer__info__phone a {
  transition: 0.3s;
  white-space: nowrap;
}
.footer__info__phone a:hover {
 transform: scale(1.1);
}
.footer__info__block {
  display: flex;
}
.footer__info__block a {
  margin-right: 33px;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
  white-space: nowrap;
  font-family: var(--nunito);
}
.footer__info__block a:hover {
  transform: scale(1.1);
}
.footer__info__block a img {
  margin-right: 12px;
  transition: 0.3s;
}
.footer__info__block a img:hover{
  transform: scale(1.1);
}
.footer__info__block a.footer__mail {
  margin-right: 47px;
}
.footer__sn {
  display: flex;
}
.footer__sn a {
  margin-right: 10px;
}
.footer__sn a:last-child {
  margin-right: 0;
}
.footer_mobil {
  display: none;
}
.footer__text__mobil{
  display: none;
}
.developer{
  margin-top: 10px;
}
.developer a{
  cursor: pointer;
  text-decoration: underline;
  color: #fff;
}

/* BURGER */
.burger__mobil__closeIcon{
  display: none;
}
.burger {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
}
.burger__wrap {
  width: 100%;
  height: 100%;
}
.burger__content {
  position: absolute;
  top: 82px;
  right: 30px;
  display: flex;
  flex-direction: column;
  background: var(--black);
  height: 85vh;
  width: 450px;
  box-sizing: border-box;
  z-index: 12;
  border-radius: 10px;
}
.burger__content ul {
  margin-bottom: 120px;
  margin: 25px 0 120px 42px;
}
.burger__content a {
  display: block;
  width: fit-content;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 20px;
  line-height: 27.28px;
  margin-bottom: 10px;
  color: #ffffff;
}
.burger__content span {
  text-align: center;
  background: #ffffff;
  color: var(--black);
  padding: 20px 0;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 90px;
  width: 260px;
  font-family: var(--nunito);
}
.burger .popup__back {
  background: #ffffff;
}
.burger__close__icon {
  display: none;
  transform: rotate(45deg);
}
.boorger__sn_mobile {
  display: none;
}

/* SALE DEPARTMENT */

section.saleDepartment {
  position: relative;
}
.seale__content {
  position: absolute;
  top: 4%;
  left: 2%;
  width: 530px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 3px solid var(--blue);
  background: #ffffff;
}
.seale__content h2 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 25px;
}
.seale__content p {
  font-family: var(--nunito);
  font-size: 18px;
  font-weight: 400;
  line-height: 25.28px;
  margin-bottom: 10px;
}
.sale__imgs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.seale__content .form_show{
  display: flex;
  width: fit-content;
  font-family: var(--nunito);
}
.sale__imgs img {
  width: 32%;
  aspect-ratio: 6 / 6;
  border-radius: 10px;
}

/* 404 */

.jumbotron .container{
  width: 100vw;
  height: calc(100vh - 80px);
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.jumbotron span{
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 200px;
  line-height: 264.4px;
  color: var(--brick);
}
.jumbotron p{
  margin-bottom: 20px;
  font-family: var(--nunito);
  font-weight: 400;
  font-size: 32px;
  line-height: 43.58px;
  color: var(--black);
}

.jumbotron a{
  color: var(--black);
}

.private__policy__text{
  margin-top: 50px;
}