

/* Start:/local/templates/cleantown/css/style-lib.css?174425892280855*/
@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

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

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    outline: none;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


@charset 'UTF-8';
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/local/templates/cleantown/css/./fonts/slick.eot');
    src: url('/local/templates/cleantown/css/./fonts/slick.eot?#iefix') format('embedded-opentype'), url('/local/templates/cleantown/css/./fonts/slick.svg#slick') format('svg');
    font-display: swap;
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: transparent !important;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}
.slick-prev:before {
    content: '←';
}
[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before {
    content: '←';
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}



body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}



/* End */


/* Start:/local/templates/cleantown/css/style.css?1750838891122065*/
@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Thin.eot');
    src: local('Montserrat Thin'), local('Montserrat-Thin'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Thin.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Thin.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-ThinItalic.eot');
    src: local('Montserrat Thin Italic'), local('Montserrat-ThinItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ThinItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ThinItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLight.eot');
    src: local('Montserrat ExtraLight'), local('Montserrat-ExtraLight'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLight.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLight.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLightItalic.eot');
    src: local('Montserrat ExtraLight Italic'), local('Montserrat-ExtraLightItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLightItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLightItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Light.eot');
    src: local('Montserrat Light'), local('Montserrat-Light'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Light.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-LightItalic.eot');
    src: local('Montserrat Light Italic'), local('Montserrat-LightItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-LightItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-LightItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Regular.eot');
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Regular.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Italic.eot');
    src: local('Montserrat Italic'), local('Montserrat-Italic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Italic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Italic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Medium.eot');
    src: local('Montserrat Medium'), local('Montserrat-Medium'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Medium.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-MediumItalic.eot');
    src: local('Montserrat Medium Italic'), local('Montserrat-MediumItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-MediumItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-MediumItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-SemiBold.eot');
    src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBold.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-SemiBoldItalic.eot');
    src: local('Montserrat SemiBold Italic'), local('Montserrat-SemiBoldItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBoldItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Bold.eot');
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Bold.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-BoldItalic.eot');
    src: local('Montserrat Bold Italic'), local('Montserrat-BoldItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BoldItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBold.eot');
    src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBold.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBoldItalic.eot');
    src: local('Montserrat ExtraBold Italic'), local('Montserrat-ExtraBoldItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBoldItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-Black.eot');
    src: local('Montserrat Black'), local('Montserrat-Black'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Black.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Black.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/local/templates/cleantown/css/fonts/Montserrat-BlackItalic.eot');
    src: local('Montserrat Black Italic'), local('Montserrat-BlackItalic'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BlackItalic.eot?#iefix') format('embedded-opentype'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BlackItalic.woff') format('woff'),
    url('/local/templates/cleantown/css/fonts/Montserrat-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

* {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-font-smoothing:antialiased;
    -moz-font-smoothing:antialiased;
    -o-font-smoothing:antialiased;
    font-smoothing:antialiased;
    -webkit-tap-highlight-color:transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

html {
    background: #FFFFFF;
}

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


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

body {
    font: 15px 'Montserrat';
    font-weight: normal;
    line-height: 22px;
    width: 100%;
    height: 100%;
    color: #4c4c4c;
}

body input:not([type="checkbox"]),
body select,
body textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    font-family: 'Montserrat';
}

body textarea {
    resize: none;
    overflow: scroll;
}

body textarea::-webkit-scrollbar {
    display: none;
}

body textarea::-webkit-scrollbar-track {
    display: none;
}

body textarea::-webkit-scrollbar-thumb {
    display: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    font-family: 'Montserrat';
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #b4b1b1;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
    font-family: 'Montserrat';
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #b4b1b1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    font-family: 'Montserrat';
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #b4b1b1;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
    font-family: 'Montserrat';
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    color: #b4b1b1;
}

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

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

ol, ul {
    list-style: none;
}

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

a {
    cursor:pointer;
    outline:0;
    border: 0;
    text-decoration:none;
    color:inherit
}

button {
    font-family: 'Montserrat';
    outline: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all .3s ease-out;
}

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

picture {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

picture img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    width: 100%;
    font-family: 'Montserrat';
}

h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #fff;
    margin: 0 0 20px 0;
}

b {
    font-weight: 600;
}

.md, .xs {
    display: none;
}

.wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    background: transparent;
}

.container {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0 40px;
    max-width: 1440px;
}

header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 3;
    padding: 0 40px;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.logo__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 330px;
    height: 60px;
}

header .logo__img {
    filter: brightness(10);
}

.logo__img img {
    object-fit: contain;
}

.logo__text {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    width: 160px;
    display: block;
}

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

.header__contacts {
    display: flex;
    align-items: center;
    margin-left: 47px;
}

.header__contacts a {
    display: flex;
    align-items: center;
    margin-right: 30px;
    position: relative;
}

.header__contacts a:last-child {
    margin-right: 0;
}

.header__contacts span {
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    padding-left: 21px;
    transition: color .3s ease-out;
}

.header__contacts a:hover span {
    color: #00cad4;
}

.header__contacts img {
    transition: opacity .3s ease-out;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header__contacts img:last-of-type,
.header__contacts a:hover img:first-of-type {
    opacity: 0;
}

.header__contacts a:hover img:last-of-type {
    opacity: 1;
}

.header__contacts a:last-child img {
    top: 53%;
}

.header__contacts .whatsapp__icon {
    width: 22px;
    height: 22px;
}

.header__contacts .whatsapp__icon img {
    width: 18px;
    height: 18px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header__search {
    position: relative;
}

.header__search input {
    width: 240px;
    height: 35px;
    border-radius: 17.5px;
    background: transparent;
    border: 1px solid #fff;
    padding: 9px 35px 8px 35px;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    transition: border .3s ease-out;
    text-overflow: ellipsis;
}

.header__search input:hover {
    border: 1px solid #00cad4;
}

.header__search input:focus {
    border: 1px solid #00cad4;
    background: rgba(255, 255, 255, 0.1);
}

.header__search input:-webkit-autofill,
.header__search input:-webkit-autofill:hover,
.header__search input:-webkit-autofill:focus {
    border: 1px solid #00cad4;
    -webkit-text-fill-color: #FFFFFF;
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.header__search input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header__search input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header__search input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header__search input:-moz-placeholder {
    color: #b4b1b1;
}

.btn-search {
    position: absolute;
    top: 9px;
    left: 11px;
    z-index: 2;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.header__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.header__menu ul {
    display: flex;
    align-items: center;
}

.header__menu li {
    margin-right: 10px;
    position: relative;
}

.header__menu a {
    padding: 17px 10px;
    display: block;
}

.header__menu span {
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
    transition: color .3s ease-out;
    white-space: nowrap;
}

.header__menu a:hover span {
    color: #00cad4;
}

.header__burger {
    width: 20px;
    min-width: 20px;
    margin-right: 61px;
    padding: 15px 0 17px 0;
    cursor: pointer;
}

.header__burger div {
    height: 3px;
    width: 100%;
    border-radius: 2px;
    background: #FFFFFF;
    margin-bottom: 3px;
    transition: background .3s ease-out;
}

.header__burger:hover div {
    background: #00cad4;
}

.header__burger div:last-child {
    margin-bottom: 0;
    width: 70%;
}

.header__client .sign-in {
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    padding: 17px 0;
}

.header__client span {
    font-size: 14px;
    line-height: 18px;
    font-weight: bold;
    color: #fff;
    padding-left: 26px;
    text-transform: uppercase;
    transition: color .3s ease-out;
    white-space: nowrap;
}

.header__client .sign-in:hover span {
    color: #00cad4;
}

.header__client img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: opacity .3s ease-out;
    width: 18px;
}

.header__client img:last-of-type,
.header__client .sign-in:hover img:first-of-type {
    opacity: 0;
}

.header__client .sign-in:hover img:last-of-type {
    opacity: 1;
}

.header--fixed {
    position: fixed;
    z-index: 6;
    background: #FFFFFF;
    width: 100%;
    top: -80px;
    left: 0;
    padding: 0 40px;
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
}

.header--fixed.active {
    top: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}

.header--fixed .header__logo {
    margin-right: 20px;
    padding: 10px 0;
}

.header--fixed .logo__text {
    color: #4c4c4c;
}

.header--fixed .logo__img {
    width: 275px;
    position: relative;
    top: -2px;
}

.header--fixed .header__menu {
    margin-right: auto;
}

.header--fixed .header__menu a {
    padding: 27px 2px;
}

.header--fixed .header__menu span {
    color: #4c4c4c;
}

.header--fixed .header__contacts {
    margin-left: 0;
}

.header--fixed .header__contacts span {
    color: #4c4c4c;
    white-space: nowrap;
}

.header--fixed .header__client {
    margin-left: 20px;
}

.header--fixed .header__client .sign-in {
    width: 36px;
    height: 36px;
    padding: 10px;
}

.header--fixed .header__client img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header--fixed .menu__list[data-menu-list="type-list"],
.header--fixed .menu__list[data-menu-list="type-panel"] {
    top: 76px;
}

.menu__list[data-menu-list="type-list"],
.menu__list[data-menu-list="type-panel"] {
    position: absolute;
    top: 56px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
    opacity: 0;
    z-index: -10;
    width: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s ease-out;
}

.menu__list[data-menu-list="type-panel"] .menu__list-inner {
    padding: 20px 40px;
}

.menu__list[data-menu-list="type-list"] ul {
    flex-direction: column;
    align-items: flex-start;
}

.menu__list[data-menu-list="type-panel"] ul {
    flex-wrap: wrap;
    align-items: flex-start;
}

.menu__list[data-menu-list="type-list"] li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #f4f4f4;
    transition: all .3s ease-out;
    font-size: 14px;
    line-height: 18px;
}

.menu__list[data-menu-list="type-list"] li:hover {
    background: #00cad4;
    color: #FFFFFF;
}

.menu__list[data-menu-list="type-panel"] li {
    width: calc(25% - 20px*3/4);
    margin: 0 20px 25px 0;
    display: flex;
    align-items: flex-start;
}

.menu__list[data-menu-list="type-panel"] li:nth-child(4n) {
    margin-right: 0;
}

.menu__list[data-menu-list="type-list"] li:last-child {
    border-bottom: none;
}

.menu__list[data-menu-list="type-list"] a {
    padding: 10px;
    display: block;
    width: 100%;
}

.menu__list[data-menu-list="type-panel"] .item__img {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    position: relative;
}

.menu__list[data-menu-list="type-panel"] .item__img a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
    transition: opacity .3s ease-out;
}

.menu__list[data-menu-list="type-panel"] .item__img:hover a:after {
    opacity: 0.2;
}

.menu__list[data-menu-list="type-panel"] .item__img a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.menu__list[data-menu-list="type-panel"] .item__img img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform .3s ease-out;
}

.menu__list[data-menu-list="type-panel"] .item__img:hover img {
    transform: scale(1.05);
}

.menu__list[data-menu-list="type-panel"] .item__text {
    width: calc(100% - 80px);
}

.menu__list[data-menu-list="type-panel"] .item__title {
    color: #4c4c4c;
    text-transform: initial;
    margin-bottom: 10px;
    display: block;
    white-space: normal;
    font-weight: 500;
    font-size: 16px;
}

.menu__list[data-menu-list="type-panel"] .item__title:hover {
    color: #00cad4;
}

.menu__list[data-menu-list="type-panel"] .item__title a {
    padding: 0;
}

.menu__list[data-menu-list="type-panel"] .item__list {
    display: block;
    color: #4c4c4c;
    text-transform: none;
    font-weight: 300;
    white-space: normal;
    font-size: 0;
    line-height: 0;
}

.menu__list[data-menu-list="type-panel"] .item__list li {
    color: #4c4c4c;
    text-transform: none;
    font-weight: normal;
    width: auto;
    margin: 0 10px 5px 0;
}

.menu__list[data-menu-list="type-panel"] .item__list a {
    padding: 0;
    display: inline;
    position: relative;
    margin-right: 10px;
    line-height: 20px;
    font-size: 14px;
    color: #96A3AE;
    transition: color .3s ease-out;
}

.menu__list[data-menu-list="type-panel"] .item__list a:last-child {
    margin-right: 0;
}

.menu__list[data-menu-list="type-panel"] .item__list a:after {
    content: '';
    position: relative;
    right: 0;
    top: -3px;
    margin-left: 10px;
    background: #96A3AE;
    width: 10px;
    height: 1px;
    min-width: 10px;
    display: inline-block;
}

.menu__list[data-menu-list="type-panel"] .item__list a:last-child:after {
    display: none;
}

.menu__list[data-menu-list="type-panel"] .item__list a:hover {
    color: #02b8c1;
}

.main-page__banner {
    width: 100%;
    height: 785px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-page:not(:has(.main-page__services)) .main-page__banner {
    margin-bottom: 100px;
}

.main-page__banner--full {
    min-height: 785px;
    height: 100dvh;
}

.main-page__banner .container {
    padding: 247px 135px 0 135px;
}

.main-page__banner--full .container {
    padding-top: 158px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.1;
    width: 100%;
    height: 100%;
}

.banner__bg video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.banner__text {
    position: relative;
    z-index: 2;
    width: 705px;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 30px 35px 30px;
}

.banner__info {
    font-size: 25px;
    line-height: 29px;
    text-align: left;
    color: #fff;
    margin-bottom: 28px;
}

.banner__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    border-radius: 3px;
    background: #00cad4;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    transition: background .3s ease-out;
}

.banner__button:hover {
    background: #02b8c1;
}

.main-page {
    overflow: hidden;
}

.main-page__services {
    display: flex;
    margin-bottom: 100px;
    width: 100%;
    height: 316px;
    position: relative;
    overflow: hidden;
}

.main-page__service {
    width: calc(100vw * 25.347 / 100);
    min-width: calc(100vw * 25.347 / 100);
    position: relative;
    height: 316px;
    overflow: hidden;
}

.main-page__service:nth-child(3n) {
    width: calc(100vw * 49.306 / 100);
    min-width: calc(100vw * 49.306 / 100);
}

.main-page__service:nth-child(3n) .service__text {
    max-width: 285px;
}

.main-page__service a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main-page__service .service__bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform .3s ease-out;
}

.main-page__service:hover .service__bg {
    transform: scale(1.05);
}

.main-page__service .service__bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.15;
    width: 100%;
    height: 100%;
}

.main-page__service .service__text {
    position: absolute;
    bottom: 38px;
    left: 40px;
    z-index: 2;
    max-width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}

.main-page__service .service__label {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 18px;
    color: #fff;
    margin-bottom: 11px;
    text-transform: uppercase;
}

.service__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.main-page__services .slick-prev.slick-arrow,
.main-page__services .slick-next.slick-arrow {
    right: 100px;
    left: auto;
    bottom: 40px;
    top: auto;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3) url('/upload/frontend/slider_arrow.svg') no-repeat 12px 13px;
    z-index: 2;
    font-size: 0;
    transform: rotate(180deg);
    transition: background-color .3s ease-out;
}

.main-page__services .slick-next.slick-arrow {
    right: 40px;
    transform: none;
    background-position: 12px 14px;
}

.main-page__services .slick-arrow:before {
    display: none;
}

.main-page__services .slick-arrow:hover {
    background-color: #00CAD4;
}

.our-services {
    margin-bottom: 80px;
    position: relative;
}

.our-services h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.our-services .slider__wrap {
    overflow: scroll;
    width: 100%;
}

.our-services .slider__wrap::-webkit-scrollbar {
    display: none;
}

.our-services .slider__wrap::-webkit-scrollbar-track {
    display: none;
}

.our-services .slider__wrap::-webkit-scrollbar-thumb {
    display: none;
}

.our-services .slider__inner:not(.slick-initialized) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 482px;
}

