@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  background-color: #00e70000;
  border: 2px solid #E7A300;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #E7A300;
  font-weight: 600;
}

.button:hover {
  background-color: #E7A300;
  box-shadow: 0 0 40px 40px #E7A300 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 82px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 40px;
  font-style: italic;
  line-height: 1.3;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 80px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.container {
  margin: 0 auto;
  max-width: 1640px;
  padding: 0px 60px;
}

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 60px 0;
}


.header__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  border: 2px solid #5F5B5B;
  padding: 15px 35px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 3px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #5F5B5B;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 85%;
}

.header__menu-button span {
  top: 50%;
  width: 60%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}




.menu._active {
  left: 0;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 16px;
}

.popup__content {
  background-color: #fff;
  max-width: 940px;
  padding: 24px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.close-popup {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 12px;
  right: 12px;
}


@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

  .header__menu-button{
    display: block;
  }
    .subtitle {
        font-size: 34px;
    }
  .section {
    padding: 60px 0px;
  }

}

@media (max-width: 992px) {

  .section-bg {
    padding: 16px 0;
  }

  .header {
    padding: 24px 0px;
  }


  .header__items {
    gap: 16px;
  }

  .header__content {
    gap: 16px;
  }

}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 30px;
      padding-bottom: 30px;
    }
  .section {
    padding: 40px 0px;
  }

}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 77px;
}
.header__menu a:hover {
  color: #f8ad3b;
}


