
@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(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.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(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.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(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.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(0.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.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;
  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;
  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;
  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;
  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;
  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;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  visibility: hidden;
  pointer-events: none;
}

.modal__wrapper {
  max-width: 100%;
  width: 100%;
}

.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  pointer-events: all;
}

.modal.active .modal__window {
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.modal::before {
  display: block;
  content: "";
  background: RGBA(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.modal__window {
  opacity: 0;
  z-index: 999999;
  position: relative;
  background: #fff;
  width: 600;
  min-height: auto;
  padding: 22px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal__window__close a {
  display: block;
  cursor: hand;
  c\ursor: pointer;
  position: absolute;
  left: 22px;
  top: 13px;
}

.modal__window__title {
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

.modal__window__body {
  margin: auto;
}

.modal__window__body .form__item {
  margin-bottom: 20px;
}

.modal__window__body .form__message__success {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal__window__body .call_reques__form__item, .modal__window__body .form__item__submit {
  text-align: right;
}

:root {
  --color-primary: var(--color-primary);
  --color-primary--rgb: var(--color-primary--rgb);
  --color-secondary: var(--color-secondary);
  --color-secondary--rgb: var(--color-secondary--rgb);
  --color-primary: #FF7A00;
  --color-primary--rgb: 255, 122, 0;
  --color-primary_dark: #BD5A00;
  --color-primary_dark--rgb: 189, 90, 0;
  --color-secondary: #00A3DA;
  --color-secondary--rgb: 0, 163, 218;
  --color-gray: #939394;
  --color-gray--rgb: 147, 147, 148;
  --color-white: #FFFFFF;
  --color-white--rgb: 255, 255, 255;
  --color-black: #1B1B1B;
  --color-black--rgb: 27, 27, 27;
  --color-text: #222222;
  --color-text--rgb: 34, 34, 34;
  --color-header_first: #000;
  --color-header_first--rgb: 0, 0, 0;
  --color-header_second: #444;
  --color-header_second--rgb: 68, 68, 68;
}

input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="hidden"],
input[type="image"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="radio"],
input[type="range"],
input[type="reset"],
input[type="search"],
input[type="submit"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 49px;
  border: solid 1px #8C8C8C;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
  color: #212121;
  max-width: 100%;
  min-width: 50px;
  padding: 0 18px 0;
  width: 526px;
}

input[type="color"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="hidden"]::-webkit-input-placeholder,
input[type="image"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="radio"]::-webkit-input-placeholder,
input[type="range"]::-webkit-input-placeholder,
input[type="reset"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="submit"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
}

input[type="color"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="hidden"]::-moz-placeholder,
input[type="image"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="radio"]::-moz-placeholder,
input[type="range"]::-moz-placeholder,
input[type="reset"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="submit"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
}

input[type="color"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="hidden"]:-ms-input-placeholder,
input[type="image"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="radio"]:-ms-input-placeholder,
input[type="range"]:-ms-input-placeholder,
input[type="reset"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="submit"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
}

input[type="color"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="datetime-local"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="hidden"]::-ms-input-placeholder,
input[type="image"]::-ms-input-placeholder,
input[type="month"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="radio"]::-ms-input-placeholder,
input[type="range"]::-ms-input-placeholder,
input[type="reset"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="submit"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="time"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="week"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
}

input[type="color"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="email"]::placeholder,
input[type="hidden"]::placeholder,
input[type="image"]::placeholder,
input[type="month"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="radio"]::placeholder,
input[type="range"]::placeholder,
input[type="reset"]::placeholder,
input[type="search"]::placeholder,
input[type="submit"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="time"]::placeholder,
input[type="url"]::placeholder,
input[type="week"]::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* identical to box height, or 21px */
  letter-spacing: -0.04em;
}

input[type="color"]:focus, input[type="color"]:focus-visible,
input[type="date"]:focus,
input[type="date"]:focus-visible,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:focus-visible,
input[type="email"]:focus,
input[type="email"]:focus-visible,
input[type="hidden"]:focus,
input[type="hidden"]:focus-visible,
input[type="image"]:focus,
input[type="image"]:focus-visible,
input[type="month"]:focus,
input[type="month"]:focus-visible,
input[type="number"]:focus,
input[type="number"]:focus-visible,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="radio"]:focus,
input[type="radio"]:focus-visible,
input[type="range"]:focus,
input[type="range"]:focus-visible,
input[type="reset"]:focus,
input[type="reset"]:focus-visible,
input[type="search"]:focus,
input[type="search"]:focus-visible,
input[type="submit"]:focus,
input[type="submit"]:focus-visible,
input[type="tel"]:focus,
input[type="tel"]:focus-visible,
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="time"]:focus,
input[type="time"]:focus-visible,
input[type="url"]:focus,
input[type="url"]:focus-visible,
input[type="week"]:focus,
input[type="week"]:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  outline: none;
  color: #212121;
}

select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Remove default arrow */
  background-image: url(...);
  /* Add custom arrow */
  position: relative;
  background: #fff url("../images/svg/icons/select-drop-down.svg") no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: calc(50%);
  padding-right: 45px;
}

textarea {
  height: auto;
  padding: 10px 18px;
  line-height: 140%;
  height: 205px;
}

input[type="file"] {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

input[type="file"] ~ label {
  position: relative;
  color: #8C8C8C;
  padding-left: 23px;
  line-height: 1;
}

input[type="file"] ~ label::before {
  display: inline-block;
  position: absolute;
  content: "";
  background: url("/static/images/svg/icons/file_label.svg") no-repeat center;
  width: 10px;
  height: 15px;
  left: 0;
  top: 2px;
}

input[type="file"] ~ label span {
  display: inline-block;
  color: #29BDAA;
  border-bottom: 1px dashed #29BDAA;
}

.button:not([class^="fancybox"]), button:not([class^="fancybox"]), input[type='submit'] {
  cursor: hand;
  c\ursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  /* identical to box height */
  color: var(--color-primary_dark);
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
}

.button:not([class^="fancybox"]) svg, button:not([class^="fancybox"]) svg, input[type='submit'] svg {
  margin-right: 15px;
  color: var(--color-primary_dark);
}

.button:not([class^="fancybox"]):hover, button:not([class^="fancybox"]):hover, input[type='submit']:hover {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-white);
}

.button:not([class^="fancybox"]):hover svg, button:not([class^="fancybox"]):hover svg, input[type='submit']:hover svg {
  color: var(--color-white);
}

.button:not([class^="fancybox"]):focus, button:not([class^="fancybox"]):focus, input[type='submit']:focus {
  outline: none;
}

.form__row {
  margin-bottom: 25px;
}

input[type='checkbox'] {
  display: none;
}

input[type='checkbox'] ~ label {
  display: inline-block;
  position: relative;
  padding-left: 59px;
}

input[type='checkbox'] ~ label::before {
  content: "";
  display: inline-block;
  cursor: hand;
  c\ursor: pointer;
  height: 16px;
  width: 37px;
  border: solid 1px #8C8C8C;
  border-radius: 10px;
  position: absolute;
  line-height: 0;
  margin-right: 22px;
  left: 0;
  top: 0;
}

input[type='checkbox'] ~ label::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  left: 1px;
  top: 2px;
  -webkit-transform: translate(3px, 2px);
  -ms-transform: translate(3px, 2px);
  transform: translate(3px, 2px);
  background: #8C8C8C;
  border-radius: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

input[type='checkbox']:checked ~ label::before {
  border-color: #29BDAA;
}

input[type='checkbox']:checked ~ label::after {
  background: #29BDAA;
  -webkit-transform: translate(23px, 2px);
  -ms-transform: translate(23px, 2px);
  transform: translate(23px, 2px);
  -webkit-transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

label[for] {
  cursor: hand;
  c\ursor: pointer;
}

label {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  /* or 21px */
  letter-spacing: -0.04em;
  color: #212121;
}

label a {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.form__message__error {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  /* or 19px */
  margin-bottom: 15px;
  color: #BD2929;
}

.form__row.error::before {
  display: block;
  content: "Это поле обязательное:";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  /* or 19px */
  margin-bottom: 5px;
  color: #BD2929;
}

.form__row.error.email::before {
  content: "Введите правильно email:";
}

.form__row.error.checkbox_field::before {
  content: "Согласитесь с условиями ниже:";
}

.form__row.error input[type="color"],
.form__row.error input[type="date"],
.form__row.error input[type="datetime-local"],
.form__row.error input[type="email"],
.form__row.error input[type="hidden"],
.form__row.error input[type="image"],
.form__row.error input[type="month"],
.form__row.error input[type="number"],
.form__row.error input[type="password"],
.form__row.error input[type="radio"],
.form__row.error input[type="range"],
.form__row.error input[type="reset"],
.form__row.error input[type="search"],
.form__row.error input[type="submit"],
.form__row.error input[type="tel"],
.form__row.error input[type="text"],
.form__row.error input[type="time"],
.form__row.error input[type="url"],
.form__row.error input[type="week"],
.form__row.error textarea,
.form__row.error select {
  border: solid 1px #BD2929 !important;
}

ol:not([class]) {
  list-style: none !important;
  padding: 0;
  counter-reset: count;
  margin: 0 0 30px;
}

ol:not([class]) li:not([class]) {
  position: relative;
  padding-left: 48px;
  counter-increment: count;
  margin-bottom: 20px;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* or 19px */
  color: var(--color-text);
}

ol:not([class]) li:not([class])::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  border: 1px solid #29BDAA;
  border-radius: 50%;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  /* or 19px */
  text-align: center;
  color: #000000;
}

ol:not([class]) li:not([class]) {
  padding-top: 6px;
}

ol:not([class]) li:not([class])::before {
  content: counter(count);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  /* or 19px */
  text-align: center;
  color: #000000;
}

table:not([class]), table.tab {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  border-collapse: collapse;
  width: 100%;
  color: var(--color-primary);
  margin-bottom: 50px;
  max-width: 100% !important;
}

table:not([class]) tr:nth-child(odd), table.tab tr:nth-child(odd) {
  background: rgba(var(--color-primary--rgb), 0.2);
}

table:not([class]) th, table:not([class]) td, table.tab th, table.tab td {
  padding: 15px 20px;
  border-right: solid 2px rgba(var(--color-white--rgb), 0.7);
}

table:not([class]) th:last-of-type, table:not([class]) td:last-of-type, table.tab th:last-of-type, table.tab td:last-of-type {
  border: none;
}

table:not([class]) th, table.tab th {
  background: var(--color-primary);
  color: var(--color-black);
  text-align: left;
}

table:not([class]) td, table.tab td {
  color: rgba(var(--color-text--rgb), 0.9);
}

h1 {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 35px 0 35px;
}

h2 {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  margin: 35px 0 35px;
}

h3 {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  /* identical to box height, or 40px */
  text-transform: uppercase;
  margin: 35px 0 35px;
}

h4, h5, h6 {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  /* identical to box height, or 40px */
  text-transform: uppercase;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 35px 0 35px;
}

ul:not([class]) {
  list-style: none !important;
  padding: 0;
  counter-reset: count;
  margin: 0 0 30px;
}

ul:not([class]) li:not([class]) {
  position: relative;
  padding-left: 48px;
  counter-increment: count;
  margin-bottom: 20px;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* or 19px */
  color: var(--color-text);
}

ul:not([class]) li:not([class])::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  border: 1px solid #29BDAA;
  border-radius: 50%;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  /* or 19px */
  text-align: center;
  color: #000000;
}

ul:not([class]) li:not([class])::before {
  position: absolute;
  width: 27px;
  height: 27px;
  background: url(/static/images/svg/li.svg) no-repeat 11px 8px;
  background-color: var(--color-primary);
  left: 0;
  top: 0px;
  border-color: rgba(var(--color-text--rgb), 0.7);
  -webkit-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
  transform: translate(0, -1px);
}

.theme724__page__404 {
  grid-area: theme724__page__404;
}

.theme724__page__404__board {
  position: relative;
  margin-bottom: 85px;
}

.theme724__page__404__board__image {
  width: 100%;
}

.theme724__page__404__board__image img {
  display: block;
}

.theme724__page__404__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 90px;
}

.theme724__page__404__body__title {
  font-style: normal;
  font-weight: 200;
  font-size: 30px;
  line-height: 130%;
  /* or 39px */
  text-transform: uppercase;
  color: #212121;
  margin-bottom: 70px;
}

.theme724__page__404__body__description {
  margin-bottom: 80px;
}

.theme724__page__404__pages__level_1__link {
  display: block;
  margin-bottom: 25px;
  padding-left: 78px;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #29BDAA;
}

.theme724__page__404__pages__level_1__link::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #E5E5E5;
}

