@charset "UTF-8";
/* ======= TYPING ЭФФЕКТ ДЛЯ data-span-anime (БЕЗ КУРСОРА) ======= */
.typing-highlight {
  position: relative;
  display: inline-block;
}

.typing-highlight .typed-text {
  background: #F0FFD8;
  padding: 2px 12px 2px 6px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  font-weight: inherit;
  border-radius: 12px;
}

/* ======= ВАШИ ОРИГИНАЛЬНЫЕ АНИМАЦИИ ======= */
/* Улучшенная версия text-animate-1 */
.text-animate-1 {
  opacity: 0;
  -webkit-transform: translate(0, 35px);
          transform: translate(0, 35px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.text-animate-1._active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Улучшенная версия text-animate-2 с небольшой задержкой */
.text-animate-2 {
  opacity: 0;
  -webkit-transform: translate(0, 35px);
          transform: translate(0, 35px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.text-animate-2._active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

/* Новая анимация с горизонтальным движением */
.text-animate-3 {
  opacity: 0;
  -webkit-transform: translate(-35px, 0);
          transform: translate(-35px, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.text-animate-3._active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* Новая анимация с масштабированием */
.text-animate-4 {
  opacity: 0;
  -webkit-transform: scale(0.9) translateY(20px);
          transform: scale(0.9) translateY(20px);
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.text-animate-4._active {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* Анимация с подчеркиванием */
.text-animate-underline {
  opacity: 0;
  -webkit-transform: translate(0, 35px);
          transform: translate(0, 35px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  position: relative;
}

.text-animate-underline._active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, -webkit-transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Анимация с лёгким размытием */
.text-animate-blur {
  opacity: 0;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.text-animate-blur._active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Анимация для элементов списка с задержкой */
.list-animate li {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.list-animate._active li:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.list-animate._active li:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.list-animate._active li:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.list-animate._active li:nth-child(4) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.list-animate._active li:nth-child(5) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.text-animate-left {
  opacity: 0;
  -webkit-transform: translate(35px, 0);
          transform: translate(35px, 0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.text-animate-left._active {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
  -webkit-transition: all 0.4s ease-in-out 0.2s;
  transition: all 0.4s ease-in-out 0.2s;
}

.text-animate-right {
  opacity: 0;
  -webkit-transform: translate(-35px, 0);
          transform: translate(-35px, 0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.text-animate-right._active {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
          transform: translate(0, 0px);
  -webkit-transition: all 0.4s ease-in-out 0.2s;
  transition: all 0.4s ease-in-out 0.2s;
}

/* Enhanced Left Image Animation */
.image-left {
  -webkit-transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: translate(-50px, 35px) rotate(15deg) scale(0.9);
          transform: translate(-50px, 35px) rotate(15deg) scale(0.9);
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.image-left._active {
  -webkit-transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
          transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* Enhanced Right Image Animation */
.image-right {
  -webkit-transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: translate(50px, 35px) rotate(-15deg) scale(0.9);
          transform: translate(50px, 35px) rotate(-15deg) scale(0.9);
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.image-right._active {
  -webkit-transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
          transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.image-top {
  -webkit-transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: translate(50px, 0px) rotate(-2deg) scale(0.9);
          transform: translate(50px, 0px) rotate(-2deg) scale(0.9);
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.image-top._active {
  -webkit-transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  -webkit-transform: translate(0, 0) rotate(0deg) scale(1);
          transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* Enhanced Clipped Animation */
.image-anime {
  position: relative;
  opacity: 0;
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  -webkit-transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-filter: saturate(0.8);
          filter: saturate(0.8);
}

.image-anime._active {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: saturate(1);
          filter: saturate(1);
}

/* New Fade-Up Animation */
.image-fade-up {
  -webkit-transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
}

.image-fade-up._active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* New Zoom Animation */
.image-zoom {
  -webkit-transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.17, 0.84, 0.44, 1);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}

.image-zoom._active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

/* New Slide-In Animation */
.image-slide-in {
  -webkit-transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.image-slide-in._active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* New Reveal Animation */
.image-reveal {
  position: relative;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.image-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: currentColor;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1), -webkit-transform 1.2s cubic-bezier(0.17, 0.84, 0.44, 1);
  z-index: 1;
}

.image-reveal._active::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

/* New 3D Flip Animation */
.image-flip {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  opacity: 0;
}

.image-flip-inner {
  -webkit-transition: opacity 0.6s ease, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  opacity: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.image-flip._active .image-flip-inner {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}

.footer {
  padding: 200px 0 30px 0;
  margin: -200px auto 0 auto;
  max-width: 1650px;
  width: 100%;
  position: relative;
}
@media (max-width: 1300px) {
  .footer {
    padding: 10px 0 15px 0;
    max-width: 100%;
    margin: 0px;
    overflow: visible;
  }
}
.footer .footer__cirkle {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  top: 0px;
  right: 0px;
  background-color: rgba(33, 72, 137, 0.0784313725);
  border-radius: 50%;
}
@media (max-width: 1400px) {
  .footer .footer__cirkle {
    right: -14px;
  }
}
@media (max-width: 1350px) {
  .footer .footer__cirkle {
    top: 100px;
  }
}
@media (max-width: 1300px) {
  .footer .footer__cirkle {
    display: none;
  }
}
.footer__content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  gap: 30px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 1350px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 110px;
  }
}
@media (max-width: 605px) {
  .footer__content {
    margin-top: 24px;
  }
}
.footer__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.footer__column .footer__item {
  background: linear-gradient(259deg, #0D657A 0%, #044D5E 100%);
}
@media (max-width: 650px) {
  .footer__column:first-child {
    margin-top: 65px;
  }
}
.footer__column:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 532px;
          flex: 0 0 532px;
}
.footer__column:last-child .footer__item {
  background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), color-stop(40%, #F9F9F9));
  background: linear-gradient(180deg, #EAEAEA 0%, #F9F9F9 40%);
  -webkit-box-shadow: 0px 12px 16px 0px rgba(48, 48, 48, 0.1803921569);
          box-shadow: 0px 12px 16px 0px rgba(48, 48, 48, 0.1803921569);
}
@media (max-width: 1450px) {
  .footer__column:last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 500px;
            flex: 0 0 500px;
  }
}
@media (max-width: 1350px) {
  .footer__column:last-child {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
@media (max-width: 1350px) {
  .footer__column {
    width: 100%;
  }
}
.footer__item {
  padding: 32px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .footer__item {
    padding: 20px;
  }
}
.footer__logo img {
  max-width: 214px;
}
.contact-section__top {
  max-width: 760px;
}
.contact-section__desc {
  padding: 40px 0 0 0;
  position: relative;
}
@media (max-width: 650px) {
  .contact-section__desc {
    padding: 30px 0 0 0;
  }
}
.contact-section__desc::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  top: 20px;
  left: 0;
  background-color: #FF781E;
}
@media (max-width: 650px) {
  .contact-section__desc::before {
    top: 15px;
  }
}

.cont-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.cont-footer__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .cont-footer__messages {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cont-footer__message {
  width: 40px;
  height: 40px;
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media (min-width: 1200px) {
  .cont-footer__message:hover {
    -webkit-transform: translate(0, -5px) rotate(1deg);
            transform: translate(0, -5px) rotate(1deg);
  }
}
.cont-footer__nav {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cont-footer__nav {
    margin-top: 28px;
  }
}
.cont-footer__nav a {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cont-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F9F9F9;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
}
@media (max-width: 650px) {
  .cont-footer__nav ul {
    gap: 20px;
  }
}
.cont-footer__nav ul li a {
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
}
@media (min-width: 1300px) {
  .cont-footer__nav {
    /* Базовые стили для навигационного меню */
    /* Стиль для первого элемента подчеркивания с эффектом параллакса */
    /* Дополнительный элемент для эффекта параллакса */
    /* Анимация при наведении */
    /* Стили для текущего активного пункта меню (если нужно) */
    /* Дополнительный эффект при наведении для выпадающих меню */
    /* Медиа-запрос для устройств больше 1200px */
  }
  .cont-footer__nav ul li {
    position: relative;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .cont-footer__nav ul li a {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
    overflow: hidden;
  }
  .cont-footer__nav ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F9F9F9;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
  }
  .cont-footer__nav ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F9F9F9;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s; /* Небольшая задержка для эффекта параллакса */
    z-index: 0;
  }
  .cont-footer__nav ul li a:hover:after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .cont-footer__nav ul li a:hover:before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .cont-footer__nav ul li.active a:after,
  .cont-footer__nav ul li.active a:before {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .cont-footer__nav .dragon > a:hover:after,
  .cont-footer__nav .dragon > a:hover:before {
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
}
@media screen and (min-width: 1300px) and (min-width: 1200px) {
  .cont-footer__nav {
    /* Более плавные анимации для больших экранов */
    /* Изменение цвета текста при наведении */
  }
  .cont-footer__nav ul li a:after,
  .cont-footer__nav ul li a:before {
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .cont-footer__nav ul li a:hover {
    color: #F9F9F9;
  }
}
.cont-footer__info {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cont-footer__info {
    margin-top: 28px;
  }
}
@media (max-width: 1300px) {
  .cont-footer__info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cont-footer__info .info-footer__elem p, .cont-footer__info .info-footer__elem a {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  white-space: nowrap;
  display: block;
  padding: 14px 30px 16px 30px;
  border-radius: 16px;
  color: #303030;
  background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), color-stop(70.21%, #F9F9F9));
  background: linear-gradient(180deg, #EAEAEA 0%, #F9F9F9 70.21%);
  position: relative;
  font-weight: 600;
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
}
@media (min-width: 1200px) {
  .cont-footer__info .info-footer__elem p:hover, .cont-footer__info .info-footer__elem a:hover {
    -webkit-transform: translate(0, -5px) rotate(1deg);
            transform: translate(0, -5px) rotate(1deg);
  }
}
@media (max-width: 650px) {
  .cont-footer__info .info-footer__elem p, .cont-footer__info .info-footer__elem a {
    padding: 14px 30px 15px 30px;
  }
}
.cont-footer__info .info-footer__elem p::before, .cont-footer__info .info-footer__elem a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: -webkit-gradient(linear, left bottom, left top, from(#F9F9F9), color-stop(65%, transparent)) border-box;
  background: linear-gradient(to top, #F9F9F9 0%, transparent 65%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
@media (max-width: 768px) {
  .info-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 650px) {
  .footer-btn-image {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-btn-image__image {
  margin-top: -122px;
  margin-bottom: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 650px) {
  .footer-btn-image__image {
    margin-top: 25px;
    margin-bottom: -135px;
    position: relative;
    z-index: 2;
  }
}
.footer-btn-image__image img {
  max-width: 370px;
}
@media (max-width: 650px) {
  .footer-btn-image__image img {
    max-width: 80%;
    margin: 0 auto;
  }
}
.bottom-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .bottom-footer {
    -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;
    margin-top: 20px;
    gap: 12px;
  }
}
.bottom-footer__copy a {
  font-size: clamp(14px, 0.1851851852vw + 13.3333333333px, 16px);
}
@media (min-width: 1200px) {
  .bottom-footer__copy a:hover {
    text-decoration: underline;
  }
}
.bottom-footer__ds-art a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.bottom-footer__ds-art a:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
  -webkit-transform: translate(-5px, 0);
          transform: translate(-5px, 0);
}
.bottom-footer__ds-art a img {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
}

/* ===== ПЛАВНЫЕ HOVER ЭФФЕКТЫ ДЛЯ ЭКРАНОВ ВЫШЕ 1200px ===== */
@media (min-width: 1201px) {
  /* ===== ГЛОБАЛЬНАЯ СЕКЦИЯ ===== */
  /* Основное изображение */
  .global__image {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .global__image:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .global__image img {
    -webkit-transition: -webkit-filter 0.5s ease-out;
    transition: -webkit-filter 0.5s ease-out;
    transition: filter 0.5s ease-out;
    transition: filter 0.5s ease-out, -webkit-filter 0.5s ease-out;
  }
  .global__image:hover img {
    -webkit-filter: brightness(1.05) saturate(1.1);
            filter: brightness(1.05) saturate(1.1);
  }
  /* ===== СЕКЦИЯ 2 - ДЛЯ КОГО МЫ ИЗДАЕМ ===== */
  /* Карточки сообществ */
  .section-2-item {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .section-2-item:hover {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .section-2-item-content {
    -webkit-transition: background-color 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
    transition: background-color 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
    transition: box-shadow 0.4s ease-out, background-color 0.4s ease-out;
    transition: box-shadow 0.4s ease-out, background-color 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  }
  /* Изображения в карточках */
  .section-2-item-img-block {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .section-2-item:hover .section-2-item-img-block {
    -webkit-transform: translateX(-40%) scale(1.05) rotate(2deg);
            transform: translateX(-40%) scale(1.05) rotate(2deg);
  }
  .section-2-item-img-block img {
    -webkit-transition: -webkit-filter 0.4s ease-out;
    transition: -webkit-filter 0.4s ease-out;
    transition: filter 0.4s ease-out;
    transition: filter 0.4s ease-out, -webkit-filter 0.4s ease-out;
  }
  .section-2-item:hover .section-2-item-img-block img {
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  /* ===== СЕКЦИЯ 3 - ПЕРИОДИЧЕСКИЕ ИЗДАНИЯ ===== */
  /* Иконки изданий */
  .section-3-item {
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .section-3-item:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .section-3-item img {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
  }
  .section-3-item:hover img {
    -webkit-transform: scale(1.1) rotate(5deg);
            transform: scale(1.1) rotate(5deg);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  /* Изображения изданий */
  .izdanie__img {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .izdanie__img:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .izdanie__img img {
    -webkit-transition: -webkit-filter 0.4s ease-out;
    transition: -webkit-filter 0.4s ease-out;
    transition: filter 0.4s ease-out;
    transition: filter 0.4s ease-out, -webkit-filter 0.4s ease-out;
  }
  .izdanie__img:hover img {
    -webkit-filter: brightness(1.05) saturate(1.05);
            filter: brightness(1.05) saturate(1.05);
  }
  /* ===== СЕКЦИЯ 4 - УСЛУГИ ===== */
  /* Карточки услуг */
  .section-4-item {
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .section-4-item:hover {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  .section-4-item img {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
  }
  .section-4-item:hover img {
    -webkit-transform: scale(1.15) rotate(8deg);
            transform: scale(1.15) rotate(8deg);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  /* Изображение в секции услуг */
  .section-4-img-wrapper {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .section-4-img-wrapper:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .section-4-img-wrapper img {
    -webkit-transition: -webkit-filter 0.4s ease-out;
    transition: -webkit-filter 0.4s ease-out;
    transition: filter 0.4s ease-out;
    transition: filter 0.4s ease-out, -webkit-filter 0.4s ease-out;
  }
  .section-4-img-wrapper:hover img {
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  /* ===== СЕКЦИЯ ПРЕИМУЩЕСТВ ===== */
  /* Карточки преимуществ */
  .info-section-item {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .info-section-item:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .info-section-item .section-item-label h3 {
    -webkit-transition: color 0.4s ease-out, text-shadow 0.4s ease-out;
    transition: color 0.4s ease-out, text-shadow 0.4s ease-out;
  }
  .info-section-item:hover .section-item-label h3 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  /* Фоновое изображение */
  .info-section-bg {
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease-out;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .info-section:hover .info-section-bg {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.9;
  }
  /* ===== СЕКЦИЯ ПАРТНЕРОВ ===== */
  /* Карточки партнеров */
  .partner-section-item {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-out, -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
  }
  .partner-section-item:hover {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .partner-section-logo img {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease-out, -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.4s ease-out;
  }
  .partner-section-item:hover .partner-section-logo img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  /* Фоновое изображение партнеров */
  .partners-section-bg {
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .partners-section:hover .partners-section-bg {
    -webkit-transform: translateX(-48%) scale(1.02);
            transform: translateX(-48%) scale(1.02);
  }
  /* ===== СЕКЦИЯ ОТЗЫВОВ ===== */
  /* Карточки отзывов */
  .review-section-item {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
    transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-out;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease-out, -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-box-shadow 0.4s ease-out;
  }
  .review-section-item:hover {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .review-section-user img {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .review-section-item:hover .review-section-user img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  /* Фоновое изображение отзывов */
  .review-section-bg img {
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease-out;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease-out, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .review-section:hover .review-section-bg img {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.7;
  }
  /* ===== ФУТЕР ===== */
  /* Логотип в футере */
  .footer__logo {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .footer__logo:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  /* Социальные иконки */
  .cont-footer__message {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.3s ease-out;
    transition: -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.3s ease-out;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease-out;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-filter 0.3s ease-out;
  }
  .cont-footer__message:hover {
    -webkit-transform: translateY(-3px) scale(1.1);
            transform: translateY(-3px) scale(1.1);
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  /* Навигационные ссылки в футере */
  .cont-footer__nav a {
    -webkit-transition: color 0.4s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .cont-footer__nav a:hover {
    color: #FF781E;
  }
  /* Контактная информация */
  .info-footer__elem a {
    -webkit-transition: color 0.4s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.4s ease-out, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .info-footer__elem a:hover {
    color: #FF781E;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  /* Изображение в футере */
  .footer-btn-image__image {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .footer-btn-image:hover .footer-btn-image__image {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  .footer-btn-image__image img {
    -webkit-transition: -webkit-filter 0.4s ease-out;
    transition: -webkit-filter 0.4s ease-out;
    transition: filter 0.4s ease-out;
    transition: filter 0.4s ease-out, -webkit-filter 0.4s ease-out;
  }
  .footer-btn-image:hover .footer-btn-image__image img {
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  /* Ссылка на разработчика */
  .bottom-footer__ds-art a {
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-out;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .bottom-footer__ds-art a:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    opacity: 0.8;
  }
  /* ===== ОБЩИЕ ЭЛЕМЕНТЫ ===== */
  /* Ссылки в тексте */
  .section-3-item-label a,
  .bottom-footer__copy a {
    -webkit-transition: color 0.4s ease-out, text-decoration-color 0.4s ease-out;
    transition: color 0.4s ease-out, text-decoration-color 0.4s ease-out;
  }
  .section-3-item-label a:hover {
    color: #0D657A;
    text-decoration-color: #0D657A;
  }
  .bottom-footer__copy a:hover {
    color: #FF781E;
    text-decoration-color: #FF781E;
  }
  /* Заголовки с подчеркиванием */
  .section-label-with-border::before,
  .section-2 .section-desc::before,
  .section-3 .section-label-with-border::before {
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s ease-out;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s ease-out;
  }
}
/* ===== ДОПОЛНИТЕЛЬНЫЕ ПЛАВНЫЕ HOVER ЭФФЕКТЫ ===== */
@media (min-width: 1201px) {
  /* Типинг эффект */
  .typing-highlight .typed-text {
    -webkit-transition: background 0.4s ease-out, padding 0.3s ease-out;
    transition: background 0.4s ease-out, padding 0.3s ease-out;
  }
  .typing-highlight:hover .typed-text {
    background: #e8f7d1;
    padding: 3px 8px;
  }
  /* Элементы списка с анимацией */
  .list-animate li {
    -webkit-transition: color 0.3s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: color 0.3s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease-out;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease-out, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .list-animate li:hover {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    color: #0D657A;
  }
  /* Плавные переходы для анимированных элементов */
  .text-animate-1, .text-animate-2, .text-animate-3, .text-animate-4,
  .text-animate-left, .text-animate-right, .text-animate-blur {
    -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transition: opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-out !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-out, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  /* Изображения с анимацией */
  .image-left, .image-right, .image-top, .image-anime,
  .image-fade-up, .image-zoom, .image-slide-in {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.4s ease-out !important;
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.4s ease-out !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease-out !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease-out, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.4s ease-out !important;
  }
}
/* ===== КОНТАКТНАЯ СЕКЦИЯ ===== */
.contact-form {
  background: -webkit-gradient(linear, left bottom, left top, from(#D2F3DE), to(#D2F3DE));
  background: linear-gradient(0deg, #D2F3DE, #D2F3DE);
  border-radius: 32px;
  padding: 32px;
}

.contact-form__form {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
@media (max-width: 650px) {
  .contact-form__form {
    gap: 20px;
  }
}

.contact-form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.contact-form__row--full {
  -ms-grid-columns: 1.2fr 20px 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

/* ===== ПОЛЯ ВВОДА ===== */
.form-field {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 650px) {
  .form-field {
    margin-bottom: 0px;
  }
}

.form-field__input {
  width: 100%;
  padding: 15px 16px 12px 16px;
  border: 2px solid #e0f2e0;
  border-radius: 16px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  color: #888888;
  background-color: #F0FFD8;
}

.form-field__input:focus {
  border-color: #D2F3DE;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.1);
          box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.form-field__input:not(:-moz-placeholder-shown) {
  border-color: #4a9b4e;
}

.form-field__input:not(:-ms-input-placeholder) {
  border-color: #4a9b4e;
}

.form-field__input:not(:placeholder-shown) {
  border-color: #4a9b4e;
}

.form-field__label {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: transparent;
  padding: 0 4px;
  color: #888888;
  font-size: 16px;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.form-field__input:not(:-moz-placeholder-shown) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.form-field__input:not(:-ms-input-placeholder) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.form-field__input:focus + .form-field__label,
.form-field__input:not(:placeholder-shown) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* ===== ТЕКСТОВАЯ ОБЛАСТЬ ===== */
.form-field__textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  font-size: 16px;
  background: #F0FFD8;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  outline: none;
  color: #888888;
  resize: vertical;
  min-height: 204px;
  resize: none;
  font-family: inherit;
}

.contact-form__row.contact-form__row--full .form-field__label {
  top: 25px;
}

.form-field__textarea:focus {
  border-color: #F0FFD8;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.1);
          box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.form-field__textarea:not(:-moz-placeholder-shown) {
  border-color: #4a9b4e;
}

.form-field__textarea:not(:-ms-input-placeholder) {
  border-color: #4a9b4e;
}

.form-field__textarea:not(:placeholder-shown) {
  border-color: #4a9b4e;
}

.form-field__textarea:not(:-moz-placeholder-shown) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.form-field__textarea:not(:-ms-input-placeholder) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

.form-field__textarea:focus + .form-field__label,
.form-field__textarea:not(:placeholder-shown) + .form-field__label {
  top: -2px;
  font-size: 12px;
  color: #4a9b4e;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* ===== ФАЙЛ ЗАГРУЗКА ===== */
.file-upload {
  position: relative;
  border-radius: 12px;
  padding: 30px 30px;
  text-align: center;
  background: #F0FFD8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px dashed;
}

.file-upload:hover {
  border-color: #4a9b4e;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(74, 155, 78, 0.1);
          box-shadow: 0 5px 15px rgba(74, 155, 78, 0.1);
}

.file-upload__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.contact-form__row.contact-form__row--full .form-field {
  margin-bottom: 0px;
}

.file-upload__title {
  font-size: 16px;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 5px;
}

.file-upload__subtitle {
  font-size: 14px;
  color: #7a9b7d;
}

.file-upload__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ===== КАСТОМНЫЙ ЧЕКБОКС ===== */
.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
}
@media (max-width: 991px) {
  .checkbox {
    padding: 0;
  }
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox__checkmark {
  position: relative;
  width: 26px;
  height: 26px;
  background: #F0FFD8;
  border: 2px solid #8BCCA3;
  border-radius: 6px;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.checkbox__checkmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -60%) rotate(45deg) scale(0);
          transform: translate(-50%, -60%) rotate(45deg) scale(0);
  -webkit-transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkbox__input:checked + .checkbox__checkmark {
  background: #4a9b4e;
  border-color: #4a9b4e;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.checkbox__input:checked + .checkbox__checkmark::after {
  -webkit-transform: translate(-50%, -60%) rotate(45deg) scale(1);
          transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.checkbox__input:focus + .checkbox__checkmark {
  -webkit-box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.2);
          box-shadow: 0 0 0 3px rgba(74, 155, 78, 0.2);
}

.checkbox__text {
  font-size: 16px;
  color: #575757;
  line-height: 1.4;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  max-width: 365px;
}

.checkbox__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 1200px) {
  .checkbox__text a:hover {
    text-decoration: none;
  }
}

/* ===== КНОПКА ОТПРАВКИ ===== */
.submit-btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF781E), to(#E76E1D));
  background: linear-gradient(180deg, #FF781E 0%, #E76E1D 100%);
  color: white;
  border: none;
  padding: 13px 30px 16px 30px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-box-shadow: 0 4px 15px rgba(255, 123, 30, 0.3);
          box-shadow: 0 4px 15px rgba(255, 123, 30, 0.3);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  min-width: 360px;
}
@media (max-width: 550px) {
  .submit-btn {
    min-width: 100%;
  }
}
@media (min-width: 1200px) {
  .submit-btn:hover {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
}

.checkbox-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .checkbox-btn {
    -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;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .checkbox-btn {
    margin-top: 0px;
  }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
  .contact-form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form__row--full {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .form-field__input,
  .form-field__textarea {
    padding: 9.5px 14px 11px 14px;
    font-size: 16px;
  }
  .form-field__label {
    left: 14px;
    font-size: 16px;
  }
  .file-upload {
    padding: 20px 15px;
  }
  .submit-btn {
    width: 100%;
    padding: 13px 30px 16px 30px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    border-radius: 20px;
  }
  .contact-form__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .file-upload__icon {
    width: 32px;
    height: 32px;
  }
  .checkbox {
    gap: 10px;
  }
  .checkbox__text {
    font-size: 13px;
  }
}
.advanced-parallax {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media (max-width: 650px) {
  span.span_spoller {
    font-size: 14px;
  }
}
.catalog-filter {
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.catalog-filter__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.catalog-filter__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 15px);
          flex: 0 1 calc(25% - 15px);
  min-width: 200px;
}

@media (max-width: 1200px) {
  .catalog-filter__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .catalog-filter__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .catalog-filter__content {
    gap: 15px;
  }
}
/* Кастомный селект */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-trigger {
  width: 100%;
  padding: 12px 45px 16px 30px;
  border: 1px solid #D1D8DB;
  border-radius: 16px;
  background: #E6EDEF;
  color: #888888;
  font-size: 16px;
  cursor: pointer;
  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;
  min-height: 54px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-trigger:hover {
  border-color: #0D657A;
  background: rgba(230, 237, 239, 0.7411764706);
}

.dropdown-trigger.active {
  border-color: #0D657A;
  background: rgba(230, 237, 239, 0.7411764706);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.search-arrow {
  right: 0px !important;
  -webkit-transform: translate(20px, 0) !important;
          transform: translate(20px, 0) !important;
}
@media (max-width: 650px) {
  .search-arrow {
    -webkit-transform: translate(30px, 0) !important;
            transform: translate(30px, 0) !important;
  }
}

.dropdown-trigger.active .dropdown-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* Выпадающий список */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), color-stop(70.21%, #F9F9F9));
  background: linear-gradient(180deg, #EAEAEA 0%, #F9F9F9 70.21%);
  border: 1px solid #D1D8DB;
  border-top: none;
  border-radius: 0 0 16px 16px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 8px 12px 0px rgba(48, 48, 48, 0.1019607843);
          box-shadow: 0px 8px 12px 0px rgba(48, 48, 48, 0.1019607843);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Опции выпадающего списка */
.dropdown-option {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #303030;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option:hover {
  background: #f8f9fa;
}

.dropdown-option.active {
  background: #e8f4f8;
  color: #0D657A;
  font-weight: 500;
}

.dropdown-option.hidden {
  display: none;
}

/* Скрытый input для отправки на бекенд */
.hidden-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
  .dropdown-trigger {
    padding: 11px 40px 12px 20px;
    font-size: 14px;
    min-height: 48px;
  }
  .dropdown-arrow {
    right: 15px;
  }
  .dropdown-search {
    padding: 16px;
  }
  .search-input {
    padding: 12px 16px 12px 40px;
    font-size: 16px; /* Предотвращает zoom на iOS */
  }
  .search-icon {
    left: 28px;
    width: 20px;
    height: 20px;
  }
  .dropdown-option {
    padding: 14px 16px;
    font-size: 16px;
  }
}
/* Overlay для закрытия выпадающих списков */
.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}

.dropdown-overlay.show {
  display: block;
}

#popup_2 .checkbox-btn {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.electro__desp ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
.electro__desp ul li:last-child {
  margin-bottom: 0px;
}
@media (max-width: 650px) {
  .electro__desp ul li {
    font-size: 14px;
  }
}

.electro__desp a {
  text-decoration: underline;
}
.electro__desp a:hover {
  text-decoration: none;
}
.electro__desp h3 {
  letter-spacing: 0px;
}

p strong {
  color: #fff;
}

.news-card:hover .news-card__icon {
  -webkit-transform: scale(0.95);
  transform: scale(0.95) translate(0px, 5px);
}

.faq {
  position: relative;
  z-index: 3;
}

section.consult {
  padding: 50px 0;
}
@media (max-width: 991px) {
  section.consult {
    padding: 25px 0;
  }
}
form br{
  display: none;
}

 
/* Стили для контейнера чекбокса */
.check-item-form {
    position: relative;
    padding-left: 30px;
     padding-left: 30px;
     margin: 0px 0 0 0;
    cursor: pointer;
}

/* Скрываем оригинальный чекбокс */
.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 30px;
    width: 30px;
    top: 0;
    left: 0;
    z-index: 4;
}

/* Стили для label */
.check-item-form label {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

/* Создаем кастомный квадрат чекбокса */
.check-item-form::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.contacts__btn{
  cursor: pointer;
}

/* Создаем галочку (скрытую изначально) */
.check-item-form::after {
    content: "";
    position: absolute;
     left: 10px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: all 0.2s ease;
    display: none;
}

/* Стили для активного состояния */
.check-item-form.active::before {
    background-color: #8BCCA3;
    border-color: #8BCCA3;
}

.check-item-form.active::after {
    display: block;
    border-color: white;
}

/* Стили для ссылки */
.check-item-form a {
    color: #000000;
    text-decoration: underline;
}
.check-item-form a:hover {
  
    text-decoration: none;
}

/* Эффект при наведении */
.check-item-form:hover::before {
    border-color: #8BCCA3;
}

/* Скрываем лишние элементы */
.check-item-form br {
    display: none;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 5px ;
}
.contact-form__row--full{
  margin-top: 15px;
}
   .checkbox-btn {
    margin-top: 25px;
}
@media (max-width: 650px){
    .checkbox-btn {
    margin-top: 20px;
}
}

div#popup_spacibo,div#popup_error{
  .popup-desp{
    margin-bottom: 0px;
  }
}
.wpcf7-response-output{
  display: none;
}

.section-3-item img{
  width: 50px;
  height: 50px;
  min-height: 50px;
}
@media (min-width: 1300px) {
    .izdanie .izdanie__btns {
        margin-left: -60px;
    }
    .section-4-items__rows .section-4-item-elem {

    flex: 0 1 33.333%;
}
}
.section-4-item-label h4 {
    font-size: clamp(24px, 0.5555555556vw + 22px, 28px);
}
.partner-section-logo img {
    max-width: 120px;
      height: 90px;
    object-fit: contain;
}
.swiper-slide.partner-section-item {
    height: auto;
}
@media (max-width: 650px){
    .partner-section-logo img {
    max-width: 100px;
    height: 60px;

}
}

.about-cust__desp strong {
    color: #575757;
}
.review-section-user img {
    border-radius: 50%;
}

.review-section-desc-global span{
      font-size: clamp(14px, .1851851852vw + 13.3333333333px, 16px);
          color: #575757;
}
.review-section-desc-global strong {
    color: #0d657a;
    font-size: clamp(20px, 0.3703703704vw + 18.6666666667px, 24px);
    font-weight: 600;
}

a.catalog__item.elem-catalog {
    display: block;
}

.global-electro-blog .electro__image img {
    border-radius: 20px;
    overflow: hidden;
}

.news-card {
    display: flex
;
    flex-direction: column;
    height: 100%;
}
.news-card__cont {
    flex: 1 1 auto;
    flex-direction: column;
    display: flex
;
}

.content-state__cont p strong {
    color: #000000a1;
}


.privacy-policy-section-content{
  h2{
    margin-bottom: 20px;
        font-size: clamp(21px, 2.5925925926vw + 18.6666666667px, 38px);
    color: #303030;
    letter-spacing: -1px;
    font-weight: 500;
    font-family: "Cormorant Infant", serif;
    line-height: 1.1;
    @media (max-width: 650px){
        margin-bottom: 15px;
    }

  }
  h3{
     margin-bottom: 20px;
        font-size: clamp(18px, 2.5925925926vw + 18.6666666667px, 30px);
    color: #303030;
    letter-spacing: -1px;
    font-weight: 500;
    font-family: "Cormorant Infant", serif;
    line-height: 1.1;
      @media (max-width: 650px){
        margin-bottom: 15px;
    }
  }
  ul{
    margin: 0 0 20px 20px;
      @media (max-width: 650px){
     margin: 0 0 15px 20px;
    }
    li{
      list-style: disc;
      margin-bottom: 5px;
    }
  }
}



.faq {
  overflow: hidden;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 25px 0;
  }
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -15px;
}
@media (max-width: 1000px) {
  .faq__content {
    margin: 0px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.faq__column {
  padding: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 1000px) {
  .faq__column {
    padding: 0;
  }
}
.faq__image {
  margin-top: 40px;
  position: relative;
}
.faq__image .faq__cirkle {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 0;
  right: 10%;
  border-radius: 50%;
  background-color: rgba(33, 72, 137, 0.0784313725);
}
@media (max-width: 650px) {
  .faq__image .faq__cirkle {
    width: 313px;
    height: 313px;
  }
}
.faq__image img {
  max-width: 490px;
  position: relative;
  z-index: 2;
}
@media (max-width: 550px) {
  .faq__image img {
    max-width: 100%;
  }
}
.cont-faq__spoller {
  background: -webkit-gradient(linear, left bottom, left top, from(#F9F9F9), to(#F9F9F9)), -webkit-gradient(linear, left top, left bottom, from(#EAEAEA), color-stop(40%, #F9F9F9));
  background: linear-gradient(0deg, #F9F9F9, #F9F9F9), linear-gradient(180deg, #EAEAEA 0%, #F9F9F9 40%);
  -webkit-box-shadow: 0px 12px 16px 0px rgba(48, 48, 48, 0.0784313725);
          box-shadow: 0px 12px 16px 0px rgba(48, 48, 48, 0.0784313725);
  position: relative;
  padding: 20px 24px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 30px;
}
.cont-faq__spoller::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F1F1F1), color-stop(65%, transparent)) border-box;
  background: linear-gradient(to bottom, #F1F1F1 0%, transparent 65%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.cont-faq__spoller:last-child {
  margin-bottom: 0px;
}
.cont-faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont-faq__title h3 {
  font-size: clamp(20px, 0.7407407407vw + 17.3333333333px, 28px);
}
.cont-faq__desp {
  max-height: 0px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  overflow: hidden;
}
.cont-faq svg {
  min-width: 20px;
}
.cont-faq .cont-faq__title svg {
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.cont-faq__spoller.active .cont-faq__desp {
  margin-top: 15px;
}
.cont-faq__spoller.active .cont-faq__title svg {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.cont-faq__spoller.active .cont-faq__title svg path {
  stroke: #FF781E;
}

div#cookie-banner a {
    margin: 0 0 0 5px;
    text-decoration: underline;
    color: rgb(255, 255, 255);
}
#cookie-banner button {
    margin: 0 auto;
    margin-top: 10px;
}
div#cookie-banner p {
  color: #fff;
}
figure {
    width: 100% !important;
}
@media (max-width: 650px){
    .event-popover .popover-title {

    letter-spacing: 0px;
}
}

.header__logo {
    position: relative;
    z-index: 7;
}
.header__column:first-child{
     position: relative;
    z-index: 7;
}

























.privacy-policy-section-content {



/* Базовые стили для таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(4, 77, 94, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Стили для ячеек */
td {
    padding: 15px 20px;
    vertical-align: top;
    border-bottom: 1px solid #e8f4f6;
    line-height: 1.5;
}

/* Первая колонка (заголовки) */
td:first-child {
    background-color: #044d5e;
    color: #fff;
    font-weight: 600;
    width: 200px;
    border-right: 1px solid #fff;
}

/* Вторая колонка (содержимое) */
td:last-child {
    background-color: #fff;
    color: #333;
}

/* Стили для списков */
ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #555;
}

li:last-child {
    margin-bottom: 0;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    table {
        font-size: 13px;
    }
    
    td {
        padding: 12px 15px;
        display: block;
        width: 100%;
    }
    
    td:first-child {
        border-right: none;
        border-bottom: 1px solid #fff;
        text-align: center;
        font-size: 14px;
    }
    
    tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e8f4f6;
        border-radius: 8px;
        overflow: hidden;
    }
}

/* Дополнительные стили для улучшения внешнего вида */
td:first-child {
    position: relative;
}


/* Hover эффект для строк */
tr:hover td:last-child {
    background-color: #f8fcfd;
}

/* Альтернативный стиль с градиентом для заголовков */
.gradient-style td:first-child {
    background: linear-gradient(135deg, #044d5e 0%, #066a7a 100%);
}
  
}
@media (max-width: 650px){
    .privacy-policy-section-content td:first-child {
    width: 100% !important;
}
}

.news .news-card__icon img {
    height: 275px;
    object-fit: cover;
}
@media (max-width: 650px){
    .news  .news-card__icon img {
    height: 175px;
    width: 100%;
    object-fit: cover;
}
}

.swiper-slide.review-section-item {
       height: auto;
    display: flex
;
    flex-direction: column;
}
.review-section-desc-global {
    flex: 1 1 auto;
}
.o-shurnal-elem-two__desp strong{
      color: #000000;
}
.electro__cont strong{
      color: #000000;
}
.section-4-item-label h4 {
    font-size: clamp(24px, 0.5555555556vw + 20px, 27px);
}
.section-4-items__rows .section-4-item{
  justify-content: start;
}

.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
    display: block !important;
}