/*
Theme Name: Kobaladze
*/

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --font: "Manrope", sans-serif;
  --font2: "PT Serif Caption", serif;
  --base: #161616;
  --white: #FFFFFF;
  --white2: #E9E9E9;
  --gray1: #808080;
  --gray2: #9F9F9F;
  --purpur: #4B245F;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  background: var(--white);
  font: 400 16px/1.55 var(--font);
  color: var(--base);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 0;
  background: var(--white);
}

body::-webkit-scrollbar-thumb {
  width: 10px;
  background: var(--base);
  border-radius: 10px;
}

body.hidden {
  overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--base) var(--white);
  }
}

.wrapper {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}

.overflowH {
  overflow: hidden;
}

a {
  color: var(--base);
  transition: 0.25s;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font: 700 14px/1.2 var(--font);
  color: var(--base);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: 0.25s;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

svg {
  transition: 0.25s;
}

strong {
  font-weight: 500;
}

h1,
.h1 {
  text-transform: uppercase;
  font: 400 40px/1.3 var(--font2);
}

h2,
.h2 {
  text-transform: uppercase;
  font: 400 40px/1.3 var(--font2);
}

h3,
.h3 {
  text-transform: uppercase;
  font: 400 25px/1.3 var(--font2);
}

h4,
.h4 {
  text-transform: uppercase;
  font: 700 20px/1.35 var(--font);
  letter-spacing: 0.05em;
}

.text25 {
  font: 400 25px/1.35 var(--font);
}

.pageBtn {
  display: flex;
  align-items: center;
}

.pageBtn.center {
  justify-content: center;
}

.pageBtn .btn {
  min-width: 300px;
}

.btn {
  max-width: 100%;
  min-height: 60px;
  background: var(--base);
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font: 700 14px/1.2 var(--font);
  letter-spacing: 0.06em;
  color: var(--white);
  cursor: pointer;
  transition: 0.25s;
}

.btn_full {
  width: 100%;
}

.btn_sm {
  min-height: 50px;
}

.btn_white {
  background: var(--white);
  color: var(--base);
}

.btn_bor {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn_bor2 {
  background: transparent;
  border: 1px solid var(--base);
  color: var(--base);
}

.readMoreBtn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  color: var(--base);
}

.readMoreBtn__text {
  max-width: 100%;
}

.readMoreBtn__icon {
  flex-shrink: 0;
  width: 14px;
  margin-left: 12px;
  transition: 0.25s;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
}

.swiper-button-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrows__text {
  color: var(--white);
  margin: 0 14px;
}

.arrows_dark .arrows__text {
  color: var(--base);
}

.arrow {
  width: 42px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
}

.arrow img {
  transition: 0.25s;
}

input {
  width: 100%;
  height: 65px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding: 0;
  text-transform: uppercase;
  font: 400 18px/1.2 var(--font);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: 0.15s;
}

input::placeholder {
  text-transform: uppercase;
  font: 400 18px/1.2 var(--font);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

input:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

input:focus {
  border-bottom-color: var(--white);
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.input2 {
  height: 60px;
  background: #2B2B2B;
  border: none;
  padding: 0 20px;
  font: 700 14px/1.2 var(--font);
  letter-spacing: 0.06em;
  color: var(--white);
}

input.input2::placeholder {
  font: 700 14px/1.2 var(--font);
  letter-spacing: 0.06em;
  color: #969696;
}

input.input3 {
  border-bottom-color: rgba(22, 22, 22, 0.21);
  color: var(--base);
}

input.input3::placeholder {
  color: rgba(22, 22, 22, 0.5);
}

input.input3:hover {
  border-bottom-color: rgba(22, 22, 22, 0.5);
}

input.input3:focus {
  border-bottom-color: var(--base);
}

textarea {
  width: 100%;
  min-height: 65px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding: 20px 0;
  text-transform: uppercase;
  font: 400 18px/1.2 var(--font);
  letter-spacing: 0.05em;
  color: var(--white);
  resize: vertical;
  transition: 0.15s;
}

textarea::placeholder {
  text-transform: uppercase;
  font: 400 18px/1.2 var(--font);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

textarea:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

textarea:focus {
  border-bottom-color: var(--white);
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 40px;
  font: 400 14px/1.55 var(--font);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.checkbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.checkbox::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translate(0, -50%);
  width: 17px;
  height: 17px;
  background: url("assets/img/icons/checked.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.checkbox__input {
  display: none;
}

.checkbox a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

.checkbox:has(.checkbox__input:checked)::before {
  background: var(--white);
  border-color: var(--white);
}

.checkbox:has(.checkbox__input:checked)::after {
  display: block;
}

.checkbox_dark {
  color: rgba(22, 22, 22, 0.6);
}

.checkbox_dark::before {
  border-color: rgba(22, 22, 22, 0.6);
}

.checkbox_dark a {
  color: rgba(22, 22, 22, 0.6);
}

.checkbox_dark:has(.checkbox__input:checked)::before {
  background: transparent;
  border-color: var(--base);
}

.textBlock h1, .textBlock h2 {
  margin-top: 60px;
  margin-bottom: 32px;
}

.textBlock h1:first-child, .textBlock h2:first-child {
  margin-top: 0;
}

.textBlock h1:last-child, .textBlock h2:last-child {
  margin-bottom: 0;
}

.textBlock h3, .textBlock h4 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.textBlock h3:first-child, .textBlock h4:first-child {
  margin-top: 0;
}

.textBlock h3:last-child, .textBlock h4:last-child {
  margin-bottom: 0;
}

.textBlock p {
  margin-bottom: 16px;
}

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

.textBlock a {
  color: var(--base);
}

.textBlock a:hover {
  text-decoration: underline;
}

.textBlock ul {
  margin-bottom: 20px;
}

.textBlock ul:last-child {
  margin-bottom: 0;
}

.textBlock ul li {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}

.textBlock ul li:last-child {
  margin-bottom: 0;
}

.textBlock ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--base);
}

.textBlock ol {
  list-style-type: decimal;
  margin-left: 24px;
  margin-bottom: 20px;
}

.textBlock ol:last-child {
  margin-bottom: 0;
}

.textBlock ol li {
  margin-bottom: 4px;
}

.textBlock ol li:last-child {
  margin-bottom: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  background: var(--white);
  padding: 60px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close img {
  width: 24px;
  transition: 0.25s;
}

.modal__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

.modal__title {
  margin-bottom: 12px;
}

.modal__title:last-child {
  margin-bottom: 0;
}

.modal__subtitle {
  max-width: 560px;
}

.modalForm__input {
  margin-bottom: 20px;
}

.modalForm__controls {
  padding-top: 12px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.reviewModal__date {
  color: rgba(22, 22, 22, 0.6);
  margin-bottom: 8px;
}

.reviewModal__name {
  margin-bottom: 20px;
}

.header {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding-top: 24px;
  padding-bottom: 20px;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 240px;
}

.burger {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 32px;
  height: 32px;
}

.burger .close {
  display: none;
}

.burger.active .icon {
  display: none;
}

.burger.active .close {
  display: block;
}

.menu {
  position: sticky;
  z-index: 49;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
}

.menu__wrap {
  border-bottom: 1px solid var(--gray1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu__item {
  min-height: 50px;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  letter-spacing: 0.05em;
  color: var(--base);
}

.menu__item.gray {
  color: var(--gray2);
}

.menu__item span {
  position: relative;
}

.menu__item span::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--purpur);
  opacity: 0;
  transition: 0.25s;
}

.footer {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--base);
  color: var(--white);
}

.footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/footer-bg.webp") no-repeat;
  background-size: cover;
  background-position: center;
}

.footer .wrapper {
  position: relative;
  z-index: 2;
}

.footer__wrap {
  padding: 110px 149px 55px 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  width: 100%;
  display: flex;
  align-items: center;
}

.footer__logo img {
  width: 306px;
}

.footer__right {
  flex-shrink: 0;
  width: 580px;
  display: flex;
  align-items: flex-end;
}

.footer__data {
  width: 100%;
}

.footerMenu {
  margin-bottom: 90px;
}

.footerMenu__item {
  display: block;
  padding: 8px 0;
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.footerMenu__item:last-child {
  margin-bottom: 0;
}

.footerMenu__item span {
  position: relative;
}

.footerMenu__item span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transition: 0.25s;
}

.footerContacts__phone {
  text-transform: uppercase;
  font: 400 40px/1.3 var(--font2);
  margin-bottom: 12px;
}

.footerContacts__phone a {
  color: #DEDEDE;
}

.footerContacts__callback {
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  letter-spacing: 0.05em;
  color: #808080;
  text-decoration: underline;
}

.footerSocial {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
}

.footerSocial__item {
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.footerSocial__item:last-child {
  margin-bottom: 0;
}

.footerBottom {
  border-top: 1px solid rgba(128, 128, 128, 0.31);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-transform: uppercase;
  font: 400 14px/1.35 var(--font);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}

.footerBottom br {
  display: none;
}

.footerBottom a {
  color: var(--white);
}

.footerBottom__side {
  display: flex;
  align-items: center;
  column-gap: 110px;
}

.pageContent {
  position: relative;
  z-index: 3;
  background: var(--white);
}

.section {
  background: var(--white);
  padding: 55px 0;
  position: relative;
  z-index: 2;
}

.section_purpur {
  background: var(--purpur);
  color: var(--white);
}

.section_dark {
  background: var(--base);
  color: var(--white);
}

.section_dark .advanSlide {
  border-left-color: #474747;
}

.section_dark .advanSlide::before {
  background-image: url("assets/img/icons/advan-icon-white.svg");
}

.section_dark .partnersItem {
  border-color: rgba(197, 197, 197, 0.15);
}

.section_bg1 {
  background: #F2F2F2;
}

.section.lp {
  padding: 110px 0;
}

.section.lpt {
  padding-top: 110px;
}

.section.lpb {
  padding-bottom: 110px;
}

.section.np {
  padding: 0;
}

.section.npt {
  padding-top: 0;
}

.section.npb {
  padding-bottom: 0;
}

.sectionHead {
  margin-bottom: 50px;
}

.sectionHead.smb {
  margin-bottom: 40px;
}

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

.sectionHead_btn {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.sectionHead__content {
  width: 100%;
}

.sectionHead__title {
  margin-bottom: 30px;
}

.sectionHead__title:last-child {
  margin-bottom: 0;
}

.sectionHead__btn {
  flex-shrink: 0;
  margin-left: 40px;
}

#mainBannerSect .sectionHead {
  max-width: 1178px;
}

.mainBanner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}

.mainBanner__image {
  width: 100%;
  position: relative;
}

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

.mainBanner__content {
  flex-shrink: 0;
  width: 555px;
  background: var(--base);
  padding: 52px 48px;
  padding-left: 60px;
  color: var(--white2);
}

.mainBanner__item {
  display: block;
  position: relative;
  padding-left: 27px;
  font-size: 20px;
  margin-bottom: 25px;
}

.mainBanner__item:last-child {
  margin-bottom: 0;
}

.mainBanner__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url("assets/img/icons/main-banner-list.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.services {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.servicesImages {
  position: sticky;
  top: 70px;
  left: 0;
  flex-shrink: 0;
  width: 580px;
  margin-right: 30px;
}

.servicesImages::before {
  content: "";
  display: block;
  padding-top: 110%;
}

.servicesImages__item {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: 1s;
}

.servicesImages__item.active {
  z-index: 2;
  opacity: 1;
}

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

.services__content {
  width: 720px;
  max-width: 100%;
}

.servicesItem {
  border-top: 1px solid var(--gray1);
  padding: 50px 0;
}

.servicesItem:first-child {
  border-top: none;
}

.servicesItem:last-child {
  border-bottom: 1px solid var(--gray1);
}

.servicesItem__image {
  display: none;
}

.servicesItem__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.servicesItem__title {
  width: 100%;
}

.servicesItem__digit {
  flex-shrink: 0;
  font-size: 14px;
  color: rgba(22, 22, 22, 0.6);
  margin-left: 20px;
}

.servicesItem__advan {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}

.servicesItem__advan:last-child {
  margin-bottom: 0;
}

.servicesItem__advan li {
  display: block;
  position: relative;
  padding-left: 18px;
}

.servicesItem__advan li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--base);
}

.servicesItem__btn .btn {
  min-width: 280px;
}

.pageForm {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.pageForm .pageForm__left {
  margin: 0;
}

.pageForm__input {
  margin-bottom: 20px;
}

.pageForm__controls {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 35px;
}

.pageFormButtons {
  margin-top: 50px;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.faq {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.faq .faq__left {
  margin: 0;
}

.faq__list {
  margin-top: -24px;
}

.faqItem {
  border-bottom: 1px solid var(--gray1);
}

.faqItem__head {
  padding: 32px 0;
  padding-right: 80px;
  display: flex;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}

.faqItem__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  transform-origin: 50% 0;
  width: 30px;
  height: 30px;
  background: url("assets/img/icons/faq-plus.svg") no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.15s;
}

.faqItem__digit {
  flex-shrink: 0;
  width: 105px;
  font: 400 18px/1.35 var(--font);
  color: rgba(22, 22, 22, 0.6);
}

.faqItem__title {
  width: 100%;
  font: 600 20px/1.35 var(--font);
}

.faqItem__text {
  display: none;
  padding-bottom: 24px;
  margin-top: -8px;
}

.faqItem__text p {
  margin-bottom: 12px;
}

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

.faqItem.active .faqItem__head::after {
  background-image: url("assets/img/icons/faq-minus.svg");
}

.reviews__wrap {
  display: block;
}

.reviews__btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.reviews__btn .btn {
  min-width: 420px;
}

.reviewsItem {
  flex-shrink: unset;
  border-bottom: 1px solid var(--gray1);
  padding: 36px 0;
  padding-right: 208px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.reviewsItem:last-child {
  margin-bottom: 0;
}

.reviewsItem__date {
  flex-shrink: 0;
  width: 229px;
  font-size: 16px;
  color: rgba(22, 22, 22, 0.6);
}

.reviewsItem__content {
  width: 100%;
}

.reviewsItem__name {
  margin-bottom: 16px;
}

/*.reviewsItem__text {
  margin: 0;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}*/

.reviewsItem__more {
  position: absolute;
  bottom: 36px;
  right: 0;
}

.smiBlock {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.smiBlock__image {
  grid-column: span 6;
  display: flex;
  align-items: flex-start;
}

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

.smiBlock__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  padding-left: 30px;
  padding-right: 50px;
}

.smiBlock__list {
  margin-bottom: 50px;
}

.smiBlock__btn {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.smiItem {
  border-bottom: 1px solid var(--gray1);
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
}

.smiItem:first-child {
  padding-top: 0;
}

.smiItem__name {
  flex-shrink: 0;
  width: 200px;
  font: 400 20px/1.3 var(--font);
  color: rgba(22, 22, 22, 0.6);
  padding-right: 12px;
}

.smiItem__title {
  width: 100%;
}

#mainObjectsSlider .sectionHead__title br:first-child {
  display: none;
}

#mainObjectsSlider .sectionHead__subtitle br {
  display: none;
}

.objectsSlider {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.objectsSlider__arrows {
  position: absolute;
  z-index: 5;
  bottom: 55px;
  right: 60px;
}

.objectsSlide {
  display: flex;
}

.objectsSlide__image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

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

.objectsSlide__content {
  width: 50%;
  background: var(--base);
  padding: 52px 54px 60px 60px;
  display: flex;
  flex-direction: column;
  color: var(--white2);
}

.objectsSlide__title {
  margin-bottom: 35px;
}

.objectsSlide__text {
  margin-bottom: 35px;
}

.objectsSlide__text:last-child {
  margin-bottom: 0;
}

.objectsSlide__info {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 45px;
}

.objectsSlide__info:last-child {
  margin-bottom: 0;
}

.objectsSlide__btn {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.objectsSlide__btn .btn {
  min-width: 280px;
}

.objectsSlideInfo__title {
  opacity: 0.6;
  margin-bottom: 5px;
}

.aboutAfterFormImage {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.aboutAfterFormImage::before {
  content: "";
  display: block;
  padding-top: 45%;
}

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

.banner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}

.banner__left {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.banner__title {
  flex-shrink: 0;
  /*padding: 0 30px;*/
  margin-bottom: 40px;
}

.banner__title .link {
  color: var(--purpur);
  position: relative;
  padding-right: 45px;
}

.banner__title .link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  background: url("assets/img/icons/banner-title-link-icon.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.banner__image {
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.banner__right {
  flex-shrink: 0;
  width: 555px;
}

.bannerAdvan {
  background: #F4F4F4;
  padding: 48px;
  padding-left: 60px;
}

.bannerAdvan__item {
  display: block;
  position: relative;
  padding-left: 27px;
  font-size: 20px;
  margin-bottom: 25px;
}

.bannerAdvan__item:last-child {
  margin-bottom: 0;
}

.bannerAdvan__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url("assets/img/icons/banner-list.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.bannerForm {
  background: var(--base);
  padding: 60px;
  padding-top: 50px;
  color: var(--white);
}

.bannerForm__title {
  font-size: 20px;
  margin-bottom: 25px;
}

.bannerForm__input {
  margin-bottom: 20px;
}

.bannerForm__agreement {
  margin-bottom: 30px;
}

#aboutVideoSection .sectionHead__title br:first-child {
  display: none;
}

.pageVideo {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pageVideo::before {
  content: "";
  display: block;
  padding-top: 44%;
}

.pageVideo__preview {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.pageVideo__video {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageVideo.active .pageVideo__preview {
  display: none;
}

.pageVideo.active .pageVideo__video {
  display: block;
}

.pageVideoPlay {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageVideoPlay svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: var(--white);
  transform: translate(10px, 0);
}

.aboutSlider {
  position: relative;
  overflow: hidden;
}

.aboutSlider__arrows {
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: 0;
}

.aboutSlide {
  border-top: 1px solid var(--gray1);
  border-bottom: 1px solid var(--gray1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}

.aboutSlide__content {
  width: 590px;
  max-width: calc(100% - 638px);
  padding-right: 32px;
  padding-bottom: 50px;
}

.aboutSlide__title {
  margin-bottom: 16px;
}

.aboutSlide__image {
  flex-shrink: 0;
  width: 638px;
  position: relative;
  overflow: hidden;
}

.aboutSlide__image::before {
  content: "";
  display: block;
  padding-top: 72%;
}

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

/*#advanSection {
  position: sticky;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}*/

.advanSlider__wrap {
  display: grid;
  grid-column-gap: 40px;
  grid-row-gap: 70px;
  grid-template-columns: repeat(3, 1fr);
}

.advanSlide {
  flex-shrink: unset;
  min-height: 102px;
  border-left: 1px solid rgba(22, 22, 22, 0.2);
  padding-top: 24px;
  padding-left: 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.advanSlide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 12px;
  height: 12px;
  background: url("assets/img/icons/advan-icon.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.tgBlog {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.tgBlogItem {
  border: 1px solid rgba(22, 22, 22, 0.15);
  padding: 20px;
  display: flex;
}

.tgBlogItem__image {
  flex-shrink: 0;
  width: 108px;
  position: relative;
  overflow: hidden;
  margin-right: 20px;
}

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

.tgBlogItem__content {
  width: 100%;
  min-height: 108px;
  display: flex;
  flex-direction: column;
}

.tgBlogItem__title {
  max-width: 376px;
  margin-bottom: 20px;
}

.tgBlogItem__bottom {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tgBlogItem__date {
  font-size: 14px;
}

.tgBlogItem__more {
  padding-right: 9px;
  position: relative;
  text-transform: uppercase;
  font: 700 14px/1.35 var(--font);
  letter-spacing: 0.06em;
  color: var(--base);
}

.tgBlogItem__more::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  background: url("assets/img/icons/tg-blog-item-more.svg") no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.25s;
}

.aboutPresent {
  background: var(--base);
  min-height: 476px;
  padding: 60px;
  padding-top: 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.aboutPresent__content {
  max-width: 908px;
  position: relative;
  z-index: 2;
}

.aboutPresent__title {
  margin-bottom: 35px;
}

.aboutPresent__text {
  max-width: 650px;
  color: var(--white2);
  margin-bottom: 45px;
}

.aboutPresent__text:last-child {
  margin-bottom: 0;
}

.aboutPresent__btn .btn {
  min-width: 340px;
}

.aboutPresent__image {
  position: absolute;
  z-index: 1;
  bottom: -94px;
  right: -194px;
  width: 827px;
}

.partnersList {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}

.partnersItem {
  display: block;
  border: 1px solid rgba(76, 76, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.partnersItem::before {
  content: "";
  display: block;
  padding-top: 45%;
}

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

.sellingProblems__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.sellingProblem {
  flex-shrink: unset;
  border: 1px solid rgba(22, 22, 22, 0.15);
  display: flex;
  flex-direction: column;
}

.sellingProblem_empty {
  border: none;
}

.sellingProblem__title {
  min-height: 102px;
  padding: 20px;
}

.sellingProblem__bottom {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  background: #F2F2F2;
  padding: 10px;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
}

.steps__left {
  position: sticky;
  top: 100px;
  left: 0;
  width: 100%;
}

.steps__left.sectionHead_btn {
  display: block;
}

.steps__left .sectionHead__btn {
  margin-left: 0;
  margin-top: 40px;
}

.steps__left .sectionHead__btn .btn {
  min-width: 255px;
}

.steps__content {
  flex-shrink: 0;
  width: 710px;
  margin-left: 30px;
}

.stepsItem {
  /*position: sticky;
  top: 90px;
  left: 0;*/
  background: var(--base);
  border: 1px solid rgba(197, 197, 197, 0.24);
  padding: 30px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.stepsItem:last-child {
  margin-bottom: 0;
}

.stepsItem:has(.stepsItem__digit) {
  padding-bottom: 15px;
}

.stepsItem__left {
  width: 100%;
}

.stepsItem__title {
  margin-bottom: 20px;
}

.stepsItem__title:last-child {
  margin-bottom: 0;
}

.stepsItem__time {
  display: inline-block;
  min-width: 207px;
  background: #1D1D1D;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(233, 233, 233, 0.5);
}

.stepsItem__right {
  flex-shrink: 0;
  width: 266px;
  margin-left: 24px;
}

.stepsItem__right p {
  margin-bottom: 12px;
}

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

.stepsItem__text {
  color: var(--white2);
  margin-bottom: 15px;
}

.stepsItem__digit {
  font: 400 60px/1.3 var(--font2);
  color: rgba(255, 255, 255, 0.05);
}

.stepsItem__btn {
  margin-top: 11px;
}

.stepsItem_last {
  background: var(--white);
  border: none;
  color: var(--base);
}

.stepsItem_last .stepsItem__time {
  background: #F6F6F6;
  color: rgba(22, 22, 22, 0.34);
}

.stepsItem_last .stepsItem__text {
  color: rgba(22, 22, 22, 0.7);
}

.executionSolve {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
}

.executionSolve__image {
  flex-shrink: 0;
  width: 50%;
  position: relative;
}

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

.executionSolve__content {
  width: 100%;
  background: var(--base);
  padding: 52px 40px;
  color: var(--white2);
}

.executionSolve__item {
  display: block;
  position: relative;
  padding-left: 27px;
  font-size: 20px;
  margin-bottom: 25px;
}

.executionSolve__item:last-child {
  margin-bottom: 0;
}

.executionSolve__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url("assets/img/icons/main-banner-list.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.teamSection {
  position: relative;
  z-index: 2;
  background: #BDBDB3;
  color: var(--white);
}

.teamSection__inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.teamSection__title {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 50px 30px;
  padding-bottom: 0;
}

.team {
  overflow: hidden;
}

.teamList {
  position: absolute;
  z-index: 5;
  bottom: 82px;
  left: 30px;
}

.teamList__wrap {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.teamList__item {
  position: relative;
  opacity: 0.5;
  cursor: pointer;
  transition: 0.25s;
  margin-right: 15px;
}

.teamList__item:last-child {
  margin-right: 0;
}

.teamList__item::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  transition: 0.25s;
}

.teamList__item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.teamList__item.active {
  opacity: 1;
}

.teamList__item.active::before {
  opacity: 1;
  width: 10px;
  height: 10px;
}

.teamList__arrows {
  justify-content: flex-start;
}

.teamSlide {
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.teamSlide__text {
  position: absolute;
  z-index: 3;
  top: 50px;
  right: 40px;
  width: 351px;
}

.teamSlide__image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 732px;
  display: flex;
  align-items: center;
}

.teamSlide__image img {
  width: 100%;
}

.teamSlide__bottom {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
}

.errorBlock {
  text-align: center;
}

.errorBlock__title {
  font: 400 100px/1.3 var(--font2);
  margin-bottom: 10px;
}

.errorBlock__text {
  margin-bottom: 40px;
}

.errorBlock__btn {
  display: flex;
  justify-content: center;
}

.errorBlock__btn .btn {
  min-width: 290px;
}

.thanksBlock {
  text-align: center;
}

.thanksBlock__title {
  margin-bottom: 20px;
}

.thanksBlock__text {
  margin-bottom: 40px;
}

.thanksBlock__btn {
  display: flex;
  justify-content: center;
}

.thanksBlock__btn .btn {
  min-width: 290px;
}

@media screen and (max-width: 1479px) {
  .banner__title {
	padding: 0 20px;
  }
}

@media screen and (max-width: 1399px) {
  body {
    font-size: 15px;
  }

  h1,
  .h1 {
    font-size: 35px;
  }

  h2,
  .h2 {
    font-size: 35px;
  }

  h3,
  .h3 {
    font-size: 22px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  .text25 {
    font-size: 22px;
  }

  input {
    height: 62px;
    font-size: 16px;
  }

  input::placeholder {
    font-size: 16px;
  }

  textarea {
    min-height: 62px;
    font-size: 16px;
  }

  textarea::placeholder {
    font-size: 16px;
  }

  .checkbox {
    padding-left: 33px;
    font-size: 13px;
  }

  .checkbox::before {
    width: 16px;
    height: 16px;
  }

  .checkbox::after {
    width: 15px;
    height: 15px;
  }

  .header {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .header__logo img {
    width: 200px;
  }

  .menu__item {
    font-size: 13px;
  }

  .footer__wrap {
    padding: 100px 79px 50px 156px;
  }

  .footer__logo img {
    width: 249px;
  }

  .footer__right {
    width: 501px;
  }

  .footerMenu {
    margin-bottom: 40px;
  }

  .footerMenu__item {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footerContacts__callback {
    font-size: 13px;
  }

  .footerSocial {
    width: 116px;
  }

  .footerSocial__item {
    width: 116px;
    height: 116px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footerBottom {
    font-size: 13px;
  }

  .section {
    padding: 45px 0;
  }

  .section.lp {
    padding: 90px 0;
  }

  .section.lpt {
    padding-top: 90px;
  }

  .section.lpb {
    padding-bottom: 90px;
  }

  .sectionHead {
    margin-bottom: 40px;
  }

  .sectionHead__title {
    margin-bottom: 25px;
  }

  .mainBanner__content {
    width: 455px;
    padding: 40px;
    padding-right: 48px;
  }

  .mainBanner__item {
    font-size: 18px;
  }

  .servicesImages {
    width: 500px;
  }

  .services__content {
    width: 580px;
  }

  .servicesItem {
    padding: 45px 0;
  }

  .servicesItem__head {
    margin-bottom: 25px;
  }

  .servicesItem__advan {
    margin-bottom: 35px;
  }

  .servicesItem__advan li::before {
    top: 9px;
  }

  .pageFormButtons {
    margin-top: 40px;
  }

  .faqItem__head {
    padding: 30px 0;
    padding-right: 55px;
  }

  .faqItem__digit {
    width: 60px;
    font-size: 14px;
  }

  .faqItem__title {
    font-size: 18px;
  }

  .reviews__btn {
    margin-top: 40px;
  }

  .reviewsItem {
  	padding-top: 32px;
  	padding-bottom: 32px;
  	margin-bottom: 30px;
  }

  .reviewsItem__date {
    width: 148px;
    font-size: 14px;
  }

  .reviewsItem__text {
    -webkit-line-clamp: 5;
  }

  .smiBlock__content {
    padding-left: 20px;
    padding-right: 30px;
  }

  .smiItem {
    padding: 30px 0;
  }

  .smiItem__name {
    width: 149px;
    font-size: 14px;
  }

  .smiItem__title {
    font-size: 17px;
  }

  .objectsSlider__arrows {
    bottom: 35px;
    right: 40px;
  }

  .objectsSlide__content {
    padding: 40px;
  }

  .objectsSlide__title {
    margin-bottom: 20px;
  }

  .objectsSlide__text {
    margin-bottom: 25px;
  }

  .objectsSlide__info {
    margin-bottom: 35px;
  }

  .banner__title {
    padding: 0 20px;
  }

  .banner__title .link {
    padding-right: 40px;
  }

  .banner__title .link::before {
    width: 24px;
    height: 24px;
  }

  .banner__right {
    width: 455px;
  }

  .bannerAdvan {
    padding: 40px;
    padding-right: 20px;
  }

  .bannerAdvan__item {
    font-size: 18px;
  }

  .bannerForm {
    padding: 40px;
    padding-top: 35px;
  }

  .bannerForm__title {
    font-size: 18px;
  }

  .pageVideoPlay {
    width: 160px;
    height: 160px;
  }

  .pageVideoPlay svg {
    width: 58px;
    height: 58px;
    transform: translate(7px, 0);
  }

  .aboutSlider {
    transform: translate(-20px, 0);
    width: calc(100% + 40px);
    padding: 0 20px;
  }

  .aboutSlider__arrows {
    left: 20px;
    bottom: 20px;
  }

  .aboutSlide {
    padding: 20px 0;
  }

  .aboutSlide__content {
    width: 444px;
    padding-right: 24px;
  }

  .tgBlogItem__title {
    max-width: 320px;
  }

  .aboutPresent {
    min-height: 404px;
    padding: 40px;
    padding-top: 35px;
  }

  .aboutPresent__content {
    max-width: 880px;
  }

  .aboutPresent__title {
    margin-bottom: 25px;
  }

  .aboutPresent__text {
    margin-bottom: 40px;
  }

  .aboutPresent__image {
    bottom: -57px;
    right: -162px;
    width: 602px;
  }

  .sellingProblem__bottom {
    font-size: 14px;
  }

  .steps__left .sectionHead__btn {
    margin-top: 35px;
  }

  .steps__content {
    width: 570px;
  }

  .stepsItem__right {
    width: 250px;
  }

  .executionSolve__image {
    width: 590px;
  }

  .executionSolve__content {
    padding: 40px;
  }

  .executionSolve__item {
    font-size: 18px;
  }

  .teamSection__title {
    padding: 40px 20px;
  }

  .teamList {
    bottom: 80px;
    left: 20px;
  }

  .teamList__item img {
    width: 60px;
    height: 60px;
  }

  .teamSlide {
    min-height: 574px;
  }

  .teamSlide__text {
    top: 40px;
    width: 290px;
  }

  .teamSlide__image {
    width: 615px;
  }

  .teamSlide__bottom {
    left: 20px;
    width: calc(100% - 40px);
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 30px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 16px;
  }

  .text25 {
    font-size: 18px;
  }

  .pageBtn .btn {
    min-width: 270px;
  }

  .btn {
    min-height: 50px;
    padding: 8px 24px;
    font-size: 13px;
  }

  .readMoreBtn {
    font-size: 13px;
  }

  input {
    height: 59px;
    font-size: 14px;
  }

  input::placeholder {
    font-size: 14px;
  }

  input.input2 {
    height: 50px;
  }

  textarea {
    min-height: 59px;
    font-size: 14px;
  }

  textarea::placeholder {
    font-size: 14px;
  }

  .header {
    padding-top: 30px;
  }

  .header__logo img {
    width: 160px;
  }

  .footer__wrap {
    padding: 80px 0 48px 119px;
  }

  .footer__logo img {
    width: 219px;
  }

  .footer__right {
    width: 476px;
  }

  .footerContacts__phone {
    font-size: 35px;
  }

  .footerBottom {
    font-size: 12px;
  }

  .footerBottom__side {
    gap: 44px;
  }

  .section {
    padding: 40px 0;
  }

  .section.lp {
    padding: 80px 0;
  }

  .section.lpt {
    padding-top: 80px;
  }

  .section.lpb {
    padding-bottom: 80px;
  }

  .sectionHead {
    margin-bottom: 30px;
  }

  .sectionHead.smb {
    margin-bottom: 30px;
  }

  .sectionHead__title {
    margin-bottom: 20px;
  }

  #mainBannerSect .sectionHead {
    max-width: 892px;
  }

  .mainBanner__content {
    width: 400px;
    padding-right: 27px;
  }

  .mainBanner__item {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .servicesImages {
    width: 448px;
  }

  .services__content {
    width: 100%;
  }

  .servicesItem {
    padding: 40px 0;
  }

  .servicesItem__advan {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .servicesItem__advan br {
    display: none;
  }

  .servicesItem__advan li {
    padding-left: 15px;
  }

  .servicesItem__advan li::before {
    top: 9px;
    left: 3px;
    width: 4px;
    height: 4px;
  }

  .pageForm__input {
    margin-bottom: 15px;
  }

  .pageForm__controls {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .pageFormButtons {
    margin-top: 20px;
  }

  .faq {
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }

  .faq__list {
    margin: 0;
  }

  .faqItem__head {
    padding-right: 50px;
  }

  .faqItem__head::after {
    width: 25px;
    height: 25px;
  }

  .faqItem__title {
    max-width: 440px;
    font-size: 16px;
  }

  .faqItem__text {
    margin-top: -12px;
    padding-bottom: 20px;
  }

  .faqItem__text p {
    margin-bottom: 8px;
  }

  .reviews__btn {
    margin-top: 30px;
  }

  .reviews__btn .btn {
    min-width: 390px;
  }

  .reviewsItem {
  	padding-right: 190px;
  }

  .reviewsItem__date {
    width: 140px;
    font-size: 13px;
  }

  .smiBlock__image {
    grid-column: span 5;
  }

  .smiBlock__content {
    grid-column: span 7;
  }

  .smiItem {
    padding: 30px 0;
  }

  .smiItem__name {
    width: 129px;
    font-size: 13px;
  }

  .smiItem__title {
    font-size: 16px;
  }

  .objectsSlide__btn .btn {
    min-width: 250px;
  }

  .banner__title {
    margin-bottom: 30px;
  }

  .banner__title .link {
    padding-right: 36px;
  }

  .banner__title .link::before {
    width: 20px;
    height: 20px;
  }

  .banner__right {
    width: 390px;
  }

  .bannerAdvan {
    padding: 30px;
    padding-right: 15px;
  }

  .bannerAdvan__item {
    font-size: 16px;
    padding-left: 22px;
    margin-bottom: 20px;
  }

  .bannerAdvan__item::before {
    top: 8px;
  }

  .bannerForm__title {
    margin-bottom: 20px;
  }

  .bannerForm__agreement {
    margin-bottom: 25px;
  }

  .pageVideoPlay {
    width: 130px;
    height: 130px;
    border-width: 2px;
  }

  .pageVideoPlay svg {
    width: 46px;
    height: 46px;
    transform: translate(6px, 0);
  }

  .aboutSlide__content {
    width: 100%;
    max-width: calc(100% - 540px);
  }

  .aboutSlide__image {
    width: 540px;
  }

  .advanSlider__wrap {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
  }

  .advanSlide br {
    display: none;
  }

  .aboutPresent {
    min-height: 370px;
  }

  .aboutPresent__content {
    max-width: 680px;
  }

  .aboutPresent__text {
    max-width: 600px;
    margin-bottom: 35px;
  }

  .aboutPresent__btn .btn {
    min-width: 300px;
  }

  .aboutPresent__image {
    bottom: -47px;
    right: -137px;
    width: 500px;
  }

  .partnersList {
    grid-gap: 12px;
  }

  .sellingProblems__wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .sellingProblem_empty {
    display: none;
  }

  .sellingProblem__title {
    font-size: 15px;
  }

  .stepsItem__time {
    font-size: 13px;
  }

  .executionSolve__content {
    padding: 30px;
  }

  .executionSolve__item {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .executionSolve__item br {
    display: none;
  }

  .teamList {
    bottom: 77px;
  }

  .teamSlide {
    min-height: 500px;
  }

  .teamSlide__text {
    width: 280px;
  }

  .teamSlide__image {
    width: 535px;
  }

  .teamSlide__bottom {
    font-size: 16px;
  }

  #advanSection {
  	position: relative;
  	z-index: 2;
  	top: unset;
  	left: unset;
  }
}

@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 25px;
  }

  h2,
  .h2 {
    font-size: 25px;
  }

  .text25 {
    font-size: 14px;
  }

  .arrows__text {
    margin: 0 11px;
  }

  .arrow {
    height: 22px;
  }

  .header {
    position: sticky;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
  }

  .header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 32px);
    height: 1px;
    background: var(--gray1);
  }

  .header__wrap {
    padding: 8px 0;
    position: relative;
  }

  .header__logo img {
    width: 120px;
  }

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    position: fixed;
    z-index: 49;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .menu__wrap {
    flex-direction: column;
    align-items: stretch;
    border: none;
  }

  .menu__item {
	padding-right: 8px;
	display: flex;
	justify-content: flex-end;
	text-align: right;
    font-size: 14px;
  }

  .footer__wrap {
    padding: 60px 0 48px 49px;
  }

  .footer__logo img {
    width: 186px;
  }

  .footer__right {
    width: 423px;
  }

  .footerMenu__item {
    margin-bottom: 16px;
  }

  .footerContacts__phone {
    font-size: 30px;
  }

  .footerSocial {
    width: 105px;
  }

  .footerSocial__item {
    width: 105px;
    height: 105px;
    padding: 8px;
  }

  .footerBottom__side {
    gap: 32px;
  }

  .section {
    padding: 30px 0;
  }

  .section.lp {
    padding: 60px 0;
  }

  .section.lpt {
    padding-top: 60px;
  }

  .section.lpb {
    padding-bottom: 60px;
  }

  .sectionHead_btn {
    display: block;
  }

  .sectionHead__btn {
    display: none;
  }

  #mainBannerSect .sectionHead {
    max-width: 647px;
  }

  .mainBanner__content {
    width: 370px;
    padding: 30px;
    padding-right: 25px;
  }

  .mainBanner__item {
    font-size: 15px;
  }

  .mainBanner__item::before {
    top: 6px;
  }

  .services {
    display: block;
  }

  .servicesImages {
    display: none;
  }

  .servicesItem {
    display: flex;
  }

  .servicesItem__content {
    width: 100%;
  }

  .servicesItem__image {
    flex-shrink: 0;
    width: 239px;
    display: block;
    position: relative;
    overflow: hidden;
    margin-left: 30px;
  }

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

  .pageForm {
    grid-template-columns: 1fr;
  }

  .pageForm__controls {
    margin-top: 20px;
  }

  .reviewsItem__date {
    width: 125px;
  }

  .reviewsItem__name {
    margin-bottom: 10px;
  }

  .smiBlock {
    display: block;
  }

  .smiBlock__image {
    display: none;
  }

  .smiBlock__content {
    grid-column: unset;
    padding-right: 20px;
  }

  .smiBlock__list {
    margin-bottom: 30px;
  }

  .smiItem {
    padding: 30px 0;
  }

  .smiItem__name {
    width: 294px;
  }

  .objectsSlider__arrows {
    bottom: 30px;
    right: 0;
    width: 50%;
  }

  .objectsSlide__content {
    padding: 25px;
    padding-bottom: 90px;
  }

  .objectsSlide__title {
    margin-bottom: 15px;
  }

  .objectsSlide__text {
    margin-bottom: 20px;
  }

  .objectsSlide__info {
    margin-bottom: 25px;
  }

  .objectsSlide__btn .btn {
    min-width: auto;
    width: 100%;
  }

  .banner__title .link {
    padding-right: 32px;
  }

  .banner__title .link::before {
    width: 18px;
    height: 18px;
  }

  .banner__right {
    width: 370px;
  }

  .bannerAdvan {
    padding: 25px;
    padding-right: 15px;
  }

  .bannerAdvan__item {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .bannerAdvan__item::before {
    top: 6px;
  }

  .bannerForm {
    padding: 30px;
    padding-top: 25px;
  }

  .pageVideoPlay {
    width: 90px;
    height: 90px;
  }

  .pageVideoPlay svg {
    width: 32px;
    height: 32px;
    transform: translate(4px, 0);
  }

  .aboutSlide__content {
    max-width: calc(100% - 350px);
  }

  .aboutSlide__image {
    width: 350px;
  }

  .advanSlider__wrap {
    grid-gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }

  .advanSlide br {
    display: block;
  }

  .tgBlogItem {
    padding: 10px;
  }

  .tgBlogItem__image {
    width: 100px;
    margin-right: 15px;
  }

  .tgBlogItem__content {
    min-height: 100px;
  }

  .tgBlogItem__title {
    font-size: 13px;
  }

  .tgBlogItem__date {
    font-size: 12px;
  }

  .tgBlogItem__more {
    font-size: 13px;
  }

  .aboutPresent {
    min-height: auto;
    padding: 30px;
    padding-top: 25px;
  }

  .aboutPresent__content {
    max-width: 580px;
  }

  .aboutPresent__title {
    margin-bottom: 20px;
  }

  .aboutPresent__text {
    max-width: 440px;
    margin-bottom: 30px;
  }

  .aboutPresent__image {
    bottom: -31px;
    right: -108px;
    width: 387px;
  }

  .partnersList {
    grid-template-columns: repeat(4, 1fr);
  }

  .sellingProblems__wrap {
    grid-gap: 16px;
  }

  .sellingProblem__title {
    padding: 16px;
    font-size: 14px;
  }

  .sellingProblem__bottom {
    font-size: 12px;
  }

  .steps {
    display: block;
  }

  .steps__left {
    position: static;
    top: unset;
    left: unset;
  }

  .steps__left .sectionHead__btn {
    margin-top: 25px;
  }

  .steps__left br {
    display: none;
  }

  .steps__content {
    width: 100%;
    margin: 0;
  }

  .stepsItem__right {
    width: 290px;
  }

  .stepsItem__text p {
    margin-bottom: 8px;
  }

  .stepsItem__text br {
    display: none;
  }

  .executionSolve__image {
    width: 323px;
  }

  .executionSolve__content {
    padding: 20px;
  }

  .executionSolve__item {
    font-size: 15px;
  }

  .executionSolve__item::before {
    top: 6px;
  }

  .teamSection__title {
    padding-top: 60px;
  }

  .teamList {
    bottom: 74px;
  }

  .teamList__wrap {
    margin-bottom: 22px;
  }

  .teamList__item.active::before {
    width: 8px;
    height: 8px;
  }

  .teamSlide {
    min-height: 460px;
  }

  .teamSlide__text {
    top: 144px;
    right: auto;
    left: 20px;
    width: 260px;
    font-size: 13px;
  }

  .teamSlide__image {
    left: unset;
    right: 0;
    transform: none;
    width: 495px;
  }

  .teamSlide__bottom {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 14px;
  }

  h1,
  .h1 {
    font-size: 18px;
  }

  h2,
  .h2 {
    font-size: 18px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }

  .text25 {
    letter-spacing: 0.05em;
  }

  .pageBtn .btn {
    min-width: auto;
    width: 100%;
  }

  .btn {
    font-size: 12px;
  }

  input {
    height: 48px;
  }

  textarea {
    min-height: 48px;
  }

  .checkbox::before {
    top: 2px;
    transform: none;
  }

  .checkbox::after {
    top: 3px;
    transform: none;
  }

  .textBlock h1, .textBlock h2 {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .textBlock h3, .textBlock h4 {
    margin-top: 32px;
    margin-bottom: 20px;
  }

  .modal {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    padding: 20px 16px;
    padding-top: 24px;
  }

  .modal__close {
    width: 48px;
    height: 48px;
  }

  .modal__close img {
    width: 20px;
  }

  .modal__head {
    margin-bottom: 24px;
  }

  .modal__title {
    margin-bottom: 10px;
  }

  .modalForm__input {
    margin-bottom: 15px;
  }

  .modalForm__controls {
    padding-top: 8px;
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .reviewModal__name {
    margin-bottom: 16px;
  }

  .header::after {
    width: calc(100% - 20px);
  }

  .header__wrap {
    padding: 0;
  }

  .header__logo img {
    width: 100px;
  }

  .footer {
    position: relative;
    bottom: unset;
    left: unset;
  }

  .footer__wrap {
    display: block;
    padding: 50px 0;
  }

  .footer__logo {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
  }

  .footer__logo img {
    width: 166px;
  }

  .footer__right {
    width: 100%;
    display: block;
  }

  .footerMenu {
    margin-bottom: 32px;
  }

  .footerMenu__item {
    padding: 12px 0;
    margin: 0;
    text-align: center;
  }

  .footerContacts {
    text-align: center;
  }

  .footerContacts__phone {
    margin-bottom: 8px;
  }

  .footerSocial {
    width: 300px;
    margin: 0 auto;
    margin-top: 36px;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footerSocial__item {
    width: 145px;
    height: 145px;
    padding: 16px;
    margin: 0;
    font-size: 14px;
  }

  .footerSocial__item:last-child {
    margin-top: -16px;
  }

  .footerBottom {
    padding: 20px 0;
    display: block;
    font-size: 13px;
  }

  .footerBottom br {
    display: block;
  }

  .footerBottom__side {
    display: block;
    gap: unset;
    margin-bottom: 15px;
  }

  .footerBottom__side:last-child {
    margin-bottom: 0;
  }

  .footerBottom__side p {
    margin-bottom: 10px;
  }

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

  .section {
    padding: 25px 0;
  }

  .section.lp {
    padding: 40px 0;
  }

  .section.lpt {
    padding-top: 40px;
  }

  .section.lpb {
    padding-bottom: 40px;
  }

  .sectionHead {
    margin-bottom: 25px;
  }

  .sectionHead.smb {
    margin-bottom: 25px;
  }

  .sectionHead.center {
    text-align: left;
  }

  .sectionHead__title {
    margin-bottom: 16px;
  }

  .mainBanner {
    display: block;
  }

  .mainBanner__image {
    display: block;
  }

  .mainBanner__image::before {
    content: "";
    display: block;
    padding-top: 75%;
  }

  .mainBanner__content {
    width: 100%;
    padding: 40px 20px;
    padding-left: 10px;
  }

  .mainBanner__item {
    font-size: 14px;
    margin-bottom: 15px;
  }

  #main2Section .sectionHead {
    max-width: 280px;
  }

  #main2Section .sectionHead br {
    display: none;
  }

  .servicesItem {
    flex-wrap: wrap;
  }

  .servicesItem__image {
  	order: 1;
    width: 100%;
    max-width: 440px;
    margin: 0;
    margin-bottom: 20px;
  }

  .servicesItem__image::before {
    content: "";
    display: block;
    padding-top: 110%;
  }

  .servicesItem__content {
  	order: 2;
  }

  .servicesItem__head {
    margin-bottom: 15px;
  }

  .servicesItem__digit {
    margin-left: 10px;
  }

  .servicesItem__advan {
    grid-gap: 12px;
    margin-bottom: 20px;
  }

  .servicesItem__btn .btn {
    min-width: auto;
    width: 100%;
  }

  .pageForm .pageForm__left br {
    display: none;
  }

  .pageForm .pageForm__left .sectionHead__subtitle {
    letter-spacing: 0.05em;
  }

  .pageFormButtons {
    margin-top: 30px;
    grid-gap: 10px;
    grid-template-columns: 1fr;
  }

  .faqItem__head {
    padding: 15px 0;
    padding-right: 40px;
  }

  .faqItem__head::after {
    width: 20px;
    height: 20px;
  }

  .faqItem__digit {
    display: none;
  }

  .faqItem__title {
    font-size: 14px;
  }

  .faqItem__text {
    margin-top: 0;
    padding-bottom: 15px;
  }

  .reviews__slider {
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
    padding: 0 14px;
    overflow: hidden;
  }

  .reviews__wrap {
    display: flex;
    flex-wrap: nowrap;
  }

  .reviews__btn .btn {
    min-width: auto;
    width: 100%;
  }

  .reviewsItem {
    flex-shrink: 0;
    width: 80%;
    flex-direction: column;
    border-bottom: 1px solid var(--gray1);
    padding: 0;
    padding-bottom: 16px;
    margin-bottom: 0;
    margin-right: 32px;
  }

  .reviewsItem:last-child {
    margin-right: 0;
  }

  .reviewsItem__date {
    width: 100%;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .reviewsItem__content {
    padding-right: 8px;
  }

  .reviewsItem__name {
    margin-bottom: 12px;
  }

  .reviewsItem__text {
    -webkit-line-clamp: 10;
  }

  .reviewsItem__more {
  	position: static;
  	margin: auto;
  	margin-bottom: 0;
  	width: 100%;
  	padding-top: 24px;
  }

  .smiBlock__content {
    padding: 0 10px;
  }

  .smiItem {
    display: block;
    padding: 20px 0;
  }

  .smiItem__name {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .smiItem__title {
    display: block;
  }

  #mainObjectsSlider .sectionHead__title br:first-child {
    display: block;
  }

  #mainObjectsSlider .sectionHead__subtitle br {
    display: block;
  }

  .objectsSlider__arrows {
	bottom: auto;
	top: 190px;
    width: 100%;
  }

  .objectsSlider__wrap {
  	align-items: flex-start;
  }

  .objectsSlide {
    flex-direction: column;
  }

  .objectsSlide__image {
    width: 100%;
	height: 225px;
  }
	
  .objectsSlide__image::before {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 65px;
	background: linear-gradient(180deg, rgba(22, 22, 22, 0), #161616);
	opacity: 0.9;
  }

  .objectsSlide__content {
    width: 100%;
    padding: 25px 10px;
  }

  .objectsSlide__text {
  	font-size: 13px;
	line-height: 1.35;
  }

  .objectsSlide__text p {
  	margin-bottom: 8px;
  }

  .objectsSlide__info {
    grid-column-gap: 12px;
	grid-row-gap: 16px;
  }

  .objectsSlide__btn {
  	margin: 0;
    padding: 0 6px;
  }

  .objectsSlideInfo__title {
  	font-size: 12px;
  	margin-bottom: 2px;
  }

  .objectsSlideInfo__text {
  	font-size: 13px;
  	color: var(--white);
  }

  .banner {
    display: block;
  }

  .banner__title {
    padding: 0 14px;
    margin-bottom: 25px;
  }

  .banner__title .link {
    padding-right: 20px;
  }

  .banner__title .link::before {
    width: 12px;
    height: 12px;
  }

  .banner__image {
    height: auto;
  }

  .banner__image::before {
    content: "";
    display: block;
    padding-top: 75%;
  }

  .banner__right {
    width: 100%;
  }

  .bannerAdvan {
    padding: 25px 14px;
  }

  .bannerAdvan__item {
    font-size: 14px;
    padding-left: 20px;
  }

  .bannerAdvan__item::before {
    width: 10px;
    height: 10px;
  }

  .bannerAdvan__item br {
    display: none;
  }

  .bannerForm {
    padding: 25px 14px;
  }

  .bannerForm__title {
    font-size: 16px;
  }

  .bannerForm__input {
    margin-bottom: 15px;
  }

  .bannerForm__agreement {
    margin-bottom: 20px;
  }

  #aboutVideoSection .sectionHead__title br:first-child {
    display: block;
  }

  .pageVideo::before {
    padding-top: 63%;
  }

  .pageVideoPlay {
    width: 50px;
    height: 50px;
    border-width: 1px;
  }

  .pageVideoPlay svg {
    width: 18px;
    height: 18px;
    transform: translate(2px, 0);
  }

  .aboutSlider {
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
    padding: 0 14px;
    padding-bottom: 45px;
  }

  .aboutSlider__wrap {
  	align-items: flex-start;
  }

  .aboutSlider__arrows {
  	bottom: 0;
    left: 0;
    width: 100%;
  }

  .aboutSlide {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }

  .aboutSlide__content {
    max-width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .aboutSlide__image {
    width: 100%;
  }

  .advanSlider {
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
    padding: 0 14px;
  }

  .advanSlider__wrap {
    display: flex;
    flex-wrap: nowrap;
    grid-gap: unset;
    grid-template-columns: unset;
  }

  .advanSlide {
    flex-shrink: 0;
    width: 260px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .advanSlide::before {
    left: 15px;
  }

  .advanSlide br {
    display: none;
  }

  .tgBlog {
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }

  .tgBlogItem {
    display: block;
    padding: 15px;
  }

  .tgBlogItem__image {
    display: block;
    width: 100px;
    height: 100px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .tgBlogItem__content {
    display: block;
    min-height: auto;
  }

  .tgBlogItem__title {
    display: block;
    margin-bottom: 24px;
  }

  #aboutPresentSection {
    padding-bottom: 0;
  }

  .aboutPresent {
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
    padding: 35px 14px;
    padding-bottom: 0;
  }

  .aboutPresent__content {
    max-width: 100%;
  }

  .aboutPresent__text {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .aboutPresent__btn .btn {
    min-width: auto;
    width: 100%;
  }

  .aboutPresent__image {
	position: static;
    bottom: -37px;
    right: 50%;
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
	display: flex;
	align-items: center;
	margin-top: -24px;
  }

  .partnersList {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .pageReviewsSection .sectionHead__title br {
    display: none;
  }

  .sellingProblems {
    transform: translate(-14px, 0);
    width: calc(100% + 28px);
    padding: 0 14px;
  }

  .sellingProblems__wrap {
    display: flex;
    flex-wrap: nowrap;
    grid-gap: unset;
    grid-template-columns: unset;
  }

  .sellingProblem {
    flex-shrink: 0;
    width: 230px;
    margin-right: 15px;
  }

  .sellingProblem:last-child {
    margin-right: 0;
  }

  .stepsItem {
    position: static;
    top: unset;
    left: unset;
    display: block;
    padding: 15px;
    padding-top: 20px;
    margin-bottom: 15px;
  }

  .stepsItem__left {
    margin-bottom: 25px;
  }

  .stepsItem__title {
    margin-bottom: 15px;
  }

  .stepsItem__time {
    min-width: 180px;
  }

  .stepsItem__right {
    width: 100%;
    margin: 0;
  }

  .stepsItem__text {
    margin-bottom: 10px;
  }

  .stepsItem__digit {
    font-size: 50px;
  }

  .stepsItem__btn {
    margin-top: 15px;
  }

  .executionSolve {
    display: block;
  }

  .executionSolve__image {
    width: 100%;
    display: block;
  }

  .executionSolve__image::before {
    content: "";
    display: block;
    padding-top: 75%;
  }

  .executionSolve__content {
    background: var(--white);
    padding: 24px 10px;
    padding-top: 0;
    color: var(--base);
  }

  .executionSolve__item {
    padding-left: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .executionSolve__item::before {
    width: 10px;
    height: 10px;
    background-image: url("assets/img/icons/banner-list.svg");
  }

  .teamSection__title {
    padding: 45px 10px;
    padding-bottom: 0;
  }

  .teamList {
    bottom: auto;
    top: 207px;
    left: 0;
    width: 100%;
    padding: 0 10px;
  }

  .teamList__wrap {
    justify-content: center;
    margin-bottom: 20px;
  }

  .teamList__item {
    margin-right: 12px;
  }

  .teamList__item img {
    width: 65px;
    height: 65px;
  }

  .teamList__arrows {
    justify-content: center;
  }

  .teamSlide {
    min-height: 754px;
  }

  .teamSlide__text {
    top: 109px;
    left: 10px;
    width: 240px;
  }

  .teamSlide__image {
    top: 355px;
    width: 430px;
  }

  .teamSlide__bottom {
    left: 10px;
    width: calc(100% + 20px);
    display: block;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--purpur);
  }

  .btn:hover {
    background: var(--purpur);
    color: var(--white);
    transform: scale(1.025);
  }

  .btn_white:hover {
    background: #cccccc;
    color: var(--base);
  }

  .btn_bor:hover {
    background: var(--white);
    color: var(--base);
  }

  .btn_bor2:hover {
    background: var(--base);
    color: var(--white);
  }

  .readMoreBtn__text span {
    position: relative;
  }

  .readMoreBtn__text span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 1px;
    background: var(--base);
    opacity: 0;
    transition: 0.25s;
  }

  .readMoreBtn:hover .readMoreBtn__text span::after {
    width: 100%;
    opacity: 1;
  }

  .readMoreBtn:hover .readMoreBtn__icon {
    transform: scale(1.25);
  }

  .arrow_prev:hover {
    transform: translate(-4px, 0);
  }

  .arrow_next:hover {
    transform: translate(4px, 0);
  }

  .checkbox a:hover {
    color: var(--white);
  }

  .checkbox_dark a:hover {
    color: var(--base);
  }

  .modal__close:hover img {
    transform: rotate(-90deg);
  }

  .menu__item:hover {
    color: var(--purpur);
  }

  .menu__item:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .footerMenu__item:hover {
    color: var(--white);
  }

  .footerMenu__item:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .footerContacts__phone a:hover {
    color: #DEDEDE;
  }

  .footerContacts__callback:hover {
    color: var(--white);
  }

  .footerSocial__item:hover {
    transform: scale(1.05);
    border-color: var(--white);
    color: var(--white);
  }

  .footerBottom a:hover {
    color: var(--white);
    text-decoration: underline;
  }

  .faqItem__head:hover::after {
    transform: scale(1.2) translate(0, -50%);
  }

  .smiItem {
    position: relative;
  }

  .smiItem::after {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    background: var(--purpur);
    opacity: 0;
    transition: 0.4s;
  }

  .smiItem:hover::after {
    width: 100%;
    height: 4px;
    opacity: 1;
  }

  .pageVideoPlay:hover {
    background: var(--white);
  }

  .pageVideoPlay:hover svg {
    fill: var(--base);
  }

  .tgBlogItem__more span {
    position: relative;
  }

  .tgBlogItem__more span::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 1px;
    background: var(--purpur);
    opacity: 0;
    transition: 0.25s;
  }

  .tgBlogItem__more:hover {
    color: var(--purpur);
  }

  .tgBlogItem__more:hover::after {
    top: -5px;
    right: -2px;
  }

  .tgBlogItem__more:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .teamList__item:not(.active):hover {
    transform: scale(1.05);
  }
}