.theme724__page__404__pages__level_2 {
  margin-left: 78px;
  margin-bottom: 30px;
}

.theme724__page__404__pages__level_2__link {
  display: block;
  margin-bottom: 15px;
  padding-left: 34px;
  position: relative;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  /* or 22px */
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #29BDAA;
}

.theme724__page__404__pages__level_2__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #E5E5E5;
}

.theme724__footer {
  grid-area: theme724__footer;
  background: rgba(var(--color-black--rgb), 0.8);
  padding-top: 50px;
  padding-bottom: 50px;
}

.theme724__footer__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__footer__menu {
  margin-bottom: 30px;
}

.theme724__footer__attention {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 200;
}

.theme724__header {
  grid-area: theme724__header;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51%, rgba(var(--color-header_first--rgb), 0.8)), color-stop(50%, rgba(var(--color-header_second--rgb), 0.8)));
  background: -o-linear-gradient(rgba(var(--color-header_first--rgb), 0.8) 51%, rgba(var(--color-header_second--rgb), 0.8) 50%);
  background: linear-gradient(rgba(var(--color-header_first--rgb), 0.8) 51%, rgba(var(--color-header_second--rgb), 0.8) 50%);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 5px 0;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  z-index: 9990;
  position: relative;
}

.theme724__header.sticky {
  position: fixed;
  width: 100%;
  z-index: 9990;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: -115px;
  -webkit-transform: translate(0, 115px);
  -ms-transform: translate(0, 115px);
  transform: translate(0, 115px);
}

.theme724__header__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 200px 1fr 370px;
  grid-template-rows: 50px 50px;
  grid-template-areas: "theme724__block__header__logo theme724__block__header__slogan theme724__block__header__contact" "theme724__block__header__menu theme724__block__header__menu theme724__block__header__menu";
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 5px;
}

.theme724__header .theme724__block__logo {
  grid-area: theme724__block__logo;
}

.theme724__header .theme724__block__header__slogan {
  grid-area: theme724__block__header__slogan;
  margin: auto;
}

.theme724__header .theme724__block__header__contact {
  grid-area: theme724__block__header__contact;
}

.theme724__header .theme724__block__header__logo {
  grid-area: theme724__block__header__logo;
}

.theme724__header .theme724__block__header__menu {
  grid-area: theme724__block__header__menu;
}

.theme724__header .theme724__block__header__menu .theme724__block__header__contact {
  grid-area: theme724__block__header__contact;
}

.theme724__header .theme724__block__header__menu .theme724__block__phone {
  grid-area: theme724__block__phone;
}

.theme724__header .theme724__block__header__menu .theme724__block__phone__social {
  grid-area: theme724__block__phone__social;
}

.theme724__header .theme724__block__phone__button {
  grid-area: theme724__block__phone__button;
}

.theme724__header .theme724__block__phone__button__button {
  background: rgba(var(--color-white--rgb), 0.9);
}

.theme724__base__main {
  grid-area: theme724__base__main;
}