.our-services .slider-block {
    border-radius: 10px;
    background: #f4f4f4;
    height: 221px;
    width: 325px !important;
    overflow: hidden;
    margin: 0 20px 20px 0;
    position: relative;
}

.our-services .slider-block a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 30px;
    flex-direction: column;
}

.our-services .slider-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s ease-out;
}

.our-services .slider-block:hover .slider-block__bg {
    opacity: 1;
}

.our-services .slider-block__bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4c4c4c;
    opacity: 0;
    transition: opacity .3s ease-out;
}

.our-services .slider-block:hover .slider-block__bg:after {
    opacity: 0.5;
}

.our-services .slider-block__icon {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    transition: opacity .3s ease-out;
    height: 40px;
}

.our-services .slider-block:hover .slider-block__icon {
    opacity: 0;
}

.our-services .slider-block__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #4c4c4c;
    position: relative;
    z-index: 2;
    transition: color .3s ease-out;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.our-services .slider-block:hover .slider-block__title {
    color: #FFFFFF;
}

.our-services .slider-block__link {
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    color: #00cad4;
    position: absolute;
    z-index: 2;
    padding-right: 18px;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    transition: opacity .3s ease-out;
}

.our-services .slider-block:hover .slider-block__link {
    opacity: 1;
}

.our-services .slider-block__link:after {
    content: url('/upload/frontend/slider_more_arrow.svg');
    position: absolute;
    right: 0;
    top: 3px;
}

.our-services .slider__arrows,
.reviews .slider__arrows,
.opportunities .slider__arrows {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
}

.opportunities .slider__arrows {
    top: 50px;
    z-index: 2;
}

.our-services .slider__arrow,
.reviews .slider__arrow,
.opportunities .slider__arrow {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #00cad4 url('/upload/frontend/slider_arrow.svg') no-repeat 11px 13px;
    border: 1px solid #00cad4;
    cursor: pointer;
    transition: opacity .3s ease-out;
}

.our-services .slider__arrow:hover,
.reviews .slider__arrow:hover,
.opportunities .slider__arrow:hover {
    opacity: 0.8;
}

.our-services .slider__arrow.slider__arrow--prev,
.reviews .slider__arrow.slider__arrow--prev,
.opportunities .slider__arrow.slider__arrow--prev {
    transform: rotate(180deg);
    margin-right: 20px;
    background-position: 11px 13px;
}

.our-services .slick-slide {
    font-size: 0;
    line-height: 0;
}

.our-services--v2 .slider__inner:not(.slick-initialized) {
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    gap: 20px;
}

.our-services--v2 .slider__inner .slick-track {
    display: flex;
    gap: 20px;
}

