

/* Start:/local/templates/2025/js/wow/animate.css?175002000157095*/
@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

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

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* End */


/* Start:/local/templates/2025/js/fancybox/fancybox.css?174998570225343*/
:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0px)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}
/* End */


/* Start:/local/templates/2025/scss/style.css?175028654138830*/
@font-face {
  font-family: "TT Hoves Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/local/templates/2025/scss/../fonts/tt-hoves-pro/tt-hoves-pro-demibold.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border: none;
  max-width: 100%;
}

a {
  color: #222;
  text-decoration: none;
  transition: 0.3s all;
}

body {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: #222;
  background: #F7F7F7;
  text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
}

.wow {
  visibility: hidden;
}

.wrap {
  width: 100%;
  max-width: 1440px;
  padding: 0 32px;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.btn {
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #1E549C;
  background: transparent;
  border: 1px solid #1E549C;
  border-radius: 8px;
  padding: 26px 70px 26px 34px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover {
  color: rgba(30, 84, 156, 0.8);
  border-color: rgba(30, 84, 156, 0.8);
}
.btn:hover span:before {
  opacity: 0.8;
}
.btn span {
  position: relative;
}
.btn span:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: -40px;
  background: url("/local/templates/2025/scss/../images/svg/btn-icon.svg") no-repeat center;
  transition: 0.3s all;
}
.btn--white {
  color: #FFF;
  border-color: #FFF;
}
.btn--white:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn--white span:before {
  background-image: url("/local/templates/2025/scss/../images/svg/btn-icon--white.svg");
}

.input {
  display: block;
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 8px;
  padding: 0 32px;
  height: 72px;
  line-height: 72px;
  width: 100%;
  font-family: "Arimo", sans-serif;
  font-size: 19px;
  color: #666;
}
.input--textarea {
  resize: none;
  height: 193px;
  line-height: 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.form-row {
  display: flex;
  justify-content: space-between;
}
.form-row + .form-row {
  margin-top: 8px;
}
.form-row .form-input {
  width: 100%;
  flex: 0 0 100%;
}
.form-row--2 .form-input {
  width: calc(50% - 4px);
  flex: 0 0 calc(50% - 4px);
}
.form-submit {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-submit .btn {
  width: 230px;
  flex: 0 0 230px;
}
.form-submit p {
  width: calc(100% - 230px);
  flex: 0 0 calc(100% - 230px);
  font-size: 13px;
  line-height: 20px;
  padding-left: 32px;
  color: #666;
}

h1, .h1 {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 88px;
  line-height: 92px;
  text-transform: uppercase;
  margin-bottom: 80px;
}

h2, .h2 {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 64px;
  text-transform: uppercase;
  margin-bottom: 56px;
}

h3, .h3 {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
}

h4, .h4 {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 24px;
}

h5, .h5 {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.header {
  position: relative;
  padding: 23px 0;
  background: transparent;
}
.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo span {
  display: block;
  width: 207px;
  height: 40px;
  background: url("/local/templates/2025/scss/../images/logo.png") no-repeat center;
  background-size: 100% auto;
}
.header-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-burger {
  position: relative;
  width: 106px;
  height: 48px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
}
.header-burger:hover {
  background: rgba(255, 255, 255, 0.35);
}
.header-burger span {
  position: absolute;
  top: 16px;
  left: 25px;
  display: block;
  width: 55px;
  height: 4px;
  border-radius: 8px;
  background: #FFF;
  transition: all 0.3s;
}
.header-burger span + span {
  top: 28px;
}
.header-search {
  margin-right: 24px;
  height: 32px;
}
.header-search svg {
  position: relative;
}
.header-search svg path {
  transition: all 0.3s;
}
.header-phone {
  position: relative;
  margin-right: 48px;
}
.header-phone__link {
  display: block;
  font-weight: 600;
  font-size: 13px;
  line-height: 20px;
  color: #FFF;
}
.header-phone__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.header-phone__callback {
  display: block;
  margin-top: -2px;
  color: #FFF;
}
.header-phone__callback:hover {
  color: rgba(255, 255, 255, 0.8);
}
.header-phone:before {
  content: "";
  height: 32px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: -24px;
}
.header-lang {
  position: relative;
  margin-right: 48px;
  color: #FFF;
  display: flex;
  align-items: center;
}
.header-lang span {
  margin-right: 2px;
  margin-bottom: 0;
}
.header-lang:before {
  content: "";
  height: 32px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  margin-top: -16px;
  right: -24px;
}

.footer {
  background: #1B2126;
  padding: 40px 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
}
.footer-address {
  width: 50%;
  flex: 0 0 50%;
  padding-right: 3.5%;
  color: #FFF;
}
.footer-address__text {
  margin-bottom: 16px;
  max-width: 480px;
}
.footer-address__link {
  position: relative;
  color: #FFF;
}
.footer-address__link:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  right: -32px;
  background: url("/local/templates/2025/scss/../images/svg/btn-icon--white.svg") no-repeat center;
  transition: all 0.3s;
}
.footer-address__link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-address__link:hover:before {
  opacity: 0.8;
}
.footer-nav {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 3.5%;
  display: flex;
  justify-content: space-between;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-nav p + p {
  margin-top: 12px;
}
.footer-menu {
  display: flex;
}
.footer-menu__col + .footer-menu__col {
  padding-left: 56px;
}
.footer-contacts {
  text-align: right;
  white-space: nowrap;
}
.footer-bottom {
  padding-top: 80px;
  display: flex;
  align-items: center;
}
.footer-copyright {
  width: 50%;
  flex: 0 0 50%;
  padding-right: 3.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-copyright .prominado {
  display: block;
  width: 100px;
}
.footer-callback {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 3.5%;
}
.footer-callback .btn {
  width: 100%;
  flex: 0 0 100%;
}
.footer-logo {
  width: 220px;
  flex: 0 0 220px;
}
.footer-logo img {
  display: block;
  width: 220px;
}

.container {
  margin-top: -94px;
}

.text-indent {
  text-indent: 80px;
}

.title-top {
  padding-top: 94px;
  height: 400px;
  background: url("/local/templates/2025/scss/../images/activity-bg.jpg") no-repeat center;
  background-size: cover;
}
.title-top h1 {
  color: #FFF;
  margin-bottom: 0;
  margin-top: 98px;
}

.breadcrumbs {
  display: flex;
  padding: 24px 0;
}
.breadcrumbs > * {
  position: relative;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs > * + * {
  margin-left: 28px;
}
.breadcrumbs a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumbs a:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E6F0FA;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: -20px;
}

.menu-links {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
}

.menu-link {
  color: #000;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 999px;
}
.menu-link.active, .menu-link:hover {
  color: #FFF;
  background: #1E549C;
  border-color: #1E549C;
}

.fancybox__backdrop {
  background: rgba(27, 33, 38, 0.7);
}
.fancybox__content {
  color: #222;
}
.fancybox__slide {
  padding: 12px;
}

.popup {
  display: none;
  border-radius: 8px;
  max-width: 600px;
  padding: 24px 24px 32px;
}
.popup .is-close-btn {
  display: none !important;
}
.popup--form {
  background: #E6F0FA;
}
.popup--form .popup-title {
  margin-bottom: 24px;
}
.popup-close {
  width: 48px;
  height: 48px;
  background: url("/local/templates/2025/scss/../images/svg/close.svg") no-repeat center;
  background-size: 24px 24px;
  position: absolute;
  top: 0;
  right: 0;
  outline: none;
}
.popup-label {
  display: inline-block;
  padding: 4px 12px;
  color: #FFF;
  background: #47B247;
  border-radius: 4px;
  margin-bottom: 56px;
}
.popup-title {
  margin-bottom: 0;
}

.burger-menu {
  display: none;
  position: fixed;
  top: 94px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
}
.burger-menu:before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F7F7F7;
}
.burger-menu:after {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #E6F0FA;
}
.burger-menu .wrap {
  position: relative;
  height: 100%;
}
.burger-menu .wrap:before {
  content: "";
  width: 40%;
  height: 100%;
  min-width: 550px;
  position: absolute;
  top: 0;
  right: 0;
  background: #E6F0FA;
}
.burger-menu__container {
  display: flex;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.burger-menu__left {
  width: 60%;
  flex: 0 0 60%;
}
.burger-menu__right {
  width: 40%;
  flex: 0 0 40%;
  position: relative;
  padding-bottom: 56px;
}
.burger-menu__right-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.burger-menu__nav {
  margin-top: 38px;
  padding-right: 100px;
}
.burger-menu__form, .burger-menu__copyright {
  max-width: 467px;
  min-width: 467px;
  float: right;
}
.burger-menu__form .h3 {
  margin-bottom: 32px;
}
.burger-menu__form a {
  display: block;
  width: 48px;
}
.burger-menu__form a:hover svg {
  opacity: 0.8;
}
.burger-menu__form svg {
  display: block;
  transition: all 0.3s;
}
.burger-menu__copyright {
  margin-top: 56px;
  font-size: 13px;
  line-height: 20px;
  color: #666;
}
.burger-menu__item {
  position: relative;
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 16px;
}
.burger-menu__item a:hover {
  color: rgba(34, 34, 34, 0.8);
}
.burger-menu__item sup {
  position: absolute;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Arimo", sans-serif;
}
.burger-menu__item--big {
  font-size: 56px;
  line-height: 64px;
}
.burger-menu__item--big + .burger-menu__item:not(.burger-menu__item--big) {
  margin-top: 48px;
}
.burger-menu__callback {
  display: none;
}

.is-burger-active {
  overflow: hidden;
}
.is-burger-active .burger-menu {
  display: block;
}
.is-burger-active .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.is-burger-active .header .wrap {
  position: relative;
  z-index: 1;
}
.is-burger-active .header .wrap:before {
  content: "";
  width: 40%;
  height: calc(100% + 46px);
  min-width: 550px;
  position: absolute;
  top: -23px;
  right: 0;
  background: #E6F0FA;
}
.is-burger-active .header:before {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F7F7F7;
}
.is-burger-active .header:after {
  content: "";
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #E6F0FA;
}
.is-burger-active .header-logo span {
  background-image: url("/local/templates/2025/scss/../images/logo--blue.png");
}
.is-burger-active .header-lang {
  color: #222;
}
.is-burger-active .header-lang path {
  fill: #222;
}
.is-burger-active .header-lang:before {
  background: rgba(0, 0, 0, 0.14);
}
.is-burger-active .header-phone:before {
  background: rgba(0, 0, 0, 0.14);
}
.is-burger-active .header-phone__link, .is-burger-active .header-phone__callback {
  color: #222;
}
.is-burger-active .header-phone__link:hover, .is-burger-active .header-phone__callback:hover {
  color: rgba(34, 34, 34, 0.8);
}
.is-burger-active .header-search path {
  stroke: #222;
}
.is-burger-active .header-burger span {
  top: 22px !important;
  background: #1E549C;
}

@media (max-width: 1199px) {
  .footer-address, .footer-copyright {
    padding-right: 1.5%;
  }
  .footer-nav, .footer-callback {
    padding-left: 1.5%;
  }
  .footer-copyright {
    gap: 16px;
  }
  .footer-logo {
    width: 180px;
    flex: 0 0 180px;
  }
  .footer-logo img {
    width: 180px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }
  .btn {
    width: 100%;
  }
  .wrap {
    padding: 0 12px;
  }
  .text-indent {
    text-indent: 0;
  }
  h1, .h1 {
    font-size: 34px;
    line-height: 56px;
    margin-bottom: 32px;
  }
  h2, .h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 56px;
  }
  h3, .h3 {
    font-size: 23px;
    line-height: 34px;
  }
  h4, .h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  h5, .h5 {
    font-size: 15px;
  }
  .input {
    font-size: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .form-row {
    flex-wrap: wrap;
  }
  .form-row--2 .form-input {
    width: 100%;
    flex: 0 0 100%;
  }
  .form-row--2 .form-input + .form-input {
    margin-top: 8px;
  }
  .form-submit {
    flex-wrap: wrap;
  }
  .form-submit .btn {
    order: 1;
    width: 100%;
    flex: 0 0 100%;
  }
  .form-submit p {
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    margin-bottom: 32px;
  }
  .header {
    padding: 14px 0;
  }
  .header-lang, .header-phone, .header-search {
    display: none;
  }
  .header-burger {
    width: 80px;
    height: 36px;
  }
  .header-burger span {
    width: 40px;
    height: 2px;
    left: 20px;
    top: 13px;
  }
  .header-burger span + span {
    top: 22px;
  }
  .header-logo span {
    width: 166px;
    height: 32px;
  }
  .footer {
    padding: 56px 0 32px;
  }
  .footer-top {
    display: block;
  }
  .footer-address {
    width: 100%;
    padding-right: 0;
  }
  .footer-address__text {
    max-width: 100%;
  }
  .footer-address__link {
    font-size: 14px;
    line-height: 20px;
  }
  .footer-nav {
    width: 100%;
    margin-top: 56px;
    padding: 32px 0 0;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .footer-contacts {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 32px;
    padding-top: 32px;
  }
  .footer-bottom {
    padding-top: 56px;
    flex-wrap: wrap;
  }
  .footer-copyright {
    width: 100%;
    flex: 0 0 100%;
    padding-right: 0;
    gap: 0;
    flex-wrap: wrap;
  }
  .footer-copyright__text {
    width: calc(100% - 143px);
    flex: 0 0 calc(100% - 143px);
    padding-left: 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .footer-copyright__text--prominado {
    width: 100%;
    flex: 0 0 100%;
    padding: 24px 0 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
  }
  .footer-copyright .prominado {
    width: 100%;
  }
  .footer-callback {
    width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    order: -1;
    margin-bottom: 56px;
  }
  .footer-logo {
    width: 143px;
    flex: 0 0 143px;
  }
  .footer-logo img {
    width: 143px;
  }
  .container {
    margin-top: -64px;
  }
  .breadcrumbs {
    display: none;
  }
  .title-top {
    padding-top: 64px;
    height: 320px;
  }
  .title-top h1 {
    margin-top: 165px;
  }
  .menu-links {
    gap: 4px;
    margin-bottom: 48px;
    overflow: auto;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .menu-link {
    white-space: nowrap;
  }
  .burger-menu {
    top: 64px;
    background: #F7F7F7;
  }
  .burger-menu:before, .burger-menu:after {
    content: none;
  }
  .burger-menu .wrap:before {
    content: none;
  }
  .burger-menu__container {
    display: block;
    overflow: auto;
  }
  .burger-menu__left {
    width: 100%;
  }
  .burger-menu__right {
    display: none;
  }
  .burger-menu__nav {
    margin-top: 28px;
    padding-right: 0;
  }
  .burger-menu__item {
    font-size: 23px !important;
    line-height: 34px !important;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
  }
  .burger-menu__item sup {
    display: none;
  }
  .burger-menu__callback {
    display: block;
    text-align: center;
    padding-top: 32px;
    margin-bottom: 32px;
  }
  .burger-menu__callback .h4 {
    display: block;
    margin-top: 24px;
    margin-bottom: 0;
    color: #1E549C;
  }
  .is-burger-active .header {
    background: #F7F7F7;
  }
  .is-burger-active .header .wrap:before {
    content: none;
  }
  .is-burger-active .header:before, .is-burger-active .header:after {
    content: none;
  }
  .is-burger-active .header-logo span {
    display: none;
  }
  .is-burger-active .header-burger {
    background: #E6F0FA;
  }
  .is-burger-active .header-burger span {
    top: 17px !important;
    background: #222;
  }
  .is-burger-active .header-search {
    display: block;
    position: absolute;
    width: 80px;
    height: 36px;
    top: 50%;
    margin: -18px 0 0;
    right: 100px;
    z-index: 1;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
  }
  .is-burger-active .header-search svg {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .is-burger-active .header-lang {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 83px;
    height: 36px;
    top: 50%;
    margin: -18px 0 0;
    left: 12px;
    z-index: 1;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.14);
  }
  .is-burger-active .header-lang:before {
    content: none;
  }
}
.loading {
  overflow: hidden;
}

.loader {
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
.loader-logo {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -24px;
  left: 58.55%;
  margin-left: -249px;
  width: 249px;
  height: 48px;
  background: url("/local/templates/2025/scss/../images/logo--loader.png") no-repeat center;
  background-size: auto 100%;
  opacity: 1;
  transition: 0.3s all;
}
.loader span {
  position: relative;
  height: 100%;
}
.loader span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1E549C;
  transition: 1.5s all 0.5s;
}
.loader span:nth-of-type(1) {
  width: 31.25%;
  flex: 0 0 31.25%;
}
.loader span:nth-of-type(2) {
  width: 27.3%;
  flex: 0 0 27.3%;
}
.loader span:nth-of-type(3) {
  width: 16.7%;
  flex: 0 0 16.7%;
}
.loader span:nth-of-type(4) {
  width: 24.75%;
  flex: 0 0 24.75%;
}
.loader.animate .loader-logo {
  opacity: 0;
}
.loader.animate span:before {
  width: 0;
}

.main-video {
  height: 100vh;
  min-height: 550px;
  background: url("/local/templates/2025/scss/../images/main-video-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 157px 0 56px;
}
.main-video .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-video__title {
  position: relative;
  font-size: 110px;
  line-height: 120px;
  color: #FFF;
  max-width: 1000px;
  margin-bottom: 30px;
}
.main-video__title-img {
  display: none;
}
.main-video__icon {
  position: relative;
  top: 20px;
  display: inline-block;
  width: 114px;
  height: 115px;
  background: url("/local/templates/2025/scss/../images/svg/main-video-icon.svg") no-repeat center;
  background-size: 100% auto;
  z-index: 1;
  margin-top: -14px;
  margin-left: 24px;
}
.main-video__play {
  position: relative;
  top: 20px;
  display: inline-block;
  width: 204px;
  height: 112px;
  background: url("/local/templates/2025/scss/../images/svg/main-video-play.svg") no-repeat center;
  background-size: 100% auto;
  backdrop-filter: blur(28px);
  border-radius: 104px;
  margin-top: -14px;
  margin-left: -26px;
  cursor: pointer;
  transition: 0.3s all;
}
.main-video__play:hover {
  opacity: 0.9;
}
.main-video .btn {
  width: 230px;
}
.main-about {
  padding: 56px 0 80px;
  background: url("/local/templates/2025/scss/../images/main-about-bg.png") no-repeat center;
  background-size: cover;
}
.main-about__container {
  padding-left: 25%;
}
.main-about__text {
  max-width: 875px;
}
.main-about__text .btn {
  margin-top: 56px;
}
.main-about__columns {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
.main-about__columns p {
  width: calc(33.3333333333% - 10.6666666667px);
  flex: 0 0 calc(33.3333333333% - 10.6666666667px);
  font-weight: 600;
  color: #666;
}
.main-why-us {
  position: relative;
  padding: 384px 0 120px;
  color: #FFF;
  overflow: hidden;
}
.main-why-us .wrap {
  position: relative;
  z-index: 1;
}
.main-why-us .h5 {
  display: none;
}
.main-why-us__bg {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.main-why-us__bg span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 100%;
}
.main-why-us__bg span:nth-of-type(1) {
  background-image: url("/local/templates/2025/scss/../images/main-why-us-bg-2.jpg");
  transition: 2.5s all;
}
.main-why-us__bg span:nth-of-type(2) {
  background-image: url("/local/templates/2025/scss/../images/main-why-us-bg.jpg");
  transition: 2s all;
}
.main-why-us__img {
  display: none;
}
.main-why-us__title {
  text-align: center;
}
.main-why-us__columns {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 56px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.main-why-us__column {
  width: calc(33.3333333333% - 10.6666666667px);
  flex: 0 0 calc(33.3333333333% - 10.6666666667px);
  max-width: 330px;
}
.main-why-us__column p {
  font-weight: 600;
}
.main-why-us.animate .main-why-us__bg span:nth-of-type(1) {
  transform: translateX(-50%);
}
.main-why-us.animate .main-why-us__bg span:nth-of-type(2) {
  transform: translateX(-100%);
}
.main-work {
  margin-top: 16px;
}
.main-work__list {
  display: none;
}
.main-work__container {
  display: flex;
}
.main-work__column {
  width: 50%;
  flex: 0 0 50%;
}
.main-work__video {
  background: url("/local/templates/2025/scss/../images/main-work-bg.jpg") no-repeat center;
  background-size: cover;
  padding-top: 56px;
}
.main-work__video .wrap {
  position: relative;
  height: 100%;
  max-width: 720px;
  float: right;
}
.main-work__video .h5 {
  color: #FFF;
  max-width: 180px;
}
.main-work__video .main-video__play {
  margin: 0;
  top: auto;
  position: absolute;
  bottom: 56px;
  left: 32px;
}
.main-work__text .wrap {
  position: relative;
  max-width: 720px;
  float: left;
  padding-top: 56px;
  padding-bottom: 56px;
}
.main-work__text .wrap:after {
  content: "";
  width: auto;
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
}
.main-work__text .btn {
  margin-top: 136px;
  float: right;
}
.main-partnership {
  padding: 56px 0 120px;
}
.main-partnership .h5 {
  max-width: 180px;
}
.main-partnership__title {
  max-width: 770px;
  margin-bottom: 160px;
}
.main-partnership__numbers {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  padding-bottom: 80px;
}
.main-partnership__number {
  width: calc(33.3333333333% - 10.6666666667px);
  flex: 0 0 calc(33.3333333333% - 10.6666666667px);
  max-width: 350px;
}
.main-partnership__number span {
  position: relative;
  display: block;
  width: 135px;
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 100px;
  text-align: center;
  color: #1E549C;
  border: 1px solid #1E549C;
  border-radius: 999px;
  margin-bottom: 32px;
}
.main-partnership__number span:before, .main-partnership__number span:after {
  content: "";
  width: 36px;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  margin-left: -18px;
}
.main-partnership__number span:before {
  top: -1px;
}
.main-partnership__number span:after {
  bottom: -1px;
}
.main-partnership__number .h4 {
  margin-bottom: 0;
}
.main-partnership__bottom-text {
  margin-top: 80px;
  margin-bottom: 0;
  max-width: 1000px;
}
.main-eco {
  padding: 56px 0 120px;
  background: url("/local/templates/2025/scss/../images/main-eco-bg.jpg") no-repeat center;
  background-size: cover;
  color: #FFF;
}
.main-eco__container {
  padding-left: calc(50% + 32px);
}
.main-eco__container .btn {
  margin-top: 56px;
}
.main-eco__img {
  display: none;
}
.main-disposal {
  background: #E6F0FA;
  padding: 56px 0 32px;
}
.main-disposal__container {
  padding-left: calc(50% + 32px);
}
.main-disposal__container .h3 {
  margin-bottom: 0;
}
.main-disposal__container .btn {
  margin-top: 56px;
}
.main-disposal__img {
  margin-top: 56px;
}
.main-disposal__img-mobile {
  display: none;
}
.main-disposal__img img {
  display: block;
  max-width: 330px;
}
.main-development {
  padding: 56px 0 80px;
}
.main-development .h5 {
  margin-bottom: 67px;
  max-width: 180px;
}
.main-development__img {
  display: block;
  margin: 0 auto 56px;
  max-width: 432px;
  width: 100%;
}
.main-development__title {
  margin-bottom: 120px;
}
.main-development__title .blue {
  color: #1E549C;
}
.main-development__title .green {
  color: #008000;
}
.main-development__container {
  padding-left: calc(50% + 32px);
}
.main-development__container .btn {
  margin-top: 56px;
}
.main-cooperation {
  background: #E6F0FA;
  padding: 56px 0 80px;
}
.main-cooperation__container {
  padding-left: 25%;
}
.main-cooperation__title {
  max-width: 800px;
}
.main-cooperation__form {
  display: flex;
  justify-content: space-between;
}
.main-cooperation__form-text {
  width: 38%;
  flex: 0 0 38%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-cooperation__form-text p {
  max-width: 280px;
}
.main-cooperation__form-text img {
  display: block;
  max-width: 250px;
  width: 100%;
}
.main-cooperation__form-wrapper {
  width: 62%;
  flex: 0 0 62%;
}

@media (max-width: 991px) {
  .loader-logo {
    left: 50%;
    margin-left: -125px;
  }
  .loader span:nth-of-type(1) {
    width: 100%;
    flex: 0 0 100%;
  }
  .loader span:nth-of-type(2), .loader span:nth-of-type(3), .loader span:nth-of-type(4) {
    display: none;
  }
  .main-video {
    padding: 80px 0 16px;
  }
  .main-video .btn {
    width: 100%;
  }
  .main-video .wrap {
    justify-content: flex-end;
  }
  .main-video__title {
    font-size: 0;
    line-height: 0;
    margin-bottom: 56px;
  }
  .main-video__title-img {
    display: block;
    margin-bottom: 32px;
  }
  .main-video__title-img img {
    display: block;
    width: 100%;
  }
  .main-video__icon {
    width: 72px;
    height: 72px;
    margin: 0;
    top: 0;
  }
  .main-video__play {
    width: 128px;
    height: 70px;
    margin: 0 0 0 -16px;
    top: 0;
    z-index: 1;
    backdrop-filter: blur(18px);
  }
  .main-about {
    background-image: none;
  }
  .main-about__container {
    padding-left: 0;
  }
  .main-about__text {
    max-width: 100%;
  }
  .main-about__columns {
    margin-top: 40px;
    margin-bottom: -16px;
    display: block;
  }
  .main-about__columns p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    width: 100%;
    padding: 16px 0;
  }
  .main-about__columns p + p {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
  }
  .main-why-us {
    padding: 0 0 80px;
    background: #E6F0FA;
    color: #222;
  }
  .main-why-us .h5 {
    display: block;
  }
  .main-why-us__bg {
    display: none;
  }
  .main-why-us__img {
    display: block;
    background: url("/local/templates/2025/scss/../images/main-why-us-bg.jpg") no-repeat center;
    background-size: cover;
    height: 0;
    padding-top: 88%;
    margin-bottom: 32px;
  }
  .main-why-us__title {
    display: none;
  }
  .main-why-us__columns {
    border-top: none;
    padding: 0;
    display: block;
  }
  .main-why-us__column {
    width: 100%;
    max-width: 100%;
  }
  .main-why-us__column br {
    display: none;
  }
  .main-why-us__column .h3 {
    margin-bottom: 12px;
  }
  .main-why-us__column p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .main-why-us__column + .main-why-us__column {
    margin-top: 32px;
  }
  .main-work {
    margin-top: 0;
  }
  .main-work__container {
    display: block;
  }
  .main-work__column {
    width: 100%;
  }
  .main-work__video {
    position: relative;
    height: 0;
    padding-top: 88%;
  }
  .main-work__video .wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    float: none;
    padding-top: 24px;
  }
  .main-work__video .main-video__play {
    bottom: 24px;
    left: 12px;
    width: 132px;
    height: 72px;
  }
  .main-work__text .wrap {
    max-width: 100%;
    float: none;
    padding-top: 32px;
    padding-bottom: 80px;
  }
  .main-work__text .wrap:after {
    left: 0;
    right: 0;
  }
  .main-work__text .btn {
    margin-top: 40px;
    float: none;
  }
  .main-work__list {
    display: block;
    margin-top: 56px;
  }
  .main-work__list .h4 {
    position: relative;
    padding-left: 28px;
  }
  .main-work__list .h4:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #1E549C;
    border-radius: 100%;
    background: transparent;
  }
  .main-partnership {
    padding-bottom: 80px;
  }
  .main-partnership__title {
    max-width: 100%;
    margin-bottom: 56px;
  }
  .main-partnership__numbers {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding-bottom: 56px;
  }
  .main-partnership__number {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
  }
  .main-partnership__number + .main-partnership__number {
    margin-top: 56px;
  }
  .main-partnership__number span {
    width: 80px;
    flex: 0 0 80px;
    font-size: 40px;
    line-height: 60px;
    margin: 0;
  }
  .main-partnership__number span:before, .main-partnership__number span:after {
    width: 26px;
    margin-left: -13px;
  }
  .main-partnership__number .h4 {
    width: calc(100% - 80px);
    flex: 0 0 calc(100% - 80px);
    padding-left: 24px;
  }
  .main-partnership__bottom-text {
    margin-top: 56px;
    max-width: 100%;
  }
  .main-eco {
    padding: 0 0 80px;
    background: none;
    color: #222;
  }
  .main-eco__container {
    padding-left: 0;
  }
  .main-eco__container .btn {
    margin-top: 56px;
    color: #1E549C;
    border: 1px solid #1E549C;
  }
  .main-eco__container .btn:hover {
    color: rgba(30, 84, 156, 0.8);
    border-color: rgba(30, 84, 156, 0.8);
  }
  .main-eco__container .btn span:before {
    background-image: url("/local/templates/2025/scss/../images/svg/btn-icon.svg");
  }
  .main-eco__img {
    display: block;
    height: 0;
    padding-top: 88%;
    background: url("/local/templates/2025/scss/../images/main-eco-bg.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 32px;
  }
  .main-disposal {
    padding: 0 0 80px;
  }
  .main-disposal__container {
    padding-left: 0;
  }
  .main-disposal__img {
    display: none;
  }
  .main-disposal__img-mobile {
    display: block;
    height: 0;
    padding-top: 88%;
    background: url("/local/templates/2025/scss/../images/main-disposal-img.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 32px;
  }
  .main-development .h5 {
    margin-bottom: 24px;
  }
  .main-development__img {
    margin-bottom: 24px;
    padding: 38px 44px;
  }
  .main-development__title {
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 40px;
  }
  .main-development__container {
    padding-left: 0;
  }
  .main-cooperation__container {
    padding-left: 0;
  }
  .main-cooperation__title {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .main-cooperation__form {
    display: block;
  }
  .main-cooperation__form-text {
    width: 100%;
    padding-right: 0;
    display: block;
  }
  .main-cooperation__form-text p {
    max-width: 100%;
  }
  .main-cooperation__form-text img {
    display: none;
  }
  .main-cooperation__form-wrapper {
    width: 100%;
    margin-top: 56px;
  }
}
.activity-top {
  padding: 32px 0 80px;
  background: url("/local/templates/2025/scss/../images/main-about-bg.png") no-repeat center;
  background-size: cover;
}
.activity-top__container {
  padding-left: 25%;
}
.activity-top__container .h3 {
  margin-bottom: 0;
}
.activity-100 {
  background: #E6F0FA;
  padding: 72px 0;
}
.activity-100 img {
  display: block;
  width: auto;
  height: 160px;
  margin-bottom: 56px;
}
.activity-100 .h3 {
  max-width: 650px;
  float: right;
}
.activity-100:after {
  content: "";
  display: block;
  clear: both;
}
.activity-mission__container {
  display: flex;
  justify-content: space-between;
}
.activity-mission__column {
  width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
}
.activity-mission__column .wrap {
  max-width: 720px;
  float: right;
}
.activity-mission__img {
  background: url("/local/templates/2025/scss/../images/activity-mission-img.jpg") no-repeat center;
  background-size: cover;
  height: 640px;
}
.activity-mission__text {
  padding-top: 56px;
}
.activity-mission__text-wrapper {
  max-width: 560px;
}
.activity-links {
  padding: 80px 0;
}
.activity-links__row {
  display: flex;
  justify-content: space-between;
}
.activity-links__item {
  position: relative;
  width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
  background: #E6F0FA;
  padding: 32px 32px 120px;
}
.activity-links__item .h3 {
  margin-bottom: 16px;
  max-width: 280px;
}
.activity-links__item .btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
}
.activity-work__container {
  display: flex;
  justify-content: space-between;
}
.activity-work__column {
  width: calc(50% - 8px);
  flex: 0 0 calc(50% - 8px);
}
.activity-work__video {
  background: url("/local/templates/2025/scss/../images/activity-work-img.jpg") no-repeat center;
  background-size: cover;
  padding-top: 56px;
}
.activity-work__video .wrap {
  position: relative;
  height: 100%;
  max-width: 720px;
  float: right;
}
.activity-work__video .h5 {
  color: #FFF;
  max-width: 180px;
}
.activity-work__video .main-video__play {
  margin: 0;
  top: auto;
  position: absolute;
  bottom: 56px;
  left: 32px;
}
.activity-work__text-wrapper {
  max-width: 645px;
}
.activity-work__text .wrap {
  max-width: 720px;
  float: left;
  padding-top: 56px;
  padding-bottom: 56px;
}
.activity-work__text .btn {
  margin-top: 104px;
  float: right;
}

@media (max-width: 991px) {
  .activity-top {
    padding-top: 16px;
    background: none;
  }
  .activity-top__container {
    padding-left: 0;
  }
  .activity-100 {
    padding: 56px 0 80px;
  }
  .activity-100 img {
    width: 100%;
    height: auto;
  }
  .activity-100 .h3 {
    max-width: 100%;
    float: none;
  }
  .activity-mission__container {
    display: block;
  }
  .activity-mission__column {
    width: 100%;
  }
  .activity-mission__column .wrap {
    max-width: 100%;
    float: none;
  }
  .activity-mission__img {
    height: 0;
    padding-top: 88%;
  }
  .activity-mission__text {
    margin-bottom: 56px;
  }
  .activity-mission__text-wrapper {
    max-width: 100%;
  }
  .activity-links {
    padding: 0;
  }
  .activity-links__row {
    display: block;
    margin-left: -12px;
    margin-right: -12px;
  }
  .activity-links__item {
    width: 100%;
    padding: 56px 12px;
  }
  .activity-links__item + .activity-links__item {
    margin-top: 2px;
  }
  .activity-links__item .h3 {
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 56px;
    max-width: 100%;
  }
  .activity-links__item .btn {
    position: static;
  }
  .activity-work__container {
    display: block;
  }
  .activity-work__column {
    width: 100%;
  }
  .activity-work__video {
    position: relative;
    height: 0;
    padding-top: 88%;
  }
  .activity-work__video .wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    float: none;
    padding-top: 24px;
  }
  .activity-work__video .main-video__play {
    bottom: 24px;
    left: 12px;
    width: 132px;
    height: 72px;
  }
  .activity-work__text-wrapper {
    max-width: 100%;
  }
  .activity-work__text .wrap {
    max-width: 100%;
    float: none;
    padding-top: 32px;
    padding-bottom: 80px;
  }
  .activity-work__text .wrap:after {
    left: 0;
    right: 0;
  }
  .activity-work__text .btn {
    margin-top: 40px;
    float: none;
  }
}
.body--dev .header {
  position: relative;
  z-index: 1;
}
.body--dev .footer {
  display: none;
}

.dev {
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: 110px;
  overflow: hidden;
}
.dev--404 .h1 {
  color: #FFF;
  margin-top: 60px;
}
.dev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(30, 84, 156, 0.9);
}
.dev-bg {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.dev-bg__row {
  position: relative;
  display: flex;
  transform: translateX(0%);
  animation: movingDev 90s linear infinite;
}
.dev-bg__row:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: url("/local/templates/2025/scss/../images/dev-1.jpg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: -100vw;
}
.dev-bg span {
  display: block;
  width: 100vw;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.dev .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.dev img {
  display: block;
  width: 100%;
  margin-bottom: 60px;
}
.dev .h3 {
  max-width: 640px;
  margin-bottom: 56px;
  color: #FFF;
}
.dev-text {
  padding-bottom: 32px;
}
.dev-btns {
  display: flex;
  gap: 8px;
}

@media (max-width: 991px) {
  .dev {
    min-height: 560px;
    padding-top: 185px;
  }
  .dev-bg__row {
    animation: movingDev 60s linear infinite;
  }
  .dev .wrap {
    justify-content: flex-end;
  }
  .dev img {
    margin-bottom: 40px;
  }
  .dev .h3 {
    max-width: 100%;
  }
  .dev-text {
    padding-bottom: 16px;
  }
  .dev-btns {
    display: block;
  }
  .dev-btns .btn + .btn {
    margin-top: 8px;
  }
}
@keyframes movingDev {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=style.css.map */

/* End */
/* /local/templates/2025/js/wow/animate.css?175002000157095 */
/* /local/templates/2025/js/fancybox/fancybox.css?174998570225343 */
/* /local/templates/2025/scss/style.css?175028654138830 */