.theme724__base__main__head {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__base__main__head__wrapper {
  display: grid;
  grid-template-areas: "base__main__title base__main__head__line base__main__head__decor" "base__main__title stekloluks__block__breadcrumbs base__main__head__decor";
  grid-gap: 5px 15px;
  grid-template-columns: auto minmax(168px, 1fr) 55px;
  grid-template-rows: 17px auto;
  margin-bottom: 50px;
}

.theme724__base__main__head__line {
  grid-area: base__main__head__line;
  border-bottom: 4px solid #E5E5E5;
  height: 17px;
}

.theme724__base__main__head__decor {
  grid-area: base__main__head__decor;
  align-self: top;
}

.theme724__base__main__head__decor svg {
  -webkit-transform: translate(0, -3px);
  -ms-transform: translate(0, -3px);
  transform: translate(0, -3px);
}

.theme724__base__main__title {
  margin-right: 40px;
  grid-area: base__main__title;
  font-style: normal;
  font-weight: 200;
  font-size: 50px;
  line-height: 130%;
  /* or 65px */
  text-transform: uppercase;
  text-transform: uppercase;
  color: #212121;
  max-width: 550px;
  -webkit-transform: translate(0, -16px);
  -ms-transform: translate(0, -16px);
  transform: translate(0, -16px);
}

.theme724__base__main__title h1 {
  margin: 0;
  font-style: normal;
  font-weight: 200;
  font-size: 50px;
  line-height: 130%;
  /* or 65px */
  text-transform: uppercase;
  text-transform: uppercase;
  color: #212121;
}

.theme724__base__main__content {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.theme724__base__main__content > * {
  width: 100%;
}

.theme724__base__main__content > p {
  width: calc(50% - 30px);
}

/* montserrat-200 - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/montserrat-v26-cyrillic_latin-200.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-200italic - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 200;
  src: url("../fonts/montserrat-v26-cyrillic_latin-200italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v26-cyrillic_latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-italic - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/montserrat-v26-cyrillic_latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700 - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v26-cyrillic_latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-700italic - cyrillic_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/montserrat-v26-cyrillic_latin-700italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--color-text);
  background-attachment: scroll;
}

body:not(#tinymce), body:not(.mce-content-body) {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-attachment: scroll;
}

body:not(#tinymce).stiky, body:not(.mce-content-body).stiky {
  padding-top: 115px;
}

body.mce-content-body {
  padding: 30px;
}

.body__wrapper {
  position: relative;
  z-index: 2;
}

.body__wrapper::before {
  display: block;
  content: "";
  position: absolute;
  top: 300px;
  right: 0;
  width: 172px;
  height: 6px;
  background: #fff;
  z-index: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  color: var(--color-primary_dark);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

a svg {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

a:hover {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-text);
}

a:hover svg {
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

a.white_link {
  color: #fff !important;
}

a.white_link:hover {
  color: var(--color-black) !important;
}

.white_links a, .white_link a {
  color: #fff !important;
}

.white_links a:hover, .white_link a:hover {
  color: var(--color-black) !important;
}

.red {
  color: var(--color-text);
}

img {
  max-width: 100%;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  margin: 0 0 25px;
  color: var(--color-text);
}

.fancybox-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 0;
}

.fancybox-button svg {
  width: 40px;
  height: 40px;
  margin-right: 0;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.theme724__content {
  grid-area: theme724__content;
  padding-bottom: 50px;
}

.theme724__block__about {
  grid-area: theme724__block__about;
  margin-bottom: 70px;
}

.theme724__block__about__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
}

.theme724__block__about__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__about__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 70px;
}

.theme724__block__about__how_we_work {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.theme724__block__about__how_we_work__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  margin-bottom: 35px;
}

.theme724__block__about__how_we_work__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.theme724__block__about__how_we_work__item {
  background: rgba(var(--color-primary--rgb), 0.3);
  width: calc(33% - 15px);
  max-width: 340px;
  padding: 40px 25px 30px;
}

.theme724__block__about__how_we_work__item__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  text-transform: none;
  color: var(--color-black);
  margin-bottom: 35px;
}

.theme724__block__about__how_we_work__item__description {
  color: var(--color-black);
}

.theme724__block__about__button {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__about__advantages {
  background: var(--color-primary);
  margin-bottom: 60px;
}

.theme724__block__about__advantages__items {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.theme724__block__about__advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  background: var(--color-primary);
  width: 33%;
  max-width: 350px;
  padding: 20px 0;
}

.theme724__block__about__advantages__item:nth-child(even) {
  background: rgba(var(--color-black--rgb), 0.8);
  padding: 20px 30px;
  width: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__about__advantages__item:last-of-type {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 30px;
}

.theme724__block__about__advantages__item a {
  color: var(--color-black);
}

.theme724__block__about__advantages__item svg {
  color: var(--color-black);
}

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

.theme724__block__about__advantages__item.phone svg {
  color: var(--color-white);
}

.theme724__block__about__advantages__item__icon {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__about__advantages__item__icon svg {
  max-height: 100%;
  display: block;
}

.theme724__block__about__advantages__item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  font-size: 20px;
}

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

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

.theme724__block__about__advantages__item__phone a:hover {
  color: rgba(var(--color-white--rgb), 0.7);
}

.theme724__block__advantages {
  grid-area: theme724__block__advantages;
  background: rgba(var(--color-primary--rgb), 0.05);
  padding: 70px 0;
}

.theme724__block__advantages__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__advantages__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 50px;
}

.theme724__block__advantages__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.theme724__block__advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-direction: column;
  background: rgba(var(--color-primary--rgb), 0.3);
  width: calc(33% - 20px);
  max-width: 350px;
  padding: 30px;
}

.theme724__block__advantages__item__icon {
  height: 100px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__advantages__item__icon svg {
  max-height: 100%;
  display: block;
  color: var(--color-black);
}

.theme724__block__advantages__item__title {
  color: var(--color-black);
  text-align: center;
}

.theme724__block__back_to_top {
  grid-area: theme724__block__back_to_top;
}

.theme724__block__back_to_top__link {
  position: fixed;
  bottom: 30px;
  right: 22px;
  opacity: 0;
  z-index: 11;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  pointer-events: none;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.theme724__block__back_to_top__link.active {
  display: block;
  pointer-events: all;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 1;
  border-radius: 3px;
  border: solid 1px rgba(var(--color-white--rgb), 0.8);
  color: rgba(var(--color-primary--rgb), 0.4);
}

.theme724__block__back_to_top__link.active svg {
  display: block;
}

.theme724__block__back_to_top__link.active:hover {
  color: var(--color-primary);
  opacity: 1;
}

.theme724__block__contact {
  grid-area: theme724__block__contact;
  margin-bottom: 70px;
}

.theme724__block__contact__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
  margin-bottom: 70px;
}

.theme724__block__contact__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__contact__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 70px;
}

.theme724__block__contact__info {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__contact__phone, .theme724__block__contact__email, .theme724__block__contact__messangers, .theme724__block__contact__subscibe {
  margin-bottom: 20px;
}

.theme724__block__contact__messangers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__contact__messangers a {
  display: block;
}

.theme724__block__contact__messangers svg {
  display: block;
  width: 24px;
  height: auto;
}

.theme724__block__contact__subscribe__title {
  margin-bottom: 10px;
}

.theme724__block__contact__subscribe a {
  margin-right: 10px;
}

.theme724__block__footer__menu {
  grid-area: theme724__block__footer__menu;
}

.theme724__block__footer__menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.theme724__block__footer__menu__items a {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 20px 10px 0;
  color: var(--color-white);
}

.theme724__block__footer__menu__items a:hover {
  color: var(--color-primary);
}

.theme724__block__gallery {
  grid-area: theme724__block__gallery;
  margin-bottom: 70px;
}

.theme724__block__gallery__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
  margin-bottom: 70px;
}

.theme724__block__gallery__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__gallery__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 70px;
}

.theme724__block__gallery__gallery {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 50px;
}

.theme724__block__gallery__gallery__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(33% - 20px));
  grid-gap: 30px 30px;
}

.theme724__block__gallery__gallery__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__gallery__gallery__item img {
  max-width: 100%;
  height: auto !important;
}

.theme724__block__gallery__button {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__contact {
  grid-area: theme724__block__header__contact;
}

.theme724__block__header__contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__contact__wrapper svg {
  color: var(--color-primary);
}

.theme724__block__header__contact__wrapper svg:hover {
  color: var(--color-white);
}

.theme724__block__header__contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__contact .theme724__block__phone {
  grid-area: theme724__block__phone;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__header__contact .theme724__block__phone a {
  cursor: hand;
  c\ursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  /* identical to box height */
  color: var(--color-primary_dark);
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  color: var(--color-white);
  border-color: transparent;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.theme724__block__header__contact .theme724__block__phone a svg {
  margin-right: 15px;
  color: var(--color-primary_dark);
}

.theme724__block__header__contact .theme724__block__phone a:hover {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-white);
}

.theme724__block__header__contact .theme724__block__phone a:hover svg {
  color: var(--color-white);
}

.theme724__block__header__contact .theme724__block__phone a:focus {
  outline: none;
}

.theme724__block__header__contact .theme724__block__phone a svg {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
}

.theme724__block__header__contact .theme724__block__phone__social {
  grid-area: theme724__block__phone__social;
}

.theme724__block__header__logo {
  grid-area: theme724__block__header__logo;
}

.theme724__block__header__logo__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__logo__wrapper svg {
  display: block;
  margin-right: 10px;
  color: var(--color-primary);
}

.theme724__block__header__logo__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__menu_button {
  grid-area: theme724__block__header__menu_button;
  margin-right: 10px;
}

.theme724__block__header__menu_button__icon {
  cursor: hand;
  c\ursor: pointer;
  color: var(--color-primary);
}

.theme724__block__header__menu_button__icon svg {
  display: block;
}

.theme724__block__header__menu {
  grid-area: theme724__block__header__menu;
}

.theme724__block__header__menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 30px;
}

