body {
  display: block;
  overflow-x: unset;
}

.container {
  max-width: 1446px;
  margin: 0 auto;
  padding: 0 16px;
}

h1.title,
h2.title,
h3.title {
  font-weight: 500 !important;
}

.main-screen .swiper-slide__title {
  max-width: 700px;
}

.contacts--nmb {
  margin-bottom: 0;
}

/* Активное состояние блока */
.info-item.active .info-item__desc {
  opacity: 1;
  height: auto;
  pointer-events: all;
  margin-bottom: 3rem;
  /* Сохраняем ваш отступ */
}

/* Анимация стрелки */
.info-item__more-btn {
  transition: transform var(--transition);
}

.info-item.active .info-item__more-btn {
  transform: rotate(180deg);
}

.demo-content {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  min-height: 80vh;
}

/* Стили баннера */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;

  border-radius: 10px;
  padding: 25px 30px;
  max-width: 1200px;
  width: calc(100% - 40px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.banner-text {
  flex: 1;
  color: #1a237e;
  /* Темно-синий текст */
  font-size: 15px;
  line-height: 1.5;
}

.banner-text strong {
  color: #1a237e;
  /* Темно-синий */
  font-weight: 700;
}

.policy-link {
  color: #1a237e;
  /* Темно-синий */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #1a237e;
}

.policy-link:hover {
  color: #283593;
  border-bottom-color: #283593;
}

.accept-btn {
  background: #f39968;
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  font-size: 15px;
  /* font-weight: bold; */
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 140px;
}

.accept-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
    width: calc(100% - 30px);
    bottom: 15px;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .banner-text {
    font-size: 14px;
    order: 1;
  }

  .accept-btn {
    order: 2;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 15px;
    width: calc(100% - 20px);
    bottom: 10px;
  }

  .banner-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .accept-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Дополнительные стили */
.hidden {
  display: none !important;
}

.show-banner-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

/* Меню */

.nav__link {
  position: relative;
}

.nav__link > a {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  position: relative;
}

.nav__link > a svg path {
  transition: 0.3s;
}

.nav__link > a:hover svg path {
  fill: var(--fill-1);
}

.wr-sub-menu {
  background: #fff;
  position: absolute;
  top: 26px;
  left: 0;
  width: 280px;
  transition: 0.2s;
  z-index: 10;
  border-radius: 0 0 16px 16px;
  padding: 0 16px 16px 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
}

.sub-menu {
  margin-top: 35px;
  border: 1px solid #96c6e0;
  border-radius: 8px;
}

.nav__link:hover .wr-sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu__lev1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sub-menu__lev1 a {
  width: 100%;
  padding: 12px 24px;
  box-sizing: border-box;
}

.sub-menu__lev1 > a {
  border-bottom: 1px solid #96c6e0;
}

.sub-menu__lev1:last-child > a {
  border-bottom: 0;
}

.sub-menu__lev1 svg {
  display: none;
}

.sub-menu__lev2 {
  position: absolute;
  padding-left: 16px;
  top: -1px;
  right: -490px;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  min-width: 490px;
}

.gallery__item {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  height: 282px;
}

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

.swiper-button-next,
.swiper-button-prev {
  color: var(--fill-font);
  width: 40px;
  height: 40px;
  background: rgb(255 255 255 / 50%);
  border-radius: 50px;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgb(255 255 255 / 100%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

/* img в лайтбоксе */

.litebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.litebox:before {
  content: "";
  background: var(--fill-font);
  z-index: 1;
  opacity: 0.15;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.litebox:after {
  content: "";
  background-image: url(imgs/zooming.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  display: block;
  padding: 20px;
  z-index: 1;
}

.litebox:hover {
  cursor: pointer;
}

.litebox:hover:before {
  opacity: 0.4;
}

.litebox:hover:after {
  opacity: 1;
}

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

/* img в лайтбоксе */

@media (max-width: 1200px) {
  .sub-menu__lev2 {
    min-width: auto !important;
    right: -407px;
  }
}

.sub-menu__lev1:hover .sub-menu__lev2 {
  opacity: 1;
  visibility: visible;
}

.sub-menu__lev2 > a {
  background: #bedef7;
  text-transform: none;
  border: 1px solid #96c6e0;
}

/* End Меню */

.mob-menu {
  display: none;
}

.wr-page-title {
  margin-top: 8.5rem;
}

.breadcrumbs {
  margin: 32px 0;
  font-size: 18px;
  line-height: 23px;
}

.breadcrumbs .breadcrumbs__last {
  color: var(--fill-1);
}

.title.title--s2 {
  line-height: 1.5;
}

.title--s2 span:before {
  background-image: url(imgs/title-decor-s2.svg);
  left: 40%;
}

.section {
  margin: 60px 0;
}

.section .title {
  margin: 0 0 46px 0;
}

.section__descript {
  text-align: center;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 46px;
}

::placeholder {
  opacity: 1;
  color: #bfbfbf;
}

form {
  display: flex !important;
  flex-direction: column;
  gap: 46px;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
  display: block;
  width: 100%;
  padding: 27.5px;
  background: #fff;
  border-radius: 32px;
  border: 1px solid #fff;
  font-size: 24px;
  line-height: 33px;
  transition: 0.3s;
  outline: 1px solid transparent;
  text-transform: uppercase;
  font-weight: 500;
}

textarea {
  min-height: 200px;
  max-height: 200px;
}

.btn.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  /* Блокирует клики по <a>, <div>, <button> */
  user-select: none;
}

input[type="text"]:active,
input[type="text"]:focus,
input[type="tel"]:active,
input[type="tel"]:focus,
input[type="number"]:active,
input[type="number"]:focus,
input[type="email"]:active,
input[type="email"]:focus,
input[type="password"]:active,
input[type="password"]:focus,
textarea:active,
textarea:focus {
  outline: 1px solid #96c6e0;
}

.forma__row {
  display: flex;
  column-gap: 36px;
}

.forma__row input {
  flex-basis: 50%;
}

.polit {
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.polit a {
  font-weight: 650;
  border-bottom: 1px solid var(--fill-font);
}

.polit a:hover {
  border-bottom: 1px solid transparent;
}

.forma__wr-polit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="checkbox"] + i,
input[type="radio"] + i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background: #ffffff;
  box-sizing: border-box;
  transition: 0.3s;
}

input[type="checkbox"] + i {
  border: 1px solid #e8e8e8;
  min-width: 26px;
  height: 26px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="radio"] + i {
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

input[type="checkbox"] + i svg {
  opacity: 0;
  position: absolute;
  transition: 0.3s;
}

input[type="radio"] + i:before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  box-sizing: content-box;
}

input[type="checkbox"]:checked + i svg {
  opacity: 1;
}

input[type="radio"]:checked + i:before {
  opacity: 1;
}

/* Страница контакты */

.text-cont {
  font-size: 20px;
  line-height: 29px;
}

.icons-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
}

.ico-top-text {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 40px;
  gap: 24px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  font-weight: 600;
}

.ico-top-text__ico {
  display: flex;
  max-width: 40px;
}

.ico-top-text__title {
  font-weight: 650;
  font-size: 18px;
  line-height: 27px;
  align-items: center;
  text-transform: uppercase;
}

.ico-top-text__text p {
  font-size: 18px;
  line-height: 23px;
}

.ico-top-text__text ul {
  font-size: 18px;
  line-height: 23px;
  margin: 0;
  padding-left: 24px;
}

.ico-top-text__text ul li {
  margin-bottom: 22px;
}

.ico-top-text__text ul li:last-child {
  margin-bottom: 0;
}

.icons-top .ico-top-text {
  width: calc(33.333% - 40px);
}

.banner-call {
  background: linear-gradient(0deg, #f39968, #f39968), #d9d9d9;
  border-radius: 32px;
  color: #fff;
}

.banner-call__capt {
  margin-top: 106px;
  padding: 55px 85px;
  box-sizing: border-box;
  position: relative;
}

.banner-call__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.banner-call__wr-phone {
  display: flex;
  align-items: center;
  gap: 24px;
}

.banner-call__phone {
  font-size: 64px;
  line-height: 70px;
  align-items: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

.banner-call__phone:hover {
  color: var(--fill-font) !important;
}

.banner-call-img {
  width: 490px;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.banner-call-img:before,
.banner-call-img:after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.banner-call-img:before {
  background-image: url(imgs/cal-f1.svg);
  width: 100px;
  height: 100px;
  top: 140px;
  left: 60px;
  z-index: 1;
}

.banner-call-img:after {
  background-image: url(imgs/cal-f2.svg);
  width: 164px;
  height: 246px;
  bottom: -24px;
  right: -19px;
  z-index: 1;
}

.banner-call-img__img {
  max-width: 338px;
  display: flex;
  margin: 0 auto;
  position: relative;
}

.banner-call-img__img img {
  position: relative;
  z-index: 1;
}

.banner-call-img__img:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 600px;
  background-image: url(imgs/ell.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -100px;
  bottom: -250px;
}

.messangers {
  display: flex;
  gap: 10px;
}

.banner-call__btns {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

/* Аккордион */

.accordion {
  position: relative;
}

.accordion__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 24px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion__item:hover,
.accordion__item.active {
}

.accordion__title {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  line-height: 35px;
  padding: 28px;
  position: relative;
  column-gap: 24px;
  margin: 0;
  background: #fff;
}

.accordion__title h3 {
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
}

.accordion__title p {
  margin-bottom: 0;
}

.accordion__title svg {
  margin-left: auto;
  min-width: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.accordion__item.active .accordion__title svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion__title:hover {
  cursor: pointer;
}

.accordion__content {
  display: none;
  padding: 25px 40px 25px 40px;
  font-size: 18px;
}

.accordion__content p {
  margin-bottom: 14px;
}

.accordion__content p:last-child {
  margin-bottom: 0;
}

.accordion .wr-btn {
  margin-top: 1.9rem;
  display: none;
}

/* End Аккордион */

.contacts--st2 .contacts__title {
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: unset;
}

.contacts--st2 .contact-item--phone {
  font-size: 36px;
  font-weight: 500;
}

.contacts--st2 .contacts-items {
  margin-top: 1.4rem;
}

.contacts--st2 .contacts__time {
  margin-top: 32px;
}

.contacts--st2 .contacts__desc {
  margin-top: 1.8rem;
  max-width: 462px;
}

.contacts--st2 .contacts__desc-lg {
  font-size: 32px;
  margin-top: 32px;
}

/* End Страница контакты */

@media (max-width: 1200px) {
  .banner-call__capt {
    padding: 55px;
  }

  .banner-call__phone {
    font-size: 44px;
  }
}

@media (max-width: 1080px) {
  .banner-call-img {
    width: 340px;
  }

  .banner-call-img__img:before {
    width: 370px;
    height: 500px;
    left: -10px;
    bottom: -170px;
  }

  .banner-call-img:before {
    left: -10px;
  }

  .banner-call-img:after {
    width: 134px;
    height: 186px;
  }
}

@media (max-width: 991px) {
  .banner-call-img {
    display: none;
  }

  .banner-call__capt {
    text-align: center;
    margin-top: 0;
  }

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

  .banner-call__wr-phone {
    justify-content: center;
  }

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

  .step-banner-item__numb {
    font-size: 2rem;
  }

  .full-menu-item {
    font-size: 16px;
    border-bottom: 1px solid rgb(86 91 157 / 17%);
  }

  .full-menu-item-wrap:last-child .full-menu-item {
    border-bottom: 0;
  }

  .full-menu-item-wrap {
    margin-bottom: 0;
  }

  .full-menu-item-wrap.active .full-menu-item {
    border-bottom: 1px solid rgb(86 91 157 / 0%);
  }

  .full-menu {
    min-width: 320px;
    max-width: 320px;
  }

  .nav {
    position: absolute;
    padding: 1rem 1.75rem 0.625rem;
    background-color: #fff;
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    right: 0.5rem;
    top: calc(100% + 2.5rem);
    border-radius: 1.25rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* 3. Для плавной прокрутки на iPhone/iPad */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
  }

  .resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
  }

  .menu-open .nav {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.5rem);
  }

  .nav__link.active > a {
    border-bottom: 1px solid transparent;
  }

  .nav__link:not(:last-child) {
    margin-right: 0;
  }

  .nav__link > a {
    margin-right: 0;
    font-size: 16px;
    border-bottom: 1px solid rgb(86 91 157 / 17%);
    padding: 8px 0;
    text-transform: none;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .nav__link:last-child a {
    border-bottom: 0;
  }

  .wr-sub-menu {
    opacity: 1;
    visibility: visible;
    width: 100%;
    position: unset;
    padding: 0;
    display: none;
    transition: unset;
  }

  .sub-menu {
    margin-top: 0;
    overflow: hidden;
  }

  .sub-menu__lev1 svg {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    transition: 0.3s;
  }

  .sub-menu__lev1.active svg {
    transform: rotate(90deg);
  }

  .sub-menu__lev1.active > a {
    background: #bedef7;
  }

  .sub-menu__lev2 {
    position: unset;
    padding: 0;
    opacity: 1;
    visibility: visible;
    gap: 0;
    display: none;
    transition: unset;
  }

  .sub-menu__lev2 > a {
    border: 0;
    border-bottom: 1px solid #96c6e0;
    display: flex;
  }

  .sub-menu__lev1:last-child .sub-menu__lev2 > a:first-child {
    border-top: 1px solid #96c6e0;
  }

  .sub-menu__lev1:last-child .sub-menu__lev2 > a:last-child {
    border-bottom: 0;
  }

  .icons-top {
    gap: 24px;
  }

  .icons-top .ico-top-text {
    width: calc(33.333% - 16px);
  }
}

.table-item td {
  word-break: normal;
}

section.steps-items.flex {
  gap: 10px;
}

.main-screen .ny-banner .swiper-slide__desc {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .icons-top .ico-top-text {
    width: 100%;
  }

  .forma__row {
    flex-direction: column;
    gap: 20px;
  }

  .forma__row input {
    flex-basis: 100%;
  }

  form {
    gap: 20px;
  }

  .forma__wr-polit {
    gap: 14px;
    flex-direction: column;
  }

  .polit {
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .wr-page-title {
    margin-top: 5.5rem;
  }

  .breadcrumbs {
    margin: 22px 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .section {
    margin: 32px 0;
  }

  .section .title {
    margin: 0 0 32px 0;
  }

  .section__descript {
    margin-bottom: 32px;
  }

  .contacts--st2 .contacts__title {
    font-size: 1.5rem;
  }

  .contacts--st2 .contacts__desc-lg {
    font-size: 1.5rem;
    margin-top: 24px;
  }

  .text-cont {
    font-size: 14px;
    line-height: 1.5;
  }

  .main-screen .ny-banner .swiper-slide__desc {
    font-size: 0.875rem;
  }

  .ico-top-text {
    padding: 24px;
  }

  .banner-call {
    border-radius: 20px;
  }

  .banner-call__capt {
    padding: 24px;
  }

  .banner-call__wr-phone {
    flex-wrap: wrap;
    gap: 8px;
  }

  .banner-call__title {
    font-size: 18px;
    line-height: 1.5;
    text-transform: unset;
    margin-bottom: 12px;
  }

  .banner-call__phone {
    font-size: 28px;
    line-height: 1.5;
  }

  .banner-call__btns {
    flex-direction: column;
  }

  .banner-call__btns .btn {
    width: 100%;
  }

  .accordion__item {
    border-radius: 20px;
  }

  .accordion__title {
    padding: 18px;
  }

  .accordion__title h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
  }

  .accordion__content {
    padding: 18px;
    font-size: 14px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  input[type="date"],
  textarea {
    font-size: 14px;
    line-height: 1.5;
    border-radius: 20px;
    padding: 18px;
  }
}

/* Контакты */
.floating-social-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.social-toggle {
  display: none;
}

.social-main-button {
  width: 60px;
  height: 60px;
  background: #2c3e7b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 62, 123, 0.3);
  transition: all 0.3s ease;
  color: white;
}

.social-main-button:hover {
  background: #4db7ff;
  transform: scale(1.05);
}

.social-main-button__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.social-main-button__label svg {
  width: 30px;
  height: 30px;
}

.social-buttons-container {
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-toggle:checked ~ .social-buttons-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-toggle:checked ~ .social-main-button {
  background: #4db7ff;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  color: #2c3e7b;
  border: 1px solid #f0f0f0;
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-button svg {
  width: 22px;
  height: 22px;
}

.social-button--telegram:hover,
.social-button--max:hover,
.social-button--ident:hover,
.social-button--phone:hover {
  background: #95c3db;
  color: white;
}

@media (max-width: 768px) {
  .floating-social-wrapper {
    bottom: 20px;
    left: 20px;
  }

  .social-main-button {
    width: 50px;
    height: 50px;
  }

  .social-main-button__label svg {
    width: 24px;
    height: 24px;
  }

  .social-button {
    width: 45px;
    height: 45px;
  }

  .social-button svg {
    width: 20px;
    height: 20px;
  }

  .social-buttons-container {
    bottom: 60px;
    gap: 10px;
  }
}
/* //Контакты */

@media (max-width: 991px) {
  .banner__desc:before {
    width: 109%;
  }
}