.our-services--v2 .slider-block {
    border-radius: 0;
    background: none;
    height: auto;
    width: min(calc(100vw - 80px - 20px)/2, 670px) !important;;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.slider-block__item {
    border-radius: 20px;
    width: calc(50% - 10px);
    height: min(27.778vw, 400px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.our-services--v2 .slider-block--top .slider-block__item:first-child {
    width: 100%;
}

.our-services--v2 .slider-block--bottom .slider-block__item:nth-child(3) {
    width: 100%;
}

.our-services--v2 .slider-block__item a {
    justify-content: flex-end;
    padding: 20px;
}

.our-services--v2 .slider-block__bg {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-services--v2 .slider-block__bg:after {
    display: none;
}

.our-services--v2 .slider-block__bg img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.our-services--v2 .slider-block__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.our-services--v2 .slider-block__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}

.our-services--v2 .slider-block__info {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.our-services--v2 .slider__arrow.slick-disabled {
    opacity: 0.6;
    cursor: auto;
}

.our-works {
    margin-bottom: 30px;
    position: relative;
}

.our-works:before {
    content: url('/upload/frontend/our_works_arrow_bg.svg');
    position: absolute;
    top: -35px;
    left: 260px;
    transform: rotate(342deg);
}

.our-works h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.our-works p {
    max-width: 555px;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 28px;
    color: #4c4c4c;
}

.our-works__slider {
    display: flex;
    overflow: hidden;
    height: 550px;
}

.our-works__slider.slick-slider {
    overflow: visible;
}

.our-works__slide {
    border-radius: 10px;
    width: 100%;
    min-width: 100%;
    height: 550px;
    overflow: hidden;
    background: #F2F3F7;
    padding: 50px;
    position: relative;
}

.our-works__slide.slick-slide {
    min-width: auto;
}

.our-works__slide[data-type="slider-slide"] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.our-works .our-works__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: inherit;
}

.our-works__text {
    width: 390px;
    min-width: 390px;
    margin-right: 50px;
    position: relative;
    z-index: 2;
}

.our-works__logo {
    margin-bottom: 48px;
}

.our-works__slide[data-type="slider-slide"] .our-works__img {
    width: calc(100% - 440px);
    max-width: 820px;
    border-radius: 10px;
    height: 450px;
    overflow: hidden;
}

.our-works__slide[data-type="video-slide"] .our-works__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-works__slide[data-type="video-slide"] .our-works__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
}

.our-works__slide[data-type="video-slide"] .picture--back {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-works__slide[data-type="slider-slide"] .picture__block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.our-works__slide[data-type="slider-slide"] .picture__block a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.template--services .our-works__slide picture {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.template--services .our-works__slide picture img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.our-works__img .slick-dots {
    position: absolute;
    bottom: 10px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-works__img .slick-dots li {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid #00cad4;
    border-radius: 50%;
    margin: 0 5px 0 0;
    transition: all .3s ease-out;
}

.our-works__img .slick-dots li.slick-active {
    width: 12px;
    height: 12px;
    background: #00cad4;
    border: 1px solid #00cad4;
}

.our-works__img .slick-dots li:last-child {
    margin: 0;
}

.our-works__img .slick-dots button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.our-works__slide[data-type="slider-slide"] .our-works__img .slick-arrow {
    left: 0;
    width: 70px;
    height: 100%;
    top: 0;
    transform: none;
    background: transparent;
    cursor: url('/upload/frontend/slider_cursor_arrow_left.svg'), w-resize;
    border: 0;
}

.our-works__slide[data-type="slider-slide"] .our-works__img .slick-arrow.slick-next {
    left: auto;
    right: 0;
    cursor: url('/upload/frontend/slider_cursor_arrow.svg'), e-resize;
}

.our-works__img .slick-dots button:before {
    display: none;
}

.our-works__slider .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #fff url(/upload/frontend/our_services_arrow_grey_prev.svg) no-repeat 11px 13px;
    border: 1px solid #f4f4f4;
    cursor: pointer;
    transition: background .3s ease-out, border .3s ease-out;
    right: -20px;
    z-index: 2;
}

.our-works__slider .slick-arrow.slick-prev {
    transform: rotate(180deg) translateY(20px);
    background-position: 11px 13px;
    left: -20px;
    right: auto;
}

.our-works__slider .slick-arrow:hover {
    background: #00cad4 url('/upload/frontend/slider_arrow.svg') no-repeat 11px 13px;
    border: 1px solid #00cad4;
}

.our-works__look-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.our-works__look-video a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-works__look-video span {
    position: relative;
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    padding-top: 110px;
    background: url('/upload/frontend/play_video.svg') no-repeat top center;
    transition: background .3s ease-out;
}

.our-works__look-video:hover span {
    background: url('/upload/frontend/play_video_blue.svg') no-repeat top center;
}

.our-works__slider > .slick-dots {
    left: 50px;
    bottom: 50px;
    width: auto;
    counter-reset: my_counter;
    display: flex;
    align-items: center;
}

.our-works__slider_nav {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 400px;
}

.our-works__slider_nav .slick-dots {
    position: relative;
    top: 0;
    left: 0;
    counter-reset: my_counter;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.our-works__slider_nav_inner {
    width: 100%;
}

.our-works__slider_nav--rightside .our-works__slider_nav_inner,
.our-works__slider_nav--leftside .our-works__slider_nav_inner {
    max-width: calc(100% - 60px);
}

.our-works__slider_nav--bothside .our-works__slider_nav_inner {
    max-width: calc(100% - 120px);
}

.our-works__slider > .slick-dots button,
.our-works__slider_nav .slick-dots button {
    display: none;
}

.our-works__slider > .slick-dots li,
.our-works__slider_nav .slick-dots li {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin: 0 20px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 22px;
    color: inherit;
    transition: color .3s ease-out;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.template--services .our-works__slider > .slick-dots li:before,
.our-works__slider_nav .slick-dots li:before,
.template--services .our-works__img .slick-dots li:before {
    display: none;
}

.our-works__slider > .slick-dots li:after,
.our-works__slider_nav .slick-dots li:after {
    content: '0' counter(my_counter);
    counter-increment: my_counter;
    position: relative;
    font-weight: 400;
}

.our-works__slider_nav .slick-dots li:nth-child(n + 10):after {
    content: counter(my_counter);
    counter-increment: my_counter;
}

.our-works__slider > .slick-dots li:last-child,
.our-works__slider_nav .slick-dots li:last-child {
    margin: 0;
}

.our-works__slider > .slick-dots li.slick-active,
.our-works__slider_nav .slick-dots li.slick-active {
    border: 1px solid transparent;
}

.our-works__slider_nav_arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin: 0 20px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 22px;
    color: inherit;
    transition: color .3s ease-out;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.our-works__slider_nav_arrow--hidden {
    display: none;
}

.our-works__slider_nav_arrow--prev {
    transform: rotate(-180deg);
}

.our-works__slider_nav_arrow--next {
    margin: 0 0 0 20px;
}

.our-works__slider_nav_arrow div:first-child,
.our-works__slider_nav_arrow div:last-child {
    position: absolute;
    top: 15px;
    left: 16px;
    background: #FFFFFF;
    height: 1.5px;
    width: 9px;
    border-radius: 2px;
    transform: rotate(45deg);
}

.our-works__slider_nav_arrow div:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.our-works .dial__wrap {
    position: absolute;
    top: -1px;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients {
    border-radius: 10px;
    background: #f2fdfd;
    padding: 0 50px 0 115px;
    display: flex;
    align-items: center;
    height: 305px;
    overflow: hidden;
    margin-bottom: 100px;
}

.clients__list {
    width: 505px;
    min-width: 505px;
    margin-left: 20px;
    height: 100%;
    overflow: scroll;
}

.clients__list::-webkit-scrollbar {
    display: none;
}

.clients__list::-webkit-scrollbar-track {
    display: none;
}

.clients__list::-webkit-scrollbar-thumb {
    display: none;
}

.clients__text {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 50px 0;
    width: calc(100% - 525px);
    justify-content: center;
}

.clients__text p {
    font-size: 15px;
    line-height: 22px;
    color: #4c4c4c;
    margin-bottom: 13px;
}

.clients__text .clients__title {
    font-weight: 500;
    font-size: 45px;
    line-height: 50px;
}

.clients__text .clients__title .highlighted {
    color: #00cad4;
}

.clients__buttons {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.btn {
    width: 240px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: transparent;
    border: 1px solid #00cad4;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 18px;
    text-align: center;
    color: #4c4c4c;
    text-transform: uppercase;
    transition: background .3s ease-out;
}

.btn:hover {
    background: #f4f4f4;
}

.btn.btn--blue {
    background: #00cad4;
    color: #FFFFFF;
}

.btn.btn--blue:hover {
    background: #02b8c1;
}

.clients__buttons .btn.btn--blue {
    margin-right: 20px;
}

.clients__inner {
    display: flex;
    flex-wrap: wrap;
}

.clients__block {
    width: 144px;
    height: 87px;
    margin: 0 35px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients__block:nth-child(3n) {
    margin-right: 0;
}

.clients__block img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    min-height: 445px;
}

.about h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin: 0 0 32px 0;
}

.about__text {
    width: calc(100% - 565px);
}

.about__text p {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    text-align: left;
    color: #4c4c4c;
    margin-bottom: 7px;
}

.about__text p:last-of-type {
    margin-bottom: 0;
}

.about__text .upper {
    font-weight: 500;
    font-size: 40px;
    line-height: 45px;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.about__text .highlighted {
    color: #00cad4;
}

.about__graphics {
    width: 460px;
    min-width: 460px;
    margin-left: 105px;
    position: relative;
}

.about__graphics--block {
    position: absolute;
}

.about__graphics--block[data-graphics="coverage"] {
    top: 12px;
    left: 0;
    height: 250px;
    width: 250px;
}

.about__graphics--block[data-graphics="coverage"] .graphics__text {
    position: absolute;
    top: 82px;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    left: 50%;
    transform: translateX(-50%);
}

.about__graphics--block[data-graphics="coverage"] .value--computed {
    font-weight: 800;
    font-size: 48px;
    line-height: 65px;
    color: #00cad4;
}

.about__graphics--block .value {
    display: block;
    font-size: 36px;
    line-height: 49px;
    color: #00cad4;
    font-weight: 800;
}

.about__graphics--block[data-graphics="coverage"] .value {
    font-size: 48px;
    line-height: 65px;
}

.about__graphics--block[data-graphics="coverage"] .value--min {
    margin-right: 5px;
    font-size: 30px;
    line-height: 43px;
}

.about__graphics--block .title {
    font-size: 14px;
    line-height: 19px;
    color: #96A3AE;
}

.about__graphics--block[data-graphics="coverage"] .title {
    position: absolute;
    top: 146px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.about__graphics--block[data-graphics="coverage"] input {
    font-size: 0 !important;
}

.about__graphics--block[data-graphics="advertise"] {
    top: 350px;
    left: 0;
}

.about__graphics--block[data-graphics="period"] {
    top: 260px;
    left: 200px;
}

.about__buttons {
    margin-top: 28px;
    display: flex;
    align-items: center;
}

.about__buttons .btn.btn--blue {
    margin-right: 20px;
}

.form {
    border-radius: 10px;
    background: #f2fdfd;
    padding: 30px 30px 30px 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}

.form__right {
    width: calc(100% - 690px);
    max-width: 525px;
    margin-left: 20px;
    height: 333px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.form__left {
    width: 670px;
    min-width: 670px;
}

.form__title {
    font-weight: 500;
    font-size: 50px;
    line-height: 55px;
    color: #00cad4;
    margin-bottom: 13px;
}

.form__subtitle {
    font-size: 15px;
    line-height: 22px;
    color: #4c4c4c;
    margin-bottom: 27px;
}

.form .captcha_wrap {
    margin-bottom: 30px;
}

.form__row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.form__field {
    position: relative;
    width: calc(100%/3 - 20px*2/3);
    margin: 0 20px 0 0;
}

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

.form__field .title {
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    color: #4c4c4c;
    margin-bottom: 4px;
    display: block;
}

.form__field .title .highlighted {
    color: #f80559;
}

.form__field input {
    border-radius: 3px;
    background: transparent;
    border: 1px solid #dedcdc;
    height: 50px;
    width: 100%;
    padding: 0 15px;
    text-overflow: ellipsis;
    transition: all .3s ease-out;
    font-size: 14px;
    line-height: 16px;
    color: #4c4c4c;
}

.form__field:hover input,
.form__field input:focus {
    border: 1px solid #00cad4;
}

.form__field input:-webkit-autofill,
.form__field input:-webkit-autofill:hover,
.form__field input:-webkit-autofill:focus {
    border: 1px solid #dedcdc;
    -webkit-text-fill-color: #4c4c4c;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form__field.form__field--warning input {
    border: 1px solid #FB0F0F;
}

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

.form__button {
    width: 240px;
    min-width: 240px;
    height: 50px;
    border-radius: 3px;
    background: #00cad4;
    margin-right: 20px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
    transition: background .3s ease-out;
}

.form__button:hover {
    background: #02b8c1;
}

.form__button.active {
    background: #02b8c1;
    cursor: auto;
}

.form__agreement {
    font-size: 12px;
    line-height: 18px;
    color: #4c4c4c;
}

.form__agreement a {
    border-bottom: 1px solid #4c4c4c;
    transition: border .3s ease-out;
}

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

.our-clients {
    margin-bottom: 80px;
}

.our-clients h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 30px;
    text-align: center;
}

.our-clients .slider__inner {
    line-height: 0;
}

.our-clients .slider__wrap {
    display: flex;
    overflow: hidden;
}

.our-clients .slider__inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 380px;
    animation: scroll 20s linear infinite;
    transform: translateX(50%);
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.our-clients .slider__inner::-webkit-scrollbar {
    display: none;
}

.our-clients .slider__inner::-webkit-scrollbar-track {
    display: none;
}

.our-clients .slider__inner::-webkit-scrollbar-thumb {
    display: none;
}

.our-clients .slider-block {
    width: 210px !important;
    height: 170px;
    margin: 0 48px 20px 0;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.our-clients .slider-block img {
    filter: grayscale(1);
    transition: filter .3s ease-out;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.our-clients .slider-block:hover img {
    filter: grayscale(0);
}

.map h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.map__locations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.map__location {
    margin: 0 30px 30px 0;
    position: relative;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: #00cad4;
    padding-left: 27px;
    filter: grayscale(1) brightness(0.4);
    transition: filter .3s ease-out;
    background: url('/upload/frontend/location_icon.svg') no-repeat 0 4px;
    cursor: pointer;
}

.map__location.active,
.map__location:hover {
    filter: none;
}

#map {
    width: calc(100% + 80px);
    height: 424px;
    margin-left: -40px;
}

.ymaps-2-1-79-balloon__close-button {
    display: none !important;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    padding: 15px 12px !important;
    margin: 0 !important;
    min-width: 320px;
    box-sizing: border-box;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content > ymaps {
    min-width: 100%;
}

.baloon__content--close {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url('/upload/frontend/close_ring_light.svg') no-repeat center center;
    opacity: 1;
    position: absolute;
    top: 5px;
    right: 6px;
    z-index: 10;
}

.baloon__content--title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #4C4C4C;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.8);
    margin-bottom: 15px;
}

.baloon__content--title span {
    max-width: 90%;
    display: inline-block;
}

.baloon__content--row {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #050606;
    margin-bottom: 10px;
}

.baloon__content--row:last-child {
    margin-bottom: 0;
}

.baloon__content--row span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 12px;
    line-height: 18px;
    color: #96A3AE;
    margin-right: 10px;
    min-width: 60px;
    display: inline-block;
}

#map .clusterIcon {
    background: #00cad4;
    border: 4px solid #FFFFFF;
    box-sizing: border-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    width: 35px;
    height: 35px;
    text-align: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    color: #FFFFFF;
    cursor: pointer;
}

#map .ymaps-2-1-79-places-pane .ymaps-2-1-79-image {
    background-repeat: no-repeat;
    background-position: center;
}

footer {
    background: #2f3338;
}

.footer--main .container {
    padding: 58px 40px 47px 40px;
    display: flex;
    align-items: flex-start;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footer__column {
    margin-right: 60px;
    width: calc(25% - 60px*3/4);
}

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

.column__title {
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    transition: color .3s ease-out;
}

.column__title a {
    transition: color .3s ease-out;
}

.column__title:hover,
.column__title:hover a {
    color: #00cad4;
}

.column__list li {
    font-size: 14px;
    line-height: 18px;
    color: #b4b1b1;
    margin-bottom: 10px;transition: color .3s ease-out;
}

.column__list li:hover {
    color: #00cad4;
}

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

.footer__right a {
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    display: block;
}

.footer__right a img,
.footer__right .btn img {
    transition: opacity .3s ease-out;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer__right img:last-of-type,
.footer__right a:hover img:first-of-type,
.footer__right .btn:hover img:first-of-type {
    opacity: 0;
}

.footer__right .btn:hover img:last-of-type,
.footer__right a:hover img:last-of-type {
    opacity: 1;
}

.footer__right span {
    padding-left: 21px;
    transition: color .3s ease-out;
}

.footer__right .btn:hover span,
.footer__right a:hover span {
    color: #00cad4;
}

.footer__right .btn {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    border: 0;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 16px;
    text-align: left;
    color: #fff;
    position: relative;
    margin: 0 0 18px 0;
    background: transparent;
}

.footer__social {
    margin-bottom: 40px;
}

.social-icons {
    position: relative;
    text-align: center;
}

.social-icons:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.social-icons ul {
    position: relative;
    display: inline-block;
    padding: 0 32px;
    background: #2f3338;
    z-index: 1;
}

.social-icons ul li {
    display: inline-block;
    vertical-align: top;
    margin: 4px;
    padding: 0;
}

.social-icons ul li a {
    display: block;
    width: 43px;
    height: 43px;
    border-radius: 3px;
    opacity: 0.5;
    border: 1px solid rgba(255,255,255,0.2);
    background: url(/bitrix/templates/aspro-priority/images/svg/social.svg) 0 0 no-repeat;
    transition: opacity 0.3s ease;
    font-size: 0;
    line-height: 0;
}

.social-icons ul li.vk a {
    background-position: -1px -377px;
}

.social-icons ul li.facebook a {
    background-position: -95px -377px;
}

.social-icons ul li.twitter a {
    background-position: -1px -424px;
}

.social-icons ul li.instagram a {
    background-position: -142px -518px;
}

.social-icons ul li.telegram a {
    background-position: -330px -518px;
}

.social-icons ul li.ytb a {
    background-position: -95px -518px;
}

.social-icons ul li.odn a {
    background-position: -48px -377px;
}

.social-icons ul li.mail a {
    background-position: -377px -424px;
}

.social-icons ul li.whatsapp a {
    background-position: -330px -424px;
}

.social-icons li.yandex_dzen a {
    background-position:-470px -329px;
}

.social-icons ul li a:hover {
    opacity: 1;
    border-color: transparent;
}

.social-icons ul li.vk a:hover {
    background-position: -1px -189px;
}

.social-icons ul li.twitter a:hover {
    background-position: 0 -235px;
}

.social-icons ul li.facebook a:hover {
    background-position: -94px -188px;
}

.social-icons ul li.instagram a:hover {
    background-position: -141px -329px;
}

.social-icons ul li.ytb a:hover {
    background-position: -94px -329px;
}

.social-icons ul li.odn a:hover {
    background-position: -47px -188px;
}

.social-icons ul li.mail a:hover {
    background-position: -376px -235px;
}

.social-icons ul li.whatsapp a:hover {
    background-position: -330px -236px;
}

footer .social-icons ul li.telegram a:hover {
    background-position: -330px -330px;
}

footer .social-icons ul li.yandex_dzen a:hover {
    background-position: -470px -329px;
}

.footer--bottom {
    padding-bottom: 32px;
}

.footer--bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #b4b1b1;
}

.links {
    display: flex;
    font-size: 14px;
    line-height: 22px;
    color: #b4b1b1;
    align-items: center;
    text-transform: uppercase;
}

.links .footer__dev {
    margin-left: 60px;
    transition: color .3s ease-out;
}

.links a {
    transition: color .3s ease-out;
}

.links .footer__dev:hover,
.links a:hover {
    color: #00cad4;
}

.opportunities {
    position: relative;
    padding: 50px 0;
    margin-bottom: 50px;
}

.opportunities:before {
    content: '';
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f2fdfd;
}

.opportunities h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.opportunities__wrap:not(.slick-initialized) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 506px;
    position: relative;
    z-index: 2;
    overflow: scroll;
}

.opportunities__wrap::-webkit-scrollbar {
    display: none;
}

.opportunities__wrap::-webkit-scrollbar-track {
    display: none;
}

.opportunities__wrap::-webkit-scrollbar-thumb {
    display: none;
}

.opportunities__block {
    position: relative;
    height: 233px;
    margin: 0 20px 20px 0;
    width: 210px !important;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.opportunities__block a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.opportunities__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opportunities__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4c4c4c;
    opacity: 0.6;
    transition: all .3s ease-out;
}

.opportunities__block:hover .opportunities__img:after {
    background: #00cad4;
    opacity: 0.79;
}

.opportunities__img img {
    transition: transform .3s ease-out;
}

.opportunities__block:hover .opportunities__img img {
    transform: scale(1.05);
}

.opportunities__title {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    color: #f8f8f8;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.opportunities__more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #f8f8f8;
    z-index: 2;
    padding-right: 19px;
}

.opportunities__more:after {
    content: url('/upload/frontend/opportunities_more.svg');
    position: absolute;
    top: 3px;
    right: 0;
}

.reviews {
    margin-bottom: 100px;
    position: relative;
}

.reviews h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    text-align: left;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.reviews__wrap {
    display: flex;
    overflow: scroll;
}

.reviews__wrap::-webkit-scrollbar {
    display: none;
}

.reviews__wrap::-webkit-scrollbar-track {
    display: none;
}

.reviews__wrap::-webkit-scrollbar-thumb {
    display: none;
}

.reviews__block {
    width: 578px;
    min-width: 578px;
    height: 416px;
    margin-right: 30px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #f4f4f4;
    overflow: hidden;
}

.reviews__block a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review__body {
    height: 312px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.review__body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.1;
}

.review__body:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url('/upload/frontend/play_video.svg') no-repeat center center;
    background-size: contain;
    transition: background .3s ease-out;
}

.reviews__block:hover .review__body:after {
    background: url(/upload/frontend/play_video_blue.svg) no-repeat center center;
    background-size: contain;
}

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

.review__header {
    padding: 28px 30px 28px 29px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review__title {
    font-weight: bold;
    font-size: 15px;
    line-height: 22px;
    color: #00cad4;
    margin-bottom: 3px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.review__author {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: #4c4c4c;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.popup-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background: #FFFFFF;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: scroll;
    display: none;
}

.popup-menu::-webkit-scrollbar {
    display: none;
}

.popup-menu::-webkit-scrollbar-track {
    display: none;
}

.popup-menu::-webkit-scrollbar-thumb {
    display: none;
}

.popup-menu.active {
    display: block;
}

.popup-menu__header {
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 20px;
}

.popup-menu__header .container {
    display: flex;
    align-items: center;
    padding: 20px 40px;
}

.popup-menu__back {
    padding: 10px;
    margin: 0 20px 0 -10px;
    cursor: pointer;
}

.popup-menu__back i {
    display: block;
    width: 18px;
    height: 14px;
    opacity: 0.35;
    background: #333 url('/bitrix/templates/aspro-priority/images/svg/content_icons.svg') -18px -155px no-repeat;
}

.popup-menu__logo .logo__img {
    position: relative;
    top: -2px;
}

.popup-menu__close {
    margin: 0 -10px 0 auto;
    width: 34px;
    height: 34px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('/upload/frontend/popup_menu_close.svg') no-repeat center center;
    cursor: pointer;
}

.popup-menu--search {
    position: relative;
    margin-bottom: 50px;
    height: 48px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
}

.popup-menu--search form {
    display: block;
    width: 100%;
    height: 100%;
}

.popup-menu--search input {
    display: block;
    width: 100%;
    padding: 0 52px 0 19px;
    height: 100%;
    border: 0;
    font-size: 14px;
    line-height: 16px;
    color: #4c4c4c;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popup-menu--search input:-webkit-autofill,
.popup-menu--search input:-webkit-autofill:hover,
.popup-menu--search input:-webkit-autofill:focus {
    border: 0;
    -webkit-text-fill-color: #4c4c4c;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.popup-menu--search .btn-search {
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    border: 0;
    width: 52px;
    text-align: center;
    height: auto;
}

.popup-menu--search .svg-search {
    width: 17px;
    height: 18px;
    background-image: url('/bitrix/templates/aspro-priority/images/svg/header_icons.svg');
    background-position: -29px 0;
    opacity: 0.35;
    background-color: #333333;
    transition: all .3s ease-out;
}

.popup-menu--search .btn-search:hover .svg-search {
    background-color: #49bbc7;
    opacity: 1;
}

.popup-menu__content {
    display: flex;
    flex-wrap: wrap;
}

.popup-menu__content.md {
    display: none;
}

.popup-menu__column {
    width: calc(25% - 50px*3/4);
    margin: 0 50px 50px 0;
}

.popup-menu__column:nth-child(4n) {
    margin-right: 0;
}

.popup-menu__column .column__title,
.popup-menu__column .column__list li {
    color: #4c4c4c;
}

.popup-menu__column .column__list li {
    /*transition: height .3s ease-out;*/
    overflow: hidden;
    position: relative;
}

.popup-menu__column .column__list > ul > li {
    transition: height .3s ease-out;
}

.popup-menu__column .column__list a:hover {
    color: #00cad4;
}

.popup-menu__column .column__list a {
    transition: color .3s ease-out;
    line-height: 18px;
    display: inline-block;
}

.popup-menu__column .column__list a.highlighted {
    font-weight: 500;
}

.popup-menu__column .column__list li ul {
    padding: 15px 0 5px 15px;
    display: none;
}

.popup-menu__column .column__list li.active > ul {
    display: block;
}

.popup-menu__column .item__button {
    width: 20px;
    height: 20px;
    position: absolute;
    margin-left: 5px;
    background: transparent url('/upload/frontend/item_button_down.svg') no-repeat 5px 4px;
    background-size: 9px;
    transition: background .3s ease-out;
}

.popup-menu__column .item__button:hover {
    background: transparent url('/upload/frontend/item_button_down_blue.svg') no-repeat 5px 4px;
    background-size: 9px;
    opacity: 0.6;
}

.popup-menu__column .column__list li.active > .item__button {
    background: transparent url('/upload/frontend/item_button_down_blue.svg') no-repeat 5px 4px;
    background-size: 9px;
    transform: rotate(180deg);
}

.advertising {
    margin-bottom: 100px;
    position: relative;
}

.advertising h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #4c4c4c;
    margin-bottom: 25px;
    position: relative;
}

.advertising__wrap {
    height: 512px;
    position: relative;
}

.advertising__wrap:before {
    content: '';
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('/upload/frontend/entrance_bg.jpg') repeat-x;
}

.advertising__stand {
    position: absolute;
    top: 44px;
    left: 4.8%;
    cursor: pointer;
    transition: all .3s ease-out;
    z-index: 3;
}

.advertising__stand.active {
    z-index: 5;
    top: -21.5%;
    left: 35.7%;
}

.advertising__text {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: #4c4c4c;
}

.advertising__stand .advertising__text {
    background: url(/upload/frontend/text_bg_1.png) no-repeat;
    padding: 0 8px 0 6px;
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    transition: all .3s ease-out;
}

.advertising__stand.active .advertising__text {
    top: -4px;
    left: 74px;
}

.advertising__stand .advertising__text:after {
    content: url('/upload/frontend/arrow1.svg');
    position: absolute;
    right: -21px;
    top: 34px;
    transition: all .3s ease-out;
}

.advertising__stand.active .advertising__text:after {
    right: -123px;
}

.advertising__stand .advertising__img {
    width: 222px;
    height: 300px;
    margin-top: 60px;
    transition: all .3s ease-out;
    cursor: url('/upload/frontend/slider_cursor_zoom.svg'), zoom-in;
}

.advertising__stand.active .advertising__img {
    width: 400px;
    height: 540px;
    cursor: auto;
}

.advertising__formats {
    position: absolute;
    left: 140px;
    bottom: 22px;
    width: 221px;
    height: 310px;
    display: none;
}

.advertising__stand.active .advertising__formats {
    display: block;
}

.advertising__formats > div {
    position: absolute;
    border: 3px solid transparent;
    transition: border .3s ease-out;
}

.advertising__formats > div:hover {
    border: 3px solid #FB0F0F;
    border-radius: 3px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}

.advertising__format--a2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.advertising__format--a3 {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 3;
}

.advertising__format--a4 {
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    z-index: 4;
}

.advertising__format {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    font-weight: bold;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #FB0F0F;
    padding: 0;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
    transition: opacity .3s ease-out;
    width: 0;
    height: 0;
    overflow: hidden;
}

.advertising__format:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    transform: translateX(-50%) rotate(45deg);
    background: #FFFFFF;
}

.advertising__formats > div:hover .advertising__format {
    opacity: 1;
    padding: 20px;
    width: auto;
    height: auto;
    overflow: visible;
}

.advertising__lift {
    position: absolute;
    top: 0;
    left: 28.5%;
    cursor: pointer;
    height: 100%;
}

.advertising__lift .advertising__img {
    width: 345px;
    height: 100%;
}

.advertising__lift .advertising__text {
    position: absolute;
    top: 284px;
    left: 69px;
    background: url('/upload/frontend/text_bg_2.png') no-repeat;
    padding: 0 8px 0 6px;
}

.advertising__lift .advertising__text:after {
    content: url('/upload/frontend/arrow2.svg');
    position: absolute;
    right: 9px;
    top: -66px;
}

.advertising__tv {
    position: absolute;
    top: 102px;
    left: 62px;
    width: 165px;
    height: 102px;
    border-radius: 2px;
    background: #10110f;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all .3s ease-out;
    z-index: 3;
}

.advertising__tv.active {
    z-index: 5;
    top: -4%;
    left: -25%;
    width: 742px;
    height: 459px;
    padding: 20px;
    border-radius: 8px;
}

.advertising__tv .video__block--inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.advertising__tv img,
.advertising__tv video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.advertising__tv:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url('/upload/frontend/play_video.svg') no-repeat center center;
    background-size: contain;
    transition: background .3s ease-out;
}

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

.advertising__tv:hover:after {
    background: url('/upload/frontend/play_video_blue.svg') no-repeat center center;
    background-size: contain;
}

.advertising__car {
    position: absolute;
    bottom: -6px;
    right: -39%;
    cursor: pointer;
    transition: right .6s ease-out;
}

.advertising__car.active {
    right: -3%;
}

.advertising__car .advertising__img {
    width: 777px;
    height: 388px;
}

.advertising__car .advertising__text {
    position: absolute;
    top: -42px;
    left: 193px;
    background: url('/upload/frontend/text_bg_3.png') no-repeat;
    padding: 0 8px 0 6px;
}

.advertising__car .advertising__text:after {
    content: url('/upload/frontend/arrow3.svg');
    position: absolute;
    left: -35px;
    top: 22px;
}

.advertising__video {
    position: absolute;
    top: 34px;
    right: 44px;
    width: 442px;
    height: 224px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertising__video .video__block--inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advertising__video .video__block--inner img,
.advertising__video .video__block--inner video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.advertising__shadow {
    height: calc(100% + 171px);
    width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    opacity: 0;
    padding: 50px 0;
    transition: all .3s ease-out;
}

.advertising__shadow.active {
    opacity: 0.9;
    z-index: 4;
}

.advertising__shadow .container {
    position: relative;
}

.advertising__close {
    position: absolute;
    top: 0;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #fff url('/upload/frontend/shadow_close.svg') no-repeat center center;
    border: 1px solid #dedcdc;
    transition: all .3s ease-out;
    cursor: pointer;
}

.advertising__close:hover {
    background: #00cad4 url('/upload/frontend/shadow_close_white.svg') no-repeat center;
    border: 1px solid #dedcdc;
}

.advertising__blur {
    position: absolute;
    top: 112px;
    left: 30px;
    width: 328px;
    height: 154px;
    align-items: center;
    display: none;
}

.advertising__stand.active .advertising__blur {
    display: flex;
}

.advertising__blur div {
    background-color: rgba(255, 255, 255, 0.1);
    height: 100%;
    backdrop-filter: blur(4px);
    position: relative;
}

.advertising__blur div:first-child {
    left: 2px;
    width: 105px;
    height: 150px;
}

.advertising__blur div:nth-child(2) {
    left: 9px;
    width: 103px;
    height: 150px;
}

.advertising__blur div:nth-child(3) {
    top: -1px;
    left: 19px;
    width: 98px;
    height: 144px;
}

.advertising__blur div:nth-child(4) {
    top: 156px;
    left: 1px;
    width: 108px;
    height: 153px;
    position: absolute;
}

.advertising__blur div:nth-child(5) {
    top: 313px;
    left: 1px;
    width: 108px;
    height: 150px;
    position: absolute;
}

.wrapper--shadow {
    display: none;
    content: '';
    background: #333333;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 6;
}

.wrapper--shadow.active {
    display: block;
}

.popup-form {
    position: fixed;
    top: 0;
    right: -600px;
    width: 580px;
    max-width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: #FFFFFF;
    padding: 70px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    z-index: 7;
    transition: right .4s ease-out;
    overflow: scroll;
}

.popup-form::-webkit-scrollbar {
    display: none;
}

.popup-form::-webkit-scrollbar-track {
    display: none;
}

.popup-form::-webkit-scrollbar-thumb {
    display: none;
}

.popup-form.active {
    right: 0;
}

.popup-form__close {
    margin: 0 -10px 0 auto;
    width: 34px;
    height: 34px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: url('/upload/frontend/popup_menu_close.svg') no-repeat center center;
    cursor: pointer;
    top: 40px;
    right: 40px;
    transition: opacity .3s ease-out;
}

.popup-form__close:hover {
    opacity: 0.8;
}

.popup-form__close:active {
    opacity: 1;
}

.popup-form__title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 25px;
    font-weight: 500;
}

.popup-form__subtitle {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 50px;
}

.popup-form .captcha_wrap {
    margin-bottom: 35px;
    flex-direction: column;
}

.captcha_message {
    font-size: 14px;
    line-height: 14px;
    color: #fb5f5f;
    margin-top: 5px;
}

.captcha_messag:empty {
    margin-top: 0;
}

.popup-form__field {
    display: block;
    margin-bottom: 35px;
    position: relative;
}

.popup-form__field .field__text {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 14px;
    color: #4c4c4c;
}

.popup-form__field .field__text .highlighted {
    color: #fb5f5f;
}

.popup-form__field .field__error {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    line-height: 14px;
    color: #fb5f5f;
    display: none;
}

.popup-form__field.warning .field__error {
    display: block;
}

.popup-form__field textarea {
    border: 1px solid #e1e1e1;
    width: 100%;
    resize: none;
    height: 90px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 14px;
    color: #4c4c4c;
    background: transparent;
    border-radius: 3px;
}

.popup-form__field input {
    border: 1px solid #e1e1e1;
    width: 100%;
    height: 45px;
    padding: 0 15px;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 14px;
    color: #4c4c4c;
    background: transparent;
    border-radius: 3px;
    transition: border .3s ease-out;
}

.popup-form__field input:-webkit-autofill,
.popup-form__field input:-webkit-autofill:hover,
.popup-form__field input:-webkit-autofill:focus {
    border: 1px solid #e1e1e1;
    -webkit-text-fill-color: #4c4c4c;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.popup-form__field.warning input {
    border: 1px solid #fb5f5f;
}

.popup-form__policy {
    margin-bottom: 35px;
    position: relative;
    display: flex;
    cursor: pointer;
}

.popup-form__policy input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.popup-form__policy .policy__box {
    position: relative;
    padding-left: 50px;
    font-size: 13px;
    line-height: 18px;
}

.popup-form__policy .policy__box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 34px;
    background: #dbe0e6;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background .3s ease-out;
}

.popup-form__policy.warning .policy__box:before {
    border: 1px solid #fb5f5f;
}

.popup-form__policy input:checked + .policy__box:before {
    background: #49bbc7;
}

.popup-form__policy .policy__box:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.3);
    transition: left .3s ease-out;
}

.popup-form__policy input:checked + .policy__box:after {
    left: 18px;
}

.popup-form__policy .policy__box a {
    color: #00cad4;
    transition: color .3s ease-out;
}

.popup-form__policy .policy__box a:hover {
    color: #4c4c4c;
}

.popup-form__hint {
    margin-top: 20px;
}

.popup-form__hint p {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 19px;
}

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

.popup-form__hint .highlighted {
    color: #fb5f5f;
}

.popup-form__hint .separator {
    margin: 0 5px;
}

.popup-form__send.sent {
    background: #02b8c1;
}

.popup-form .description {
    display: flex;
}
.popup-form .success_icon{
    padding-right: 15px;
}
.popup-form .success-text{
    max-width: 303px;
}
.popup-form .button{
    margin: 49px 0 0;
}
.popup-form .button>button{
    background-color: #49bbc7;
    border-color: #49bbc7;
    color: #ffffff;
    padding: 16px 27px;
    font-size: 0.7333em;
    border: 1px solid;
}
.form.success .form-header .description .success_icon {
    float: left;
    width: 90px;
}
.form.success .form-header .description .success_icon path {
    fill: #8b9bae;
}
.clsp-2 {
    opacity: 0.1;
}
.clsp-1, .clsp-2 {
    fill: #49bbc7;
    fill-rule: evenodd;
}
.clsp-1, .clsp-2 {
    fill: #49bbc7;
    fill-rule: evenodd;
}

.cookies_block {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
    z-index: 130;
    display: none;
}

.cookies_block--active {
    display: block;
}

.cookies_block__container {
    max-width: 1960px;
    padding: 25px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cookies_block__button {
    width: 320px;
    flex-shrink: 0;
    background: #00cad4;
    transition: all 0.3s ease-out;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    padding: 16px 10px;
    border: 0;
    outline: 0;
}

.cookies_block__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 880px;
}

.cookies_block__text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 5px 0;
}

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

.cookies_block__text .title {
    display: none;
}

.cookies_block__text b {
    font-weight: 600;
}

.cookies_block__text a {
    transition: color 0.3s ease-out;
    text-decoration: none;
    color: #49bbc7;
}

@media (hover: hover) and (pointer: fine) {
    .our-services--v2 .slider-block__item:hover .slider-block__bg img {
        transform: scale(1.1);
    }

    .cookies_block__button:hover {
        background: #02b8c1;
    }

    .cookies_block__text a:hover {
        color: #4d4d4d;
    }
}

@media only screen and (max-width: 1439px) {
    .advertising__stand {
        left: 0;
    }

    .advertising__lift {
        left: 24.5%;
    }

    .advertising__car.active {
        right: -5%;
    }

    .header__menu a {
        padding: 17px 7px;
    }

    .our-services--v2 .slider-block__title {
        font-size: 19px;
    }
}

@media only screen and (max-width: 1300px) {
    .advertising__stand {
        left: -20px;
    }

    .advertising__lift {
        left: calc(24.5% - 40px);
    }

    .advertising__car.active {
        right: -6%;
    }
}

@media only screen and (max-width: 1380px) {
    .header__burger {
        margin-right: 15px;
    }

    .header__menu a {
        padding: 17px 2px;
    }

    .header__menu span,
    .header__client span {
        font-size: 13px;
    }

    .header--fixed .header__logo {
        margin-right: 20px;
        padding: 0;
    }

    .header--fixed .logo__img {
        width: 225px;
    }

    .header--fixed .header__menu a {
        padding: 19px 0;
    }

    .header--fixed .header__menu span {
        font-size: 12px;
    }

    .header--fixed .header__contacts {
        display: none;
    }

    .clients {
        padding: 0 50px;
    }

    .clients__text .clients__title {
        font-size: 42px;
    }

    .form {
        padding: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    .md {
        display: block;
    }

    .no-md {
        display: none;
    }

    .container {
        padding: 0 20px;
        max-width: 820px;
    }

    header {
        padding: 0 20px;
    }

    .header__top {
        padding: 37px 0 20px 0;
        border-bottom: none;
    }

    .logo__img {
        width: 210px;
        height: auto;
    }

    .header__contacts {
        margin-left: auto;
    }

    .header__contacts .whatsapp__icon {
        width: 16px;
        height: 16px;
        margin-right: 30px;
    }

    .header__burger {
        margin-right: 10px;
        padding: 0;
        position: relative;
        top: 1px;
    }

    .header__burger:hover div {
        background: #FFFFFF;
    }

    .header__search {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-right: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url('/upload/frontend/search_icon.svg') no-repeat center center;
        background-size: contain;
    }

    .header__contacts a:hover img:first-of-type {
        opacity: 1;
    }

    .header__contacts a:hover img:last-of-type {
        opacity: 0;
    }

    .header__contacts a:hover span {
        color: #fff;
    }

    .main-page__banner {
        height: 425px;
    }

    .main-page__banner--full {
        min-height: 425px;
        height: 100dvh;
    }

    .main-page__banner .container {
        padding: 113px 207px 0 45px;
    }

    .main-page__banner--full .container {
        padding-inline: 20px;
        max-width: 100%;
    }

    .banner__text {
        width: 528px;
        padding: 20px 10px;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .banner__info {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 18px;
    }

    .header--fixed {
        padding: 15px 20px;
        top: -66px;
    }

    .header--fixed .header__menu {
        margin-right: auto;
        display: none;
    }

    .header--fixed .header__client {
        margin-left: auto;
    }

    .header--fixed .header__burger {
        top: 0;
    }

    .header--fixed .header__burger div {
        background: #4c4c4c;
    }

    .main-page:not(:has(.main-page__services)) .main-page__banner {
        margin-bottom: 52px;
    }

    .main-page__services,
    .main-page__services.slick-slider {
        margin-bottom: 52px;
        height: 337px;
    }

    .main-page__service,
    .main-page__service:nth-child(3n) {
        width: 50vw;
        min-width: 50vw;
        height: 338px;
    }

    .main-page__service:nth-child(3n+5) {
        width: 50vw;
        min-width: 50vw;
    }

    .main-page__service:hover .service__bg {
        transform: none;
    }

    .main-page__services .slick-dots {
        position: absolute;
        bottom: 10px;
        height: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-page__services .slick-dots li {
        width: 8px;
        height: 8px;
        background: transparent;
        border: 1px solid #00cad4;
        border-radius: 50%;
        margin: 0 5px 0 0;
        transition: all .3s ease-out;
    }

    .main-page__services .slick-dots li.slick-active {
        width: 12px;
        height: 12px;
        background: #00cad4;
        border: 1px solid #00cad4;
    }

    .main-page__services .slick-dots li:last-child {
        margin: 0;
    }

    .main-page__services .slick-dots button {
        font-size: 0;
        line-height: 0;
        padding: 0;
        width: auto;
        height: auto;
    }

    .main-page__services .slick-dots button:before {
        display: none;
    }

    .our-services {
        margin-bottom: 30px;
    }

    .our-services .slider__wrap {
        width: calc(100% + 20px);
    }

    .our-services .slider-block .slider-block__bg {
        opacity: 1;
    }

    .our-services .slider-block .slider-block__icon {
        opacity: 0;
    }

    .our-services .slider-block .slider-block__title {
        color: #FFFFFF;
    }

    .our-services .slider-block .slider-block__link {
        opacity: 1;
        color: #FFFFFF;
        font-size: 13px;
        line-height: 19px;
        bottom: 28px;
    }

    .our-services .slider-block .slider-block__bg:after {
        opacity: 0.5;
    }

    .our-services .slider-block__link:after {
        right: -2px;
        filter: brightness(10);
    }

    .our-works {
        margin-bottom: 50px;
    }

    .our-works__slider {
        height: 645px;
    }

    .our-works__slide {
        height: 645px;
    }

    .our-works__slide[data-type="slider-slide"] {
        justify-content: flex-start;
        flex-direction: column;
    }

    .our-works__text {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 27px;
    }

    .our-works .our-works__title {
        margin: 0;
        max-width: none;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .our-works__slide[data-type="slider-slide"] .our-works__img {
        width: 100%;
        max-width: 100%;
        height: 373px;
    }

    .our-works__slider .dial__wrap,
    .our-works__slider > .slick-dots li:after,
    .our-works__slider_nav .slick-dots li:after {
        display: none;
    }

    .our-works__slider > .slick-dots {
        height: 12px;
        bottom: auto;
        top: -43px;
        left: auto;
        right: 0;
    }

    .our-works__slider_nav {
        height: 12px;
        bottom: auto;
        left: auto;
        right: 0;
        top: 22px;
    }

    .our-works__slider > .slick-dots li,
    .our-works__slider_nav .slick-dots li {
        width: 8px;
        min-width: 8px;
        height: 8px;
        border: 1px solid #00cad4;
        margin: 0 5px 0 0;
        font-size: 0;
        line-height: 0;
        transition: all .3s ease-out;
    }

    .our-works__slider > .slick-dots li.slick-active,
    .our-works__slider_nav .slick-dots li.slick-active {
        width: 12px;
        min-width: 12px;
        height: 12px;
        background: #00cad4;
        border: 1px solid #00cad4;
    }

    .clients {
        padding: 0 40px;
        height: 290px;
        margin-bottom: 50px;
    }

    .clients__list {
        width: 145px;
        min-width: 145px;
        margin-left: 43px;
    }

    .clients__text {
        padding: 52px 0 51px 0;
        width: calc(100% - 188px);
    }

    .clients__text .clients__title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 8px;
    }

    .clients__block {
        width: 100%;
        height: 87px;
        margin: 0 0 10px 0;
    }

    .advertising {
        margin-bottom: 48px;
    }

    .advertising__wrap {
        height: 924px;
    }

    .advertising__wrap:before {
        height: 474px;
    }

    .advertising__wrap:after {
        content: '';
        height: 391px;
        width: 100vw;
        position: absolute;
        top: 474px;
        left: 50%;
        transform: translateX(-50%);
        background: #d4d7de;
    }

    .advertising__stand {
        left: 59px;
    }

    .advertising__lift {
        left: auto;
        right: 0px;
    }

    .advertising__car,
    .advertising__car.active {
        right: 50%;
        z-index: 2;
        transform: translateX(50%);
    }

    .advertising__car .advertising__text {
        top: -18px;
        background: url('/upload/frontend/text_bg_3_tablet.png') no-repeat;
    }

    .advertising__car .advertising__text:after {
        top: -2px;
    }

    .advertising__car .advertising__text br {
        display: none;
    }

    .advertising__shadow {
        height: 571px;
        top: 0;
        transform: translate(-50%, 0%);
        padding: 20px 0;
    }

    .advertising__stand.active {
        top: -8%;
        left: 27.7%;
    }

    .advertising__stand.active .advertising__img {
        width: 350px;
        height: 472px;
        margin-top: 50px;
    }

    .advertising__stand.active .advertising__text:after {
        right: -80px;
        top: 23px;
    }

    .advertising__formats > div:hover {
        border: 3px solid transparent;
        box-shadow: none;
    }

    .advertising__formats > div.hovered {
        border: 3px solid #FB0F0F;
        border-radius: 3px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
    }

    .advertising__formats > div:hover .advertising__format {
        opacity: 0;
    }

    .advertising__formats > div.hovered .advertising__format {
        opacity: 1;
        padding: 20px;
        width: auto;
        height: auto;
        overflow: visible;
    }

    .advertising__blur {
        top: 96px;
        left: 29px;
        width: 281px;
        height: 134px;
    }

    .advertising__blur div {
        position: absolute;
    }

    .advertising__blur div:first-child {
        left: -1px;
        width: 93px;
        height: 132px;
    }

    .advertising__blur div:nth-child(2) {
        left: 96px;
        width: 91px;
        height: 131px;
    }

    .advertising__blur div:nth-child(3) {
        top: 3px;
        left: auto;
        right: 0;
        width: 85px;
        height: 124px;
    }

    .advertising__blur div:nth-child(4) {
        top: 135px;
        left: -3px;
        width: 95px;
        height: 137px;
    }

    .advertising__blur div:nth-child(5) {
        top: 273px;
        left: -2px;
        width: 95px;
        height: 133px;
    }

    .advertising__formats {
        left: 123px;
        bottom: 19px;
        width: 193px;
        height: 273px;
    }

    .advertising__tv.active {
        top: -1%;
        left: auto;
        right: 19%;
        width: 646px;
        height: 400px;
    }

    .about {
        flex-direction: column;
        position: relative;
        min-height: auto;
    }

    .about__text {
        width: 100%;
    }

    .about__text .upper {
        font-size: 35px;
        line-height: 40px;
    }

    .about__buttons {
        margin-top: 364px;
    }

    .about__graphics {
        width: 100%;
        min-width: auto;
        position: absolute;
        bottom: 90px;
        margin: 0;
        left: 0;
        height: 295px;
    }

    .about__graphics--block[data-graphics="coverage"] {
        top: 0;
        height: 280px;
        width: 280px;
    }

    .about__graphics--block[data-graphics="period"] {
        top: 44px;
        left: 303px;
    }

    .about__graphics--block[data-graphics="advertise"] {
        top: 189px;
        left: 304px;
    }

    .about__graphics--block .value {
        font-size: 40px;
        line-height: 50px;
    }

    .about__graphics--block .title {
        font-size: 15px;
        line-height: 19px;
        margin-top: 4px;
    }

    .about__graphics--block[data-graphics="coverage"] .title {
        top: 162px;
    }

    .about__graphics--block[data-graphics="coverage"] .value--computed {
        font-size: 52px;
        line-height: 65px;
    }

    .about__graphics--block[data-graphics="coverage"] .graphics__text {
        top: 96px;
    }

    .opportunities__wrap {
        margin-bottom: -10px;
        width: calc(100% + 20px);
    }

    .opportunities__block {
        width: 187px !important;
        height: 209px;
        margin: 0 10px 10px 0;
    }

    .opportunities__block:nth-child(4n) {
        margin-right: 0;
    }

    .opportunities__more {
        font-size: 13px;
        line-height: 22px;
        padding-right: 19px;
    }

    .opportunities__block:hover .opportunities__img:after {
        background: #4c4c4c;
        opacity: 0.6;
    }

    .opportunities__block:hover .opportunities__img img {
        transform: none;
    }

    .reviews {
        margin-bottom: 48px;
    }

    .form {
        padding: 53px 40px 50px 40px;
        margin-bottom: 49px;
    }

    .form__right {
        display: none;
    }

    .form__left {
        width: 100%;
        min-width: 100%;
    }

    .form__title {
        font-size: 40px;
        line-height: 46px;
        margin-bottom: 8px;
    }

    .form__subtitle {
        max-width: 650px;
    }

    .our-clients {
        margin-bottom: 29px;
    }

    .our-clients .slider-block img {
        filter: grayscale(0);
    }

    #map {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .footer--main .container {
        padding: 47px 20px 9px 20px;
        flex-direction: column;
    }

    .footer__top {
        flex-wrap: wrap;
    }

    .footer__column {
        margin-right: 20px;
        width: calc(100%/3 - 20px*2/3);
    }

    .footer__column:nth-child(3) {
        margin: 0;
    }

    .footer__column:last-child {
        margin: 58px auto 0 auto;
        text-align: center;
        width: auto;
    }

    .footer__right .column__title {
        display: none;
    }

    .footer__right .btn {
        margin: 0 auto 18px auto;
    }

    .footer__right a:first-of-type img {
        left: 12px;
    }

    .footer__social {
        margin-bottom: 37px;
    }

    .footer--bottom .container {
        flex-direction: column-reverse;
    }

    .links {
        flex-direction: column;
    }

    .links .footer__dev {
        margin: 17px 0 15px 0;
    }

    .footer--bottom {
        padding-bottom: 48px;
    }

    .popup-menu.active {
        display: flex;
        flex-direction: column;
    }

    .popup-menu__body {
        flex-grow: 1;
    }

    .popup-menu__body .container {
        display: flex;
        flex-direction: column;
    }

    .popup-menu__content.no-md {
        display: none;
    }

    .popup-menu__content.md {
        flex-direction: column;
        flex-grow: 1;
        display: flex;
    }

    .popup-menu--search {
        margin-bottom: 30px;
    }

    .popup-menu__sections {
        margin-bottom: 30px;
    }

    .popup-menu__sections ul {
        display: none;
    }

    .popup-menu__sections > ul {
        display: block;
        border-top: 1px solid #f4f4f4;
    }

    .popup-menu__sections li {
        border-bottom: 1px solid #f4f4f4;
        position: relative;
    }

    .popup-menu__sections ul > li > span,
    .popup-menu__sections ul > li > a {
        font-size: 14px;
        line-height: 19px;
        text-transform: uppercase;
        width: 100%;
        padding: 10px 0;
        display: block;
        position: relative;
    }

    .popup-menu__sections .inner--list > span:after {
        content: url('/upload/frontend/our_services_arrow_grey_prev.svg');
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: -1;
    }

    .popup-menu__about {
        margin-bottom: 30px;
    }

    .popup-menu__about .about__title {
        display: block;
        margin-bottom: 20px;
        font-weight: 700;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
    }

    .popup-menu__about .about__title .highlighted {
        color: #00cad4;
    }

    .popup-menu__about ul {
        border-top: 1px solid #f4f4f4;
    }

    .popup-menu__about li {
        font-size: 14px;
        line-height: 19px;
        padding: 10px 0;
        border-bottom: 1px solid #f4f4f4;
    }

    .popup-menu__contacts {
        position: relative;
        padding: 20px 0;
        flex-grow: 1;
    }

    .popup-menu__contacts:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background: #f2fdfd;
        z-index: -1;
    }

    .popup-menu__contacts a {
        font-weight: 600;
        font-size: 24px;
        line-height: 33px;
        display: block;
        margin-bottom: 10px;
    }

    .popup-menu .popup-menu--back {
        height: 45px;
        align-items: center;
        padding: 0 20px;
        font-size: 14px;
        line-height: 14px;
        color: #96A3AE;
        display: none;
        position: relative;
        margin-bottom: 20px;
    }

    .popup-menu .popup-menu--back:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background: #F8F7F7;
        z-index: -1;
    }

    .popup-menu .popup-menu--back span:before {
        content: url('/upload/frontend/our_services_arrow_grey_prev.svg');
        position: absolute;
        top: 50%;
        left: 0;
        transform: rotate(180deg) translateY(50%);
    }

    .popup-menu .popup-menu--back span:last-child,
    .popup-menu .popup-menu--back.inner--level span:first-child {
        display: none;
    }

    .popup-menu.inner--list-opened .popup-menu--back.inner--level span:last-child {
        display: flex;
    }

    .popup-menu.inner--list-opened .popup-menu--back {
        display: flex;
    }

    .popup-menu.inner--list-opened .popup-menu--search,
    .popup-menu.inner--list-opened .popup-menu__about,
    .popup-menu.inner--list-opened .popup-menu__contacts {
        display: none;
    }

    .popup-menu.inner--list-opened .popup-menu__header {
        border-bottom: 1px solid transparent;
        margin-bottom: 0;
    }

    .popup-menu__header .container {
        padding: 20px;
    }

    .popup-menu.inner--list-opened .popup-menu__sections > ul {
        border-top: 1px solid transparent;
    }

    .popup-menu.inner--list-opened .popup-menu__sections li {
        display: none;
        border-bottom: 1px solid transparent;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active li {
        border-bottom: 1px solid #f4f4f4;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active,
    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active > ul,
    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active li {
        display: block;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active {
        border-bottom: 1px solid transparent;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active > span {
        font-weight: 600;
        font-size: 18px;
        line-height: 25px;
        text-transform: uppercase;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active > span:after {
        display: none;
    }

    .popup-menu.inner--list-opened .popup-menu__sections ul li.inner--list.active > ul {
        border-top: 1px solid #f4f4f4;
        margin-top: 10px;
    }

    .popup-menu .popup-menu__sections ul ul li span,
    .popup-menu .popup-menu__sections ul ul li a {
        font-weight: normal;
        text-transform: none;
    }

    .popup-menu .popup-menu__sections li span.show--all {
        color: #00cad4;
        font-weight: 600;
    }

    .popup-search {
        position: fixed;
        top: -99px;
        left: 0;
        z-index: 100;
        width: 100%;
        height: 99px;
        background: rgba(240,243,246,0.97);
        display: block;
        transition: top .3s ease-out;
    }

    .popup-search.active {
        top: 0;
        filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.05));
    }

    .popup-search .search__inner {
        height: 99px;
        background: #FFFFFF;
    }

    .popup-search form {
        display: flex;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .popup-search .search__inner--icon {
        line-height: 0;
        margin-right: 20px;
        min-width: 50px;
    }

    .popup-search input {
        height: 100%;
        width: 100%;
        border: 0;
        outline: 0;
        font-size: 34px;
        font-weight: 400;
        font-style: normal;
        position: relative;
        background: none;
        color: #000;
        line-height: 40px;
        padding: 0;
        text-overflow: ellipsis;
    }

    .popup-search .search__inner--close {
        line-height: 0;
        margin-left: 20px;
        min-width: 24px;
        cursor: pointer;
        transition: opacity .3s ease-out;
    }

    .popup-search .search__inner--close:hover {
        opacity: 0.6;
    }

    .popup-search .search__inner--close:active {
        opacity: 1;
    }

    .our-clients .slider__wrap {
        display: block;
    }

    .our-clients .slider__inner.no-md {
        display: none;
    }

    .our-clients .slider__inner {
        animation: none;
        transform: none;
    }

    .our-services--v2 .slider-block {
        width: 670px !important;
    }

    .slider-block__item {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .cookies_block__container {
        padding: 20px 24px;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
        justify-items: stretch;
    }

    .cookies_block__button {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .xs {
        display: block;
    }

    .no-xs {
        display: none;
    }

    .header__top {
        padding: 15px 0;
    }

    .header__burger {
        margin-right: 13px;
        top: 0;
        width: 15px;
        min-width: 15px;
    }

    .header__burger div {
        height: 2px;
    }

    .header__right .header__search,
    .header__right .whatsapp__icon,
    .header__right a[href^=tel] span,
    .header__right a[href^=tel] img:last-child {
        display: none;
    }

    .header__right a[href^=tel] {
        width: 25px;
        min-width: 25px;
        background: #00cad4;
        height: 25px;
        border-radius: 50%;
        overflow: hidden;
        justify-content: center;
    }

    .header__right a[href^=tel] img:first-child {
        position: relative;
        top: 0;
        transform: none;
        max-width: 13px;
    }

    .logo__img {
        width: 170px;
    }

    .header--fixed .logo__img {
        width: 183px;
    }

    .header--fixed .header__contacts.xs {
        display: block;
        width: 36px;
        min-width: 36px;
        height: 36px;
        padding: 10px;
    }

    .header--fixed .header__contacts.xs img {
        display: block;
        opacity: 1;
        position: relative;
        top: 0;
        transform: none;
    }

    .header--fixed .header__contacts a:hover img:last-of-type {
        opacity: 1;
    }

    .main-page__banner {
        height: 428px;
    }

    .main-page__banner--full {
        min-height: 428px;
        height: 100dvh;
    }

    .main-page__banner .container {
        padding: 121px 20px 0 20px;
    }

    .main-page__banner--full .container {
        padding-top: 86px;
    }

    .banner__text {
        width: 100%;
    }

    h1 {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 8px 0;
    }

    .banner__info {
        margin-bottom: 8px;
    }

    .main-page:not(:has(.main-page__services)) .main-page__banner {
        margin-bottom: 41px;
    }

    .main-page__services,
    .main-page__services.slick-slider {
        margin-bottom: 41px;
        height: 277px;
    }

    .main-page__service,
    .main-page__service:nth-child(3n),
    .main-page__service:nth-child(3n+5) {
        width: 100vw;
        min-width: 100vw;
        height: 277px;
    }

    .main-page__service .service__text {
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .our-services {
        margin-bottom: 24px;
    }

    .our-services .slider__arrows,
    .reviews .slider__arrows {
        display: none;
    }

    .our-services h2 {
        margin-bottom: 32px;
    }

    .our-services .slider-block {
        height: 176px;
        width: 260px !important;
    }

    .our-services .slider-block a {
        padding: 0 24px;
        justify-content: center;
    }

    .our-services .slider-block .slider-block__icon {
        display: none;
    }

    .our-services .slider-block__title {
        font-size: 16px;
        line-height: 22px;
    }

    .our-services .slider-block .slider-block__link {
        bottom: 20px;
        left: 25px;
    }

    .our-works {
        margin-bottom: 62px;
    }

    .our-works:before {
        display: none;
    }

    .our-works h2 {
        margin-bottom: 21px;
    }

    .our-works p {
        display: none;
    }

    .our-works__slider {
        height: 100vw;
        min-height: 377px;
        max-height: 555px;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0;
    }

    .our-works__slider > .slick-dots {
        right: 50%;
        top: auto;
        bottom: -22px;
        transform: translateX(50%);
    }

    .our-works__slider_nav {
        right: 50%;
        top: auto;
        bottom: -22px;
        transform: translateX(50%);
    }

    .our-works__slide {
        height: 100vw;
        min-height: 377px;
        max-height: 555px;
        border-radius: 0;
        padding: 30px 20px;
    }

    .our-works .our-works__title {
        font-size: 15px;
        line-height: 22px;
        -webkit-line-clamp: 3;
    }

    .our-works__logo {
        margin-bottom: 29px;
    }

    .our-works__slide[data-type="slider-slide"] .our-works__img {
        min-height: 153px;
        height: 47.813vw;
        max-height: 355px;
        flex-grow: 1;
    }

    .our-works__slide[data-type="slider-slide"] .slick-track,
    .our-works__slide[data-type="slider-slide"] .slick-list,
    .our-works__slide[data-type="slider-slide"] .picture__block {
        height: 100%;
    }

    .our-works__look-video {
        top: auto;
        bottom: 26%;
        transform: translateX(-50%);
    }

    .our-works__look-video span {
        padding-top: 55px;
        background-size: 50px;
    }

    .our-works__look-video:hover span {
        background-size: 50px;
    }

    .clients {
        padding: 30px 20px 10px 20px;
        height: auto;
        margin-bottom: 40px;
        width: calc(100% + 40px);
        margin-left: -20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .clients__text {
        padding: 0;
        width: 100%;
    }

    .clients__text .clients__title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 5px;
    }

    .clients__text p {
        margin-bottom: 28px;
    }

    .clients__buttons {
        flex-direction: column;
    }

    .clients__buttons .btn {
        margin-right: 0;
        width: 100%;
    }

    .clients__buttons .btn.btn--blue {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .clients__list {
        width: 100%;
        min-width: 100%;
        margin-left: 0;
    }

    .clients__block,
    .clients__block:nth-child(3n) {
        width: calc(50% - 5px);
        height: 87px;
        margin: 0 10px 10px 0;
    }

    .clients__block:nth-child(even) {
        margin-right: 0;
    }

    .advertising h2 {
        margin-bottom: 20px;
    }

    .advertising__wrap {
        height: auto;
    }

    .advertising__wrap:before,
    .advertising__wrap:after {
        display: none;
    }

    .advertising__stand--wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 30px 20px 14px 20px;
        background: #eeedf3;
    }

    .advertising__stand,
    .advertising__stand.active {
        left: 50%;
        position: relative;
        top: 0;
        transform: translateX(-50%);
        width: 67.813vw;
        max-width: 305px;
    }

    .advertising__stand.active .advertising__blur {
        display: none;
    }

    .advertising__formats {
        left: auto;
        right: 7%;
        bottom: 4.5%;
        width: 39vw;
        height: 54.5vw;
        max-width: 175px;
        max-height: 245px;
    }

    .advertising__stand .advertising__img,
    .advertising__stand.active .advertising__img {
        margin-top: 0;
        height: auto;
        width: 69.377vw;
        max-width: 312px;
    }

    .advertising__stand .advertising__text,
    .advertising__stand.active .advertising__text {
        top: -1px;
        left: -3px;
        position: relative;
        margin-bottom: 20px;
        width: calc(100% + 20px);
        min-width: 240px;
    }

    .advertising__stand.active .advertising__text:after {
        right: -20px;
    }

    .advertising__lift--wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px 30px 20px;
        background: url('/upload/frontend/entrance_bg.jpg') repeat-x top center;
    }

    .advertising__lift {
        position: relative;
        margin-top: 0;
        left: calc(50% + 26px);
        right: auto;
        transform: translateX(-50%);
        width: fit-content;
        width: -moz-fit-content;
    }

    .advertising__lift--wrap.active .advertising__lift {
        width: 100%;
    }

    .advertising__lift .advertising__img {
        margin: 0 auto;
    }

    .advertising__car--wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 88px 20px 0 20px;
        margin-top: -74px;
        position: relative;
    }

    .advertising__car--wrap:before {
        content: '';
        width: 100%;
        height: 91%;
        background: #d4d7de;
        position: absolute;
        top: 0;
        left: 0;
    }

    .advertising__car,
    .advertising__car.active {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .advertising__car .advertising__img {
        width: 100%;
        height: auto;
        min-width: 100%;
    }

    .advertising__car .advertising__text {
        top: -46px;
        width: 255px;
        padding: 0 6px;
        left: 35px;
        background: url('/upload/frontend/text_bg_3.png') no-repeat;
    }

    .advertising__video {
        top: 8%;
        right: 5.3%;
        width: 57.358%;
        height: 56.7%;
    }

    .advertising__shadow {
        height: 460px;
        top: 556px;
    }

    .advertising__close {
        right: 20px;
    }

    .advertising__tv,
    .advertising__tv:after {
        transition: none;
    }

    .advertising__tv.active {
        top: 50%;
        transform: translate(-50%, -50%);
        left: calc(50% - 25px);
        right: auto;
        width: calc(100vw - 40px);
        height: calc(100vw - 195px);
        min-height: 200px;
        max-height: 300px;
        padding: 8px;
        border-radius: 3px;
    }

    .advertising__lift--wrap.active .advertising__lift:before {
        content: '';
        background: #fff;
        opacity: 0.9;
        position: absolute;
        width: calc(100vw + 55px);
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .advertising {
        margin-bottom: 38px;
    }

    .advertising__shadow.active {
        width: 40px;
        height: 40px;
        transform: none;
        left: auto;
        right: 0;
        top: 626px;
        padding: 0;
        transition: opacity .3s ease-out;
    }

    .advertising__close {
        right: 0;
        transition: none;
    }

    .about {
        margin-bottom: 39px;
    }

    .about h2 {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 18px 0;
    }

    .about__text .upper {
        font-size: 30px;
        line-height: 36px;
    }

    .about__buttons {
        flex-direction: column;
        margin-top: 566px;
    }

    .about__buttons .btn {
        width: 100%;
    }

    .about__buttons .btn.btn--blue {
        margin: 0 0 10px 0;
    }

    .about__graphics {
        width: 100%;
        bottom: 143px;
        height: 501px;
    }

    .about__graphics--block[data-graphics="advertise"] {
        top: auto;
        left: 0;
        bottom: 0;
    }

    .about__graphics--block[data-graphics="period"] {
        top: auto;
        left: 0;
        bottom: 110px;
    }

    .opportunities {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .opportunities h2 {
        margin-bottom: 21px;
    }

    .opportunities .slider__arrows {
        display: none;
    }

    .opportunities__block {
        width: 150px !important;
        height: 168px;
    }

    .opportunities__block:nth-child(even) {
        margin-right: 0;
    }

    .opportunities__title {
        padding: 0 5px;
        font-size: 15px;
        line-height: 22px;
    }

    .opportunities__block a {
        align-items: center;
    }

    .opportunities__more {
        bottom: 17px;
    }

    .reviews {
        margin-bottom: 40px;
    }

    .reviews h2 {
        margin-bottom: 21px;
    }

    .reviews__wrap {
        width: calc(100% + 20px);
    }

    .reviews__block {
        width: 262px;
        min-width: 262px;
        height: 246px;
        margin-right: 10px;
    }

    .review__header {
        padding: 18px 9px 17px 9px;
    }

    .review__body {
        height: 141px;
    }

    .review__body:after {
        width: 50px;
        height: 50px;
    }

    .review__title {
        white-space: break-spaces;
        text-overflow: initial;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .form {
        padding: 30px 20px;
        width: calc(100% + 40px);
        margin: 0 0 74px -20px;
    }

    .form__title {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 5px;
    }

    .form__subtitle {
        max-width: 100%;
        margin-bottom: 16px;
    }

    .form__row {
        flex-direction: column;
        margin-bottom: 12px;
    }

    .form__field {
        width: 100%;
        margin: 0 0 18px 0;
    }

    .form__action {
        align-items: flex-start;
        flex-direction: column;
    }

    .form__button {
        margin: 0 0 8px 0;
    }

    .our-clients {
        margin-bottom: 30px;
    }

    .our-clients h2 {
        margin-bottom: 20px;
    }

    .our-clients .slider__wrap {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    .our-clients .slider-block {
        width: 155px !important;
        height: 125px;
        margin: 0 10px 10px 0;
    }

    .our-clients .slider__inner {
        height: 270px;
    }

    .map__locations {
        flex-wrap: nowrap;
        overflow: scroll;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px;
        margin-bottom: 27px;
    }

    .map__locations::-webkit-scrollbar {
        display: none;
    }

    .map__locations::-webkit-scrollbar-track {
        display: none;
    }

    .map__locations::-webkit-scrollbar-thumb {
        display: none;
    }

    .map__location {
        margin: 0 20px 0 0;
    }

    .ymaps-2-1-79-map-copyrights-promo,
    .ymaps-2-1-79-copyright {
        display: none !important;
    }

    .column__list {
        display: none;
    }

    .footer--main .container {
        padding: 0 20px 22px 20px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__column {
        margin-right: 0;
        width: 100%;
    }

    .column__title {
        margin: 0;
        border-bottom: 1px solid #3f4348;
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 17px 20px;
    }

    .footer__column:last-child {
        margin: 39px auto 0 0;
        text-align: left;
        width: auto;
    }

    .footer__right a:first-of-type img {
        left: 0;
    }

    .footer__right .btn {
        margin: 0 0 18px 0;
    }

    .footer__social {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .social-icons:before {
        display: none;
    }

    .social-icons {
        text-align: left;
    }

    .social-icons ul {
        padding: 0;
        margin-bottom: -4px;
    }

    .social-icons ul li {
        margin: 0 4px 4px 0;
    }

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

    .footer--bottom {
        padding-bottom: 39px;
    }

    .footer--bottom .container {
        align-items: flex-start;
    }

    .popup-menu__back {
        margin: 0 0 0 -10px;
    }

    .popup-form {
        padding: 40px 20px;
    }

    .popup-form__close {
        top: 10px;
        right: 20px;
    }

    .popup-form__title {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .popup-form__subtitle {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 30px;
    }

    .popup-form__field {
        margin-bottom: 20px;
    }

    .popup-form__send {
        width: 100%;
    }

    .popup-form__policy {
        margin-bottom: 20px;
    }

    .our-services--v2 .slider__inner:not(.slick-initialized) {
        gap: 8px;
    }

    .our-services--v2 .slider-block {
        /*height: 345px;*/
        min-height: 345px;
        height: 65vh;
        width: auto !important;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .our-services--v2 .slider-block__item,
    .our-services--v2 .slider-block--top .slider-block__item:first-child,
    .our-services--v2 .slider-block--bottom .slider-block__item:nth-child(3) {
        width: 280px;
        height: 100%;
    }

    .our-services--v2 .slider-block a {
        padding: 20px 16px;
        justify-content: flex-end;
    }

    .our-services--v2 .slider-block__info {
        font-size: 12px;
        line-height: 17px;
    }

    .our-services--v2 .slider-block .slider-block__bg:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #000;
        opacity: 0.1;
        display: block;
    }

    .our-services--v2 .slider__wrap {
        width: 100%;
        overflow: initial;
    }

    .our-services--v2 .slider__inner:not(.slick-initialized) {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding: 0 20px;
        overflow: scroll;
    }

    .our-services--v2 .slider__inner:not(.slick-initialized)::-webkit-scrollbar {
        display: none;
    }

    .our-services--v2 .slider__inner:not(.slick-initialized)::-webkit-scrollbar-track {
        display: none;
    }

    .our-services--v2 .slider__inner:not(.slick-initialized)::-webkit-scrollbar-thumb {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .cookies_block__text .no-mob {
        display: none;
    }

    .cookies_block__text .title {
        display: block;
        font-weight: 600;
        font-size: 25px;
        line-height: 1;
        margin-bottom: 10px;
        text-transform: lowercase;
    }
}

@media only screen and (max-width: 359px) {
    .advertising__car .advertising__img {
        width: 114%;
        height: auto;
        min-width: 114%;
    }

    .advertising__video {
        top: 8%;
        right: -0.7%;
        width: 65.358%;
        height: 57.7%;
    }
}

@media only screen and (max-width: 330px) {
    .header--fixed .logo__img {
        width: 158px;
    }
}
/* End */
/* /local/templates/cleantown/css/style-lib.css?174425892280855 */
/* /local/templates/cleantown/css/style.css?1750838891122065 */