.theme724__block__header__menu__head .theme724__block__logo {
  grid-area: theme724__block__logo;
}

.theme724__block__header__menu__close {
  cursor: hand;
  c\ursor: pointer;
  color: var(--color-primary);
  margin-right: 20px;
}

.theme724__block__header__menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__header__menu__items a {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  font-size: 18px;
  line-height: normal;
  color: var(--color-white);
}

.theme724__block__header__menu__items a:hover {
  color: var(--color-primary);
}

.theme724__block__header__menu .theme724__block__header__contact {
  grid-area: theme724__block__header__contact;
}

.theme724__block__header__menu .theme724__block__header__contact__wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.theme724__block__header__menu .theme724__block__phone__social {
  grid-area: theme724__block__phone__social;
}

.theme724__block__header__menu .theme724__block__phone__button {
  grid-area: theme724__block__phone__button;
}

.theme724__block__header__slogan {
  grid-area: theme724__block__header__slogan;
}

.theme724__block__header__slogan__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  color: var(--color-white);
  line-height: 1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.theme724__block__header__slogan__wrapper svg {
  display: block;
  margin-right: 10px;
  color: var(--color-primary);
  width: 16px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__header__slogan__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__logo {
  grid-area: theme724__block__logo;
}

.theme724__block__logo__link {
  display: grid;
  grid-template-areas: "theme724__block__logo__title theme724__block__logo__icon" "theme724__block__logo__description theme724__block__logo__icon";
  grid-template-columns: 1fr 78px;
  grid-gap: 0 7px;
}

.theme724__block__logo__title {
  grid-area: theme724__block__logo__title;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
}

.theme724__block__logo__description {
  grid-area: theme724__block__logo__description;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
}

.theme724__block__logo__icon {
  grid-area: theme724__block__logo__icon;
}

.theme724__block__logo__icon svg {
  color: var(--color-primary);
}

.theme724__block__paginator {
  grid-area: theme724__block__paginator;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  text-transform: uppercase;
  color: #212121;
  margin-bottom: 140px;
}

.theme724__block__paginator a {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  text-transform: uppercase;
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 10px;
  padding: 0px 2px;
  border-bottom: solid 1px;
}

.theme724__block__paginator__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.theme724__block__paginator__items__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme724__block__paginator__item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0px 9px;
  min-width: 29px;
  min-height: 30px;
  background: var(--color-primary);
  color: var(--color-white);
  margin: 0 10px;
}

.theme724__block__paginator__item__previous, .theme724__block__paginator__item__next {
  display: none;
}

.theme724__block__phone__button {
  grid-area: theme724__block__phone__button;
}

.theme724__block__phone__button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__phone__button__wrapper svg {
  display: block;
  margin-right: 10px;
  color: var(--color-primary);
}

.theme724__block__phone__button__button {
  cursor: hand;
  c\ursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  /* identical to box height */
  color: var(--color-primary_dark);
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  padding: 15px 25px;
}

.theme724__block__phone__button__button svg {
  margin-right: 15px;
  color: var(--color-primary_dark);
}

.theme724__block__phone__button__button:hover {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-white);
}

.theme724__block__phone__button__button:hover svg {
  color: var(--color-white);
}

.theme724__block__phone__button__button:focus {
  outline: none;
}

@-webkit-keyframes vibrate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  30% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  80% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}

@keyframes vibrate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  20% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  30% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  80% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}

@-webkit-keyframes telegram_animation {
  0% {
    color: #3390EC;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #3390EC;
  }
}

@keyframes telegram_animation {
  0% {
    color: #3390EC;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #3390EC;
  }
}

@-webkit-keyframes viber_animation {
  0% {
    color: #793BAA;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #793BAA;
  }
}

@keyframes viber_animation {
  0% {
    color: #793BAA;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #793BAA;
  }
}

@-webkit-keyframes watsapp_animation {
  0% {
    color: #2BB741;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #2BB741;
  }
}

@keyframes watsapp_animation {
  0% {
    color: #2BB741;
  }
  50% {
    color: var(--color-primary);
  }
  100% {
    color: #2BB741;
  }
}

.theme724__block__phone__social {
  grid-area: theme724__block__phone__social;
}

.theme724__block__phone__social__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: 10px;
}

.theme724__block__phone__social__wrapper a {
  display: block;
  margin-left: 5px;
  position: relative;
}

.theme724__block__phone__social__wrapper a::before {
  display: block;
  content: "";
  border-radius: 50%;
  background: var(--color-white);
  width: 90%;
  height: 80%;
  position: absolute;
  left: 5%;
  top: 5%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__phone__social__wrapper a:hover::before {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__phone__social__wrapper a:hover svg {
  -webkit-animation: vibrate 0.5s;
  animation: vibrate 0.5s;
  /* When the animation is finished, start again */
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.theme724__block__phone__social__wrapper a.telegram svg {
  color: #3390EC;
}

.theme724__block__phone__social__wrapper a.telegram:hover svg {
  -webkit-animation: vibrate 0.5s;
  animation: vibrate 0.5s;
}

.theme724__block__phone__social__wrapper a.viber svg {
  color: #793BAA;
}

.theme724__block__phone__social__wrapper a.viber:hover svg {
  -webkit-animation: vibrate 0.5s;
  animation: vibrate 0.5s;
}

.theme724__block__phone__social__wrapper a.watsapp svg {
  color: #2BB741;
}

.theme724__block__phone__social__wrapper a.watsapp:hover svg {
  -webkit-animation: vibrate 0.5s;
  animation: vibrate 0.5s;
}

.theme724__block__phone__social__wrapper svg {
  display: block;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}

.theme724__block__phone {
  grid-area: theme724__block__phone;
}

.theme724__block__phone__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__phone__wrapper svg {
  display: block;
  margin-right: 10px;
}

.theme724__block__phone__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.theme724__block__phone__link:hover svg {
  -webkit-animation: vibrate 0.5s;
  animation: vibrate 0.5s;
  /* When the animation is finished, start again */
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.theme724__block__prices {
  grid-area: theme724__block__prices;
  margin-bottom: 70px;
}

.theme724__block__prices__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
  margin-bottom: 50px;
}

.theme724__block__prices__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__prices__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 40px;
}

.theme724__block__prices__button {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 50px;
}

.theme724__block__prices__note {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--color-primary_dark);
}

.theme724__block__reviews {
  grid-area: theme724__block__reviews;
  margin-bottom: 70px;
}

.theme724__block__reviews__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
  margin-bottom: 70px;
}

.theme724__block__reviews__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__reviews__body {
  margin-bottom: 70px;
}