.header__menu a {
  font-size: 18px;
  font-weight: 400;
}
div.header__button {
  padding: 0;
}
@media (max-width: 1662px) {
  .header__menu {
    column-gap: 38px;
  }
}
@media (max-width: 1506px) {
  .header__logo img {
    width: 200px;
  }
}
@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1371px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 16px;
    font-weight: 600;
  }
}
@media (max-width: 1262px) {
  .header__nav {
    display: none;
  }
  .header__menu-button {
    display: block;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 97px;
  }
  .header__menu a {
    font-size: 18px;
    font-weight: 600;
  }
}
.header {
  position: absolute;
}
.banner{
  background-image: url("../img/banner-new-1.png");
  padding-top: 160px;
  background-position: right bottom;
  background-size: contain;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-color: #ffffff;
}
.block{
  display: block;
}
.banner-name {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  max-width: 355px;
  line-height: 1.3;
  padding-bottom: 30px;
}
.banner-button {
  color: #000000;
  background: #f8ad3b;
  padding: 25px 35px;
  border-radius: 7px;
  font-size: 26px;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.banner-button:hover{
  background: #000000;
  color: #ffffff;
}
.banner__plashki {
  color: #000000;
  background: #b6b3b0;
  opacity: 0.871;
  border-radius: 50%;
  text-align: center;
  aspect-ratio: 1;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
  width: 165px;
}
.banner__plashkis {
  display: flex;
  gap: 65px;
}
.banner__plashki--block{
  display: block;
}
.banner__row {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .banner {
    padding-top: 100px;
  }
  .subtitle {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .banner-name {
    font-size: 18px;
  }
  .banner-button {
    width: 100%;
    text-align: center;
    font-size: 22px;
    padding: 20px;
  }
  .banner__plashkis {
    gap: 15px;
    justify-content: space-between;
    width: 100%;
  }
  .banner__plashki {
    font-size: 14px;
    padding: 15px;
    width: 90px;
  }
  .subtitle {
    font-size: 36px;
  }
  .banner {
    position: relative;
    padding-bottom: 40px;
    background-position: center bottom;
    background-size: cover;
  }
  .header__menu {
    align-items: center;
  }
  .menu._active nav.header__nav {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff91;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .banner__container {
    z-index: 1;
    position: relative;
  }
}
.informations_text {
  color: #000000;
  font-size: 28px;
}
.informations__button {
  color: #ffffff;
  background: #000000;
  padding: 25px 35px;
  border-radius: 7px;
  font-size: 26px;
  min-width: 295px;
  text-align: center;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.informations__button:hover{
  background: #f8ad3b;
}
.informations__infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.informations__title {
  padding-bottom: 20px;
}

.informations__name {
  color: #000;
  font-size: 32px;
  font-weight: 700;
}
.informations__info {
  color: #000000;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}
.informations__item {
  border: 1px #f8ad3b solid;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.informations__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-top: 60px;
}
.informations__subtitle {
  text-align: center;
  padding-top: 80px;
}
.informations__swiper {
  max-width: 650px;
}
.informations__swiper-all{
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.informations__next:after , .informations__prev:after {
  color: #000000;
}
@media (max-width: 1024px) {
  .informations__infos {
    flex-direction: column;
    align-items: baseline;
    gap: 30px;
  }
  .informations__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .informations_text {
    font-size: 24px;
  }
  .informations__button {
    width: 100%;
    font-size: 22px;
    padding: 20px;
    min-width: 100%;
  }
  .informations__row {
    padding-top: 30px;
  }
  .informations__name {
    font-size: 28px;
  }
  .informations__info {
    font-size: 20px;
  }
  .informations__item {
    gap: 20px;
    padding: 20px;
  }
  .informations__subtitle {
    padding-top: 30px;
  }
}
div#map {
  width: 100%;
  height: 500px;
  max-width: 1000px;
  margin: auto;
}
.feedback {
  background: #202020;
  padding: 80px 0;
}
.feedback__title {
  color: #ffffff;
}
.feedback__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.element-tg-hidden {
  opacity: 0.7;
  pointer-events: none;
}
.feedback__subtitle {
  color: #f8ad3b;
  font-weight: 400;
  font-style: italic;
  font-size: 48px;
  padding-bottom: 40px;
}
.form-field {
  background: #FFF;
  border-radius: 8px;
  color: #606060;
  padding:20px 40px;
  width: 100%;
  font-size: 24px;
}
.feedback-form__fields-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-agree-politics__a {
  display: inline;
  color: #f8ad3b;
}
.div-input-cc {
  padding-top: 40px;
  padding-bottom: 40px;
}
.feedback__button {
  color: #ffffff;
  background: #f8ad3b;
  padding: 25px 35px;
  border-radius: 7px;
  font-size: 26px;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.feedback__button:hover{
  background: #ffffff;
  color: #000000;
}
.feedback__form {
  padding-top: 40px;
}
.contact-form-agree-politics {
  padding-left: 10px;
  font-size: 16px;
}
#pol {
  width: 20px;
  height: 20px;
}
.div-input-cc {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  gap: 10px;
}
  .feedback_text {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback__contakt {
  font-size: 24px;
}
.feedback__contakt a{
  color: #ffffff;
}
.feedback__contakts {
  display: flex;
  gap: 80px;
  flex-direction: column;
  padding-top: 30px;
}
input[type="checkbox"]:checked {
  accent-color: #f8ad3b;
}
.feedback__form--success {
  padding-top: 40px;
  display: none;
}
@media (max-width: 1024px) {
  .feedback__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feedback__contakts {
    padding: 0;
    gap: 40px;
  }
  .feedback {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .feedback__subtitle {
    font-size: 32px;
  }
  .form-field {
    font-size: 20px;
    padding: 10px 20px;
  }
  .contact-form-agree-politics {
    padding-left: 5px;
    font-size: 12px;
  }
  .div-input-cc {
    padding: 20px 0;
  }
  .feedback__button {
    width: 100%;
    text-align: center;
    font-size: 22px;
    padding: 20px;
  }
  .feedback {
    padding: 40px 0;
  }
  .feedback__contakt {
    font-size: 20px;
  }
}
.photos__floor{
  color:#000000;
  font-size: 28px;
  cursor: pointer;
}

.non-swiper-slide{
  display: none;
}
.photos__floors {
  display: flex;
  gap: 60px;
}
.photos__floor{
  position: relative;
}
.photos__floor:before {
  position: absolute;
  width: 0;
  left: 0;
  height: 1px;
  content: '';
  bottom: -5px;
  background: #000000;
}
.photos__floor.active:before {
  width: 100%;
}
.photos__floor:hover:before {
  width: 100%;
}
.photos__floor:last-child {
  color: #f8ad3b;
}
.photos__infos {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 40px;
}
.photos__title {
  padding-bottom: 0;
}
.photos__floors {
  display: flex;
  gap: 60px;
  padding-bottom: 20px;
}
.photos__next:after, .photos__prev:after {
  color: #ffffff;
}
.photos__slider img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}
.photos-swiper{
  border-radius: 80px;
}
.photos__slider.swiper-slide {
  height: auto;
}
@media (max-width: 1024px) {
  .photos__infos {
    flex-direction: column;
    align-items: baseline;
  }
  .photos__floors {
    gap: 30px;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .photos__floor {
    font-size: 20px;
  }
  .photos__floors {
    gap: 20px 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .photos-swiper {
    border-radius: 40px;
  }
}
.feedback__contakt {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
}
.photos__slider a {
    height: 100%;
}
@media (max-width: 1024px) {

}
@media (max-width: 767px) {

}

.visually-hidden{
  display: none;
}