.theme724__block__reviews__reviews__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.theme724__block__reviews__reviews__item {
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 70px;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.theme724__block__reviews__reviews__item:nth-child(even) {
  padding-right: 0;
}

.theme724__block__reviews__reviews__item__text {
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
}

.theme724__block__reviews__reviews__item__text__cocoon {
  max-height: 95px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__reviews__reviews__item__text__cocoon.active {
  max-height: 1000px;
  overflow: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__reviews__reviews__item__text__cocoon.active::after {
  display: none;
}

.theme724__block__reviews__reviews__item__text__cocoon::after {
  content: "";
  width: 100%;
  height: 42px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(white));
  background: -o-linear-gradient(rgba(255, 255, 255, 0.1), white);
  background: linear-gradient(rgba(255, 255, 255, 0.1), white);
  bottom: 0;
  left: 0;
  position: absolute;
}

.theme724__block__reviews__reviews__item__text__expander {
  cursor: hand;
  c\ursor: pointer;
  margin-top: 20px;
  color: var(--color-primary);
  text-align: right;
}

.theme724__block__reviews__reviews__item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: var(--color-text);
  font-weight: bold;
}

.theme724__block__reviews__reviews__item__rating {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__reviews__reviews__item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 20px;
}

.theme724__block__reviews__reviews__item__star {
  color: var(--color-gray);
}

.theme724__block__reviews__reviews__item__star.active {
  color: var(--color-primary);
}

.theme724__block__reviews__footer {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__reviews__footer__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.theme724__block__reviews__footer__rating__title {
  margin-right: 10px;
}

.theme724__block__reviews__footer__rating__count {
  margin-right: 10px;
}

.theme724__block__reviews__footer__rating__count span {
  color: var(--color-gray);
}

.theme724__block__reviews__footer__rating__star {
  color: var(--color-gray);
}

.theme724__block__reviews__footer__rating__star.active {
  color: var(--color-primary);
}

.theme724__block__reviews__footer__more_reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.theme724__block__reviews__footer__more_reviews__button {
  cursor: hand;
  c\ursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  /* identical to box height */
  color: var(--color-primary_dark);
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
}

.theme724__block__reviews__footer__more_reviews__button svg {
  margin-right: 15px;
  color: var(--color-primary_dark);
}

.theme724__block__reviews__footer__more_reviews__button:hover {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-white);
}

.theme724__block__reviews__footer__more_reviews__button:hover svg {
  color: var(--color-white);
}

.theme724__block__reviews__footer__more_reviews__button:focus {
  outline: none;
}

.theme724__block__services {
  grid-area: theme724__block__services;
  margin-bottom: 70px;
}

.theme724__block__services__title {
  background: var(--color-primary);
  padding: 20px 0;
  margin-bottom: 30px;
  margin-bottom: 70px;
}

.theme724__block__services__title__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  color: var(--color-black);
  text-shadow: 1px 1px 1px #fff;
}

.theme724__block__services__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 70px;
}

.theme724__block__services__services__items {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.theme724__block__services__services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: 50px;
}

.theme724__block__services__services__item:nth-child(odd) {
  padding-right: 30px;
}

.theme724__block__services__services__item__icon {
  margin-right: 10px;
  width: 130px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.theme724__block__services__services__item__icon svg {
  max-width: 100px;
  display: block;
  color: var(--color-primary);
}

.theme724__block__services__services__item__title {
  font-size: 39px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  color: var(--color-text);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  /* identical to box height, or 40px */
  text-transform: uppercase;
  text-transform: none;
}

.theme724__block__slider {
  grid-area: theme724__block__slider;
}

.theme724__block__slider__items {
  position: relative;
}

.theme724__block__slider__item {
  min-height: 600px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.theme724__block__slider__item__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.theme724__block__slider__item__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-top: 110px;
  padding-bottom: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.theme724__block__slider__item__title {
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  max-width: 600px;
  color: var(--color-white);
  position: relative;
  z-index: 2;
  background-color: rgba(var(--color-secondary--rgb), 0.3);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  padding: 10px 20px;
  border-radius: 7px;
}

.theme724__block__slider__item__title span {
  color: var(--color-primary);
}

.theme724__block__slider__item__image {
  position: relative;
}

.theme724__block__slider__item__image {
  height: auto !important;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 3 / 1;
  width: 100% !important;
  -webkit-filter: sepia(100%) blur(2px) opacity(0.9);
  filter: sepia(100%) blur(2px) opacity(0.9);
}

.theme724__block__slider__bonus {
  position: absolute;
  right: 0;
  bottom: 100px;
  -webkit-transform: translate(50px, 0);
  -ms-transform: translate(50px, 0);
  transform: translate(50px, 0);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__block__slider .theme724__block__phone {
  grid-area: theme724__block__phone;
}

.theme724__block__slider .theme724__block__phone__link {
  cursor: hand;
  c\ursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  /* identical to box height */
  color: var(--color-primary_dark);
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  box-shadow: 0 0 5px rgba(var(--color-black--rgb), 0.5);
  background: rgba(var(--color-primary--rgb), 0.4);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  font-size: 48px;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.theme724__block__slider .theme724__block__phone__link svg {
  margin-right: 15px;
  color: var(--color-primary_dark);
}

.theme724__block__slider .theme724__block__phone__link:hover {
  background: var(--color-primary);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: var(--color-white);
}

.theme724__block__slider .theme724__block__phone__link:hover svg {
  color: var(--color-white);
}

.theme724__block__slider .theme724__block__phone__link:focus {
  outline: none;
}

.theme724__block__slider .theme724__block__phone__link svg {
  width: 48px;
  height: 48px;
  color: var(--color-white);
}

.theme724__block__slider .theme724__block__phone__link:hover {
  color: var(--color-white);
}

.theme724__block__slider .theme724__block__phone__link:hover svg {
  color: var(--color-white);
}

.theme724__block__social {
  grid-area: theme724__block__social;
}

.theme724__block__social__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: 10px;
}

.theme724__block__social__wrapper a {
  display: block;
  margin-left: 5px;
}

.theme724__block__social__wrapper svg {
  display: block;
}

.theme724__page__reviews {
  grid-area: theme724__page__reviews;
}

.theme724__page__reviews__content__text {
  margin-bottom: 70px;
}

.theme724__page__reviews__content__wrapper {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__page__start_page {
  grid-area: theme724__page__start_page;
}

.theme724__page__start_page__content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.theme724__page__start_page .theme724__block__reviews {
  grid-area: theme724__block__reviews;
}

.theme724__page__start_page .theme724__block__reviews__body {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme724__page__start_page .theme724__block__reviews__reviews {
  max-width: 1200px;
  padding-top: 0px;
  padding-right: 100px;
  padding-bottom: 0px;
  padding-left: 100px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (min-width: 767px) {
  .theme724__block__header__menu_button {
    display: none;
  }
  .theme724__block__header__menu__head {
    display: none;
  }
  .theme724__block__header__menu__footer {
    display: none;
  }
}

@media only screen and (max-width: 480px) and (max-width: 880px) {
  .theme724__block__services__services__item__title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) and (max-width: 480px) {
  .theme724__block__services__services__item__title {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1600px) {
  .theme724__block__slider__item__image {
    aspect-ratio: 2 / 1;
  }
}

@media only screen and (max-width: 1280px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 28px;
  }
  h3 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4, h5, h6 {
    font-size: 28px;
  }
  h4, h5, h6 {
    font-size: 26px;
  }
  h4, h5, h6 {
    font-size: 22px;
  }
  h4, h5, h6 {
    font-size: 19px;
  }
  .theme724__block__about__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 28px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 26px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 28px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 26px;
  }
  .theme724__block__advantages__title {
    font-size: 28px;
  }
  .theme724__block__contact__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__gallery__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__prices__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__reviews__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__services__title__wrapper {
    font-size: 28px;
  }
  .theme724__block__services__services__item__title {
    font-size: 28px;
  }
  .theme724__block__services__services__item__title {
    font-size: 26px;
  }
  .theme724__block__services__services__item__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1100px) {
  .theme724__page__404__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__footer__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__header__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__base__main__head {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__base__main__content {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__about__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__about__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__about__how_we_work {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__about__button {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__about__advantages__items {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__advantages__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__contact__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__contact__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__contact__info {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__gallery__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__gallery__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__gallery__gallery {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__gallery__button {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__prices__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__prices__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__prices__button {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__prices__note {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__reviews__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__reviews__footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__services__title__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__services__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__services__services__items {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__slider__item__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__block__slider__bonus {
    max-width: 450px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(20px, 0);
    -ms-transform: translate(20px, 0);
    transform: translate(20px, 0);
  }
  .theme724__page__reviews__content__wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__page__start_page .theme724__block__reviews__body {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .theme724__page__start_page .theme724__block__reviews__reviews {
    margin-left: 0;
    margin-right: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media only screen and (max-width: 1080px) {
  .body__wrapper::before {
    top: 200px;
  }
}

@media only screen and (max-width: 990px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 24px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 24px;
  }
  h3 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  h4, h5, h6 {
    font-size: 24px;
  }
  h4, h5, h6 {
    font-size: 22px;
  }
  h4, h5, h6 {
    font-size: 18px;
  }
  h4, h5, h6 {
    font-size: 18px;
  }
  .theme724__page__404__board {
    margin-bottom: 60px;
  }
  .theme724__page__404__body__title {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .theme724__page__404__body__description {
    font-size: 15px;
    margin-bottom: 60px;
  }
  .theme724__header__wrapper {
    grid-template-columns: 200px 1fr;
    grid-template-areas: "theme724__block__header__logo theme724__block__header__contact" "theme724__block__header__menu theme724__block__header__menu";
  }
  .theme724__header .theme724__block__header__slogan {
    display: none;
  }
  .theme724__header .theme724__block__header__logo__wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .theme724__block__about__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 24px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 22px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 24px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 22px;
  }
  .theme724__block__advantages__title {
    font-size: 24px;
  }
  .theme724__block__contact__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__gallery__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__prices__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__reviews__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__services__title__wrapper {
    font-size: 24px;
  }
  .theme724__block__services__services__item__title {
    font-size: 24px;
  }
  .theme724__block__services__services__item__title {
    font-size: 22px;
  }
  .theme724__block__services__services__item__title {
    font-size: 18px;
  }
  .theme724__block__slider__item__body {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .theme724__block__slider .theme724__block__phone__link {
    font-size: 38px;
  }
  .theme724__block__slider .theme724__block__phone__link svg {
    width: 38px;
    height: 38px;
  }
}

@media only screen and (max-width: 900px) {
  .theme724__block__slider__bonus {
    max-width: 350px;
    display: none;
  }
}

@media only screen and (max-width: 880px) {
  ol:not([class]) li:not([class]) {
    font-size: 18px;
  }
  table:not([class]), table.tab {
    font-size: 16px;
  }
  table:not([class]) th, table:not([class]) td, table.tab th, table.tab td {
    font-size: 16px;
  }
  h4, h5, h6 {
    margin: 31px 0  20px;
  }
  ul:not([class]) li:not([class]) {
    font-size: 18px;
  }
  .theme724__page__404__board {
    margin-bottom: 20px;
  }
  .theme724__page__404__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__footer__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__header__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__base__main__head {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__base__main__title {
    font-size: 35px;
    margin-right: 20px;
  }
  .theme724__base__main__title h1 {
    font-size: 35px;
    margin-right: 20px;
  }
  .theme724__base__main__content {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__base__main__content {
    display: block;
  }
  .theme724__base__main__content > p {
    width: 100%;
  }
  body {
    font-size: 18px;
  }
  body:not(#tinymce), body:not(.mce-content-body) {
    font-size: 18px;
  }
  .body__wrapper::before {
    display: none;
  }
  a {
    font-size: 18px;
  }
  p {
    font-size: 18px;
  }
  .theme724__block__about__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__about__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__about__how_we_work {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__about__how_we_work__items {
    display: block;
  }
  .theme724__block__about__how_we_work__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .theme724__block__about__how_we_work__item:last-of-type {
    margin-bottom: 0;
  }
  .theme724__block__about__how_we_work__item__title {
    margin-bottom: 25px;
  }
  .theme724__block__about__button {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__about__advantages__items {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__about__advantages__item__title {
    font-size: 18px;
  }
  .theme724__block__advantages__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__contact__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__contact__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__contact__info {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__gallery__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__gallery__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__gallery__gallery {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__gallery__button {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__header__menu__items a {
    font-size: 18px;
  }
  .theme724__block__prices__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__prices__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__prices__button {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__prices__note {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__reviews__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__reviews__reviews__item__text {
    font-size: 16px;
  }
  .theme724__block__reviews__reviews__item__title {
    font-size: 16px;
  }
  .theme724__block__reviews__footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__services__title__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__services__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__services__services__items {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__block__slider__item__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__page__reviews__content__wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__page__start_page .theme724__block__reviews__body {
    padding-left: 32px;
    padding-right: 32px;
  }
  .theme724__page__start_page .theme724__block__reviews__reviews {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media only screen and (max-width: 800px) {
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 20px;
  }
  h4, h5, h6 {
    font-size: 20px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 20px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 20px;
  }
  .theme724__block__services__services__item__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
  h4, h5, h6 {
    font-size: 18px;
  }
  h4, h5, h6 {
    font-size: 16px;
  }
  .theme724__block__services__services__item__title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 766px) {
  input[type="color"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="email"],
  input[type="hidden"],
  input[type="image"],
  input[type="month"],
  input[type="number"],
  input[type="password"],
  input[type="radio"],
  input[type="range"],
  input[type="reset"],
  input[type="search"],
  input[type="submit"],
  input[type="tel"],
  input[type="text"],
  input[type="time"],
  input[type="url"],
  input[type="week"],
  textarea,
  select {
    font-size: 13px;
    height: 44px;
  }
  input[type="color"]::-webkit-input-placeholder,
  input[type="date"]::-webkit-input-placeholder,
  input[type="datetime-local"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="hidden"]::-webkit-input-placeholder,
  input[type="image"]::-webkit-input-placeholder,
  input[type="month"]::-webkit-input-placeholder,
  input[type="number"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="radio"]::-webkit-input-placeholder,
  input[type="range"]::-webkit-input-placeholder,
  input[type="reset"]::-webkit-input-placeholder,
  input[type="search"]::-webkit-input-placeholder,
  input[type="submit"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  input[type="text"]::-webkit-input-placeholder,
  input[type="time"]::-webkit-input-placeholder,
  input[type="url"]::-webkit-input-placeholder,
  input[type="week"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    font-size: 13px;
  }
  input[type="color"]::-moz-placeholder,
  input[type="date"]::-moz-placeholder,
  input[type="datetime-local"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="hidden"]::-moz-placeholder,
  input[type="image"]::-moz-placeholder,
  input[type="month"]::-moz-placeholder,
  input[type="number"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="radio"]::-moz-placeholder,
  input[type="range"]::-moz-placeholder,
  input[type="reset"]::-moz-placeholder,
  input[type="search"]::-moz-placeholder,
  input[type="submit"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  input[type="text"]::-moz-placeholder,
  input[type="time"]::-moz-placeholder,
  input[type="url"]::-moz-placeholder,
  input[type="week"]::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    font-size: 13px;
  }
  input[type="color"]:-ms-input-placeholder,
  input[type="date"]:-ms-input-placeholder,
  input[type="datetime-local"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="hidden"]:-ms-input-placeholder,
  input[type="image"]:-ms-input-placeholder,
  input[type="month"]:-ms-input-placeholder,
  input[type="number"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="radio"]:-ms-input-placeholder,
  input[type="range"]:-ms-input-placeholder,
  input[type="reset"]:-ms-input-placeholder,
  input[type="search"]:-ms-input-placeholder,
  input[type="submit"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  input[type="text"]:-ms-input-placeholder,
  input[type="time"]:-ms-input-placeholder,
  input[type="url"]:-ms-input-placeholder,
  input[type="week"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    font-size: 13px;
  }
  input[type="color"]::-ms-input-placeholder,
  input[type="date"]::-ms-input-placeholder,
  input[type="datetime-local"]::-ms-input-placeholder,
  input[type="email"]::-ms-input-placeholder,
  input[type="hidden"]::-ms-input-placeholder,
  input[type="image"]::-ms-input-placeholder,
  input[type="month"]::-ms-input-placeholder,
  input[type="number"]::-ms-input-placeholder,
  input[type="password"]::-ms-input-placeholder,
  input[type="radio"]::-ms-input-placeholder,
  input[type="range"]::-ms-input-placeholder,
  input[type="reset"]::-ms-input-placeholder,
  input[type="search"]::-ms-input-placeholder,
  input[type="submit"]::-ms-input-placeholder,
  input[type="tel"]::-ms-input-placeholder,
  input[type="text"]::-ms-input-placeholder,
  input[type="time"]::-ms-input-placeholder,
  input[type="url"]::-ms-input-placeholder,
  input[type="week"]::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder {
    font-size: 13px;
  }
  input[type="color"]::placeholder,
  input[type="date"]::placeholder,
  input[type="datetime-local"]::placeholder,
  input[type="email"]::placeholder,
  input[type="hidden"]::placeholder,
  input[type="image"]::placeholder,
  input[type="month"]::placeholder,
  input[type="number"]::placeholder,
  input[type="password"]::placeholder,
  input[type="radio"]::placeholder,
  input[type="range"]::placeholder,
  input[type="reset"]::placeholder,
  input[type="search"]::placeholder,
  input[type="submit"]::placeholder,
  input[type="tel"]::placeholder,
  input[type="text"]::placeholder,
  input[type="time"]::placeholder,
  input[type="url"]::placeholder,
  input[type="week"]::placeholder,
  textarea::placeholder,
  select::placeholder {
    font-size: 13px;
  }
  textarea {
    height: 205px;
  }
  input[type='checkbox'] ~ label {
    font-size: 13px;
  }
  label {
    font-size: 13px;
  }
  ol:not([class]) li:not([class])::before {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }
  ol:not([class]) {
    margin-bottom: 20px;
  }
  table:not([class]) th, table:not([class]) td, table.tab th, table.tab td {
    font-size: 14px;
  }
  table:not([class]) th, table.tab th {
    font-weight: bold;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4, h5, h6 {
    font-size: 22px;
  }
  h4, h5, h6 {
    font-size: 20px;
  }
  ul:not([class]) li:not([class])::before {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }
  ul:not([class]) li:not([class]) {
    margin-bottom: 16px;
  }
  ul:not([class]) li:not([class])::before {
    width: 23px;
    height: 23px;
    font-size: 13px;
    background: url(/static/images/svg/li.svg) no-repeat 9px 5px;
    -webkit-transform: translate(0, -3px);
    -ms-transform: translate(0, -3px);
    transform: translate(0, -3px);
    background-color: var(--color-primary);
  }
  .theme724__page__404__board {
    margin-bottom: 5px;
  }
  .theme724__page__404__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__page__404__body__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .theme724__page__404__body__description {
    font-size: 13px;
  }
  .theme724__page__404__pages__level_1__link {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .theme724__page__404__pages__level_2__link {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .theme724__footer__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__header {
    background: rgba(var(--color-black--rgb), 0.8);
  }
  .theme724__header {
    position: fixed;
    width: 100%;
    z-index: 9990;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: -115px;
    -webkit-transform: translate(0, 115px);
    -ms-transform: translate(0, 115px);
    transform: translate(0, 115px);
  }
  .theme724__header__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .theme724__header .theme724__block__header__logo {
    margin-right: auto;
  }
  .theme724__header .theme724__block__header__logo__wrapper {
    margin-right: 10px;
  }
  .theme724__header .theme724__block__header__menu {
    position: absolute;
    background: rgba(var(--color-header_second--rgb), 0.9);
    z-index: 999999;
    top: 0;
    width: 100%;
    padding: 22px;
    height: auto;
    min-height: 100vh;
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    margin-left: -22px;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }
  .theme724__header .theme724__block__header__menu.active {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .theme724__base__main__head {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__base__main__head__wrapper {
    grid-template-columns: 1fr 1fr 40px;
    grid-template-rows: auto 1fr;
    grid-gap: 25px 15px;
    grid-template-rows: auto;
    grid-template-areas: "stekloluks__block__breadcrumbs stekloluks__block__breadcrumbs stekloluks__block__breadcrumbs" "base__main__title base__main__head__line base__main__head__decor";
  }
  .theme724__base__main__head__line {
    border-width: 0 0 2px;
  }
  .theme724__base__main__head__decor svg {
    width: 40px;
    height: 26px;
  }
  .theme724__base__main__content {
    padding-left: 22px;
    padding-right: 22px;
  }
  body:not(#tinymce), body:not(.mce-content-body) {
    padding-top: 49px;
  }
  .theme724__block__about__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__about__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__about__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__about__how_we_work {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 22px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 20px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 22px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 20px;
  }
  .theme724__block__about__button {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__about__advantages__items {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__advantages__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__advantages__title {
    font-size: 22px;
  }
  .theme724__block__back_to_top__link svg {
    width: 36px;
    height: 36px;
  }
  .theme724__block__contact__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__contact__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__contact__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__contact__info {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__gallery {
    margin-bottom: 50px;
  }
  .theme724__block__gallery__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__gallery__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__gallery__title {
    margin-bottom: 40px;
  }
  .theme724__block__gallery__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__gallery__body {
    margin-bottom: 40px;
  }
  .theme724__block__gallery__gallery {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__gallery__gallery__items {
    grid-template-columns: repeat(auto-fill, calc(50% - 15px));
  }
  .theme724__block__gallery__button {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__header__contact {
    margin-left: auto;
  }
  .theme724__block__header__menu__head .theme724__block__logo {
    margin-left: 0;
  }
  .theme724__block__header__menu__head .theme724__block__logo__title, .theme724__block__header__menu__head .theme724__block__logo__description {
    font-size: 16px;
  }
  .theme724__block__header__menu__items {
    display: block;
    margin-bottom: 40px;
  }
  .theme724__block__header__menu__item {
    margin-bottom: 20px;
  }
  .theme724__block__paginator {
    font-size: 28px;
  }
  .theme724__block__paginator a {
    font-size: 28px;
  }
  .theme724__block__prices__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__prices__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__prices__title {
    margin-bottom: 30px;
  }
  .theme724__block__prices__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__prices__button {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__prices__note {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__reviews__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__reviews__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__reviews__reviews__items {
    display: block;
  }
  .theme724__block__reviews__reviews__item {
    width: 100%;
    padding: 0;
    margin-bottom: 70px;
  }
  .theme724__block__reviews__reviews__item:last-of-type {
    margin-bottom: 0;
  }
  .theme724__block__reviews__footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__services__title__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__services__title__wrapper {
    font-size: 22px;
  }
  .theme724__block__services__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__services__services__items {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__services__services__item__title {
    font-size: 22px;
  }
  .theme724__block__services__services__item__title {
    font-size: 20px;
  }
  .theme724__block__slider__item {
    min-height: auto;
  }
  .theme724__block__slider__item__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__block__slider__item__title {
    margin-bottom: 50px;
    font-size: 36px;
  }
  .theme724__block__slider__item__image {
    position: static;
  }
  .theme724__block__slider__bonus {
    bottom: 50px;
    display: none !important;
  }
  .theme724__block__slider .theme724__block__phone__link {
    font-size: 32px;
  }
  .theme724__block__slider .theme724__block__phone__link svg {
    width: 32px;
    height: 32px;
  }
  .theme724__page__reviews__content__wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__page__start_page .theme724__block__reviews__body {
    padding-left: 22px;
    padding-right: 22px;
  }
  .theme724__page__start_page .theme724__block__reviews__reviews {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media only screen and (max-width: 720px) {
  .theme724__block__about__advantages__item {
    display: none;
  }
  .theme724__block__about__advantages__item.phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .theme724__block__services__services__items {
    display: block;
  }
  .theme724__block__services__services__item {
    width: 100%;
  }
  .theme724__block__services__services__item:last-of-type {
    margin-bottom: 0px;
  }
  .theme724__block__services__services__item:nth-child(odd) {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 700px) {
  .theme724__block__header__contact .theme724__block__phone a {
    padding: 0 10px 0 7px;
    height: 36px;
  }
  .theme724__block__header__contact .theme724__block__phone a svg {
    margin-right: 8px;
  }
}

@media only screen and (max-width: 660px) {
  .theme724__block__slider__bonus {
    max-width: 250px;
    bottom: auto;
    top: 50px;
  }
}

@media only screen and (max-width: 650px) {
  .theme724__header .theme724__block__header__menu .theme724__block__phone a {
    padding: 0;
    width: auto;
    height: auto;
    padding: 5px 10px;
  }
  .theme724__header .theme724__block__header__menu .theme724__block__phone a span {
    display: inline;
  }
  .theme724__block__header__contact .theme724__block__phone a {
    background: var(--color-primary);
    padding: 0;
    width: 36px;
  }
  .theme724__block__header__contact .theme724__block__phone a span {
    display: none;
  }
  .theme724__block__header__contact .theme724__block__phone a svg {
    margin-right: 0;
    color: var(--color-white);
    width: 32px;
    height: 32px;
  }
}

@media only screen and (max-width: 630px) {
  .theme724__block__advantages__items {
    display: block;
  }
  .theme724__block__advantages__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .theme724__block__advantages__item:last-of-type {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 600px) {
  input[type="color"],
  input[type="date"],
  input[type="datetime-local"],
  input[type="email"],
  input[type="hidden"],
  input[type="image"],
  input[type="month"],
  input[type="number"],
  input[type="password"],
  input[type="radio"],
  input[type="range"],
  input[type="reset"],
  input[type="search"],
  input[type="submit"],
  input[type="tel"],
  input[type="text"],
  input[type="time"],
  input[type="url"],
  input[type="week"],
  textarea,
  select {
    width: 100%;
  }
  .theme724__block__slider__item__body {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .theme724__block__slider__item__title {
    font-size: 32px;
  }
  .theme724__block__slider__item__image {
    aspect-ratio: 16 / 9;
  }
}

@media only screen and (max-width: 570px) {
  .theme724__block__header__menu .theme724__block__phone__button {
    width: auto;
  }
  .theme724__block__header__menu .theme724__block__phone__button a {
    width: auto;
    padding: 0 10px;
  }
  .theme724__block__header__menu .theme724__block__phone__button a svg {
    width: 18px;
    height: 17px;
    margin-right: 10px;
  }
  .theme724__block__header__menu .theme724__block__phone__button a span {
    display: block;
  }
  .theme724__block__slider__bonus {
    max-width: 150px;
    right: 40px;
  }
}

@media only screen and (max-width: 530px) {
  .theme724__block__slider__bonus {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .theme724__block__slider__item__title {
    font-size: 30px;
  }
}

@media only screen and (max-width: 485px) {
  .theme724__block__slider__item__image {
    aspect-ratio: 16 / 13;
  }
}

@media only screen and (max-width: 480px) {
  ol:not([class]) li:not([class]) {
    font-size: 16px;
    padding-left: 44px;
  }
  table:not([class]), table.tab {
    font-size: 14px;
  }
  h2 {
    font-size: 19px;
  }
  h3 {
    font-size: 19px;
  }
  h4, h5, h6 {
    font-size: 19px;
  }
  h4, h5, h6 {
    font-size: 16px;
  }
  h4, h5, h6 {
    margin: 28px 0  18px;
  }
  ul:not([class]) li:not([class]) {
    font-size: 16px;
    padding-left: 44px;
  }
  ul:not([class]) {
    margin-bottom: 48px;
  }
  .theme724__base__main__head__wrapper {
    grid-template-columns: 1fr 1fr 23px;
  }
  .theme724__base__main__head__decor svg {
    width: 23px;
    height: 15px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .theme724__base__main__title {
    font-size: 20px;
    margin-right: 10px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .theme724__base__main__title h1 {
    font-size: 20px;
    margin-right: 10px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .theme724__base__main__content > p {
    margin: 0 0 16px;
  }
  body {
    font-size: 16px;
  }
  body:not(#tinymce), body:not(.mce-content-body) {
    font-size: 16px;
  }
  a {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
  .theme724__block__about__how_we_work__title {
    font-size: 19px;
  }
  .theme724__block__about__how_we_work__item__title {
    font-size: 19px;
  }
  .theme724__block__about__advantages__item__title {
    font-size: 16px;
  }
  .theme724__block__gallery__gallery__items {
    display: block;
  }
  .theme724__block__gallery__gallery__item {
    margin-bottom: 30px;
  }
  .theme724__block__header__menu__items a {
    font-size: 16px;
  }
  .theme724__block__reviews__reviews__item__text {
    font-size: 14px;
  }
  .theme724__block__reviews__reviews__item__title {
    font-size: 14px;
  }
  .theme724__block__services__services__item__icon {
    width: 90px;
  }
  .theme724__block__services__services__item__icon svg {
    max-width: 70px;
  }
  .theme724__block__services__services__item__title {
    font-size: 19px;
  }
  .theme724__block__services__services__item__title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: var(--color-text);
  }
  .theme724__block__slider__item__title {
    font-size: 30px;
  }
  .theme724__block__slider .theme724__block__phone__link {
    font-size: 28px;
  }
  .theme724__block__slider .theme724__block__phone__link svg {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width: 460px) {
  .theme724__header .theme724__block__header__menu .theme724__block__phone__social {
    display: block;
  }
  .theme724__header .theme724__block__header__menu .theme724__block__phone__social.sticky {
    display: block;
    position: static;
    right: 0;
    top: 0;
  }
  .theme724__header .theme724__block__header__menu .theme724__block__phone__social__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    opacity: 01;
  }
  .theme724__header .theme724__block__header__menu .theme724__block__phone__social__wrapper a {
    margin: 0 5px 0 0;
  }
  .theme724__block__header__contact .theme724__block__phone__social {
    position: absolute;
    -webkit-transform: translate(calc(100% + 50px), 0);
    -ms-transform: translate(calc(100% + 50px), 0);
    transform: translate(calc(100% + 50px), 0);
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
    right: 0px;
    opacity: 0;
    top: calc(100vh - 230px);
  }
  .theme724__block__header__contact .theme724__block__phone__social__wrapper {
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
  }
  .theme724__block__header__contact .theme724__block__phone__social.sticky {
    position: absolute;
    right: 22px;
    top: calc(100vh - 230px);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.8;
    -webkit-transition: all 2s ease;
    -o-transition: all 2s ease;
    transition: all 2s ease;
  }
  .theme724__block__header__contact .theme724__block__phone__social.sticky .theme724__block__phone__social {
    grid-area: theme724__block__phone__social;
  }
  .theme724__block__header__contact .theme724__block__phone__social__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .theme724__block__header__contact .theme724__block__phone__social__wrapper a {
    margin: 0 0 15px;
  }
  .theme724__block__header__menu .theme724__block__phone__social {
    display: block;
    position: static;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1 !important;
    top: 0;
  }
}

@media only screen and (max-width: 420px) {
  table:not([class]) th, table:not([class]) td, table.tab th, table.tab td {
    word-wrap: anywhere;
  }
  .theme724__block__prices__body {
    max-width: 100%;
    overflow: auto;
  }
}

@media only screen and (max-width: 400px) {
  .theme724__header .theme724__block__header__menu .theme724__block__header__contact__wrapper {
    display: block;
  }
  .theme724__header .theme724__block__header__menu .theme724__block__phone a {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 375px) {
  .theme724__block__slider__item__image {
    aspect-ratio: 13 / 13;
  }
  .theme724__block__slider .theme724__block__phone__link {
    font-size: 24px;
  }
  .theme724__block__slider .theme724__block__phone__link svg {
    width: 24px;
    height: 24px;
  }
}

@media only screen and (max-width: 370px) {
  .theme724__block__phone__button__button {
    padding: 15px 10px;
    font-size: 18px;
  }
  .theme724__block__phone__link {
    padding: 15px 10px;
    font-size: 18px;
  }
}

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