@charset "UTF-8";

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/

@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic&display=swap);

@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800&display=swap);

@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic&display=swap);

@import url(https://fonts.googleapis.com/css?family=Montserrat+Alternates:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swap);

@import url(https://fonts.googleapis.com/css?family=Vidaloka:regular);

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both;
}

.animate__animated.animate__infinite {
    animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
    animation-iteration-count: 1;
    animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
    animation-iteration-count: 2;
    animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
    animation-iteration-count: 3;
    animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
    animation-delay: 1s;
    animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
    animation-delay: 2s;
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
    animation-delay: 3s;
    animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
    animation-delay: 4s;
    animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
    animation-delay: 5s;
    animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
    animation-duration: 0.5s;
    animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
    animation-duration: 0.8s;
    animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
    animation-duration: 3s;
    animation-duration: calc(var(--animate-duration) * 3);
}

@keyframes bounce {
    0%, 20%, 53%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0);
    }

    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0) scaleY(1.1);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0) scaleY(1.05);
    }

    80% {
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translateZ(0) scaleY(0.95);
    }

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

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

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

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

.animate__flash {
    animation-name: flash;
}

@keyframes pulse {
    0% {
        transform: scaleX(1);
    }

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

    to {
        transform: scaleX(1);
    }
}

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

@keyframes rubberBand {
    0% {
        transform: scaleX(1);
    }

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

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

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

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

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

    to {
        transform: scaleX(1);
    }
}

.animate__rubberBand {
    animation-name: rubberBand;
}

@keyframes shakeX {
    0%, to {
        transform: translateZ(0);
    }

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

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

.animate__shakeX {
    animation-name: shakeX;
}

@keyframes shakeY {
    0%, to {
        transform: translateZ(0);
    }

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

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

.animate__shakeY {
    animation-name: shakeY;
}

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

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

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

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

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

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

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

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

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

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

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

    to {
        transform: rotate(0deg);
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1);
    }

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

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

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

    to {
        transform: scaleX(1);
    }
}

.animate__tada {
    animation-name: tada;
}

@keyframes wobble {
    0% {
        transform: translateZ(0);
    }

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

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__wobble {
    animation-name: wobble;
}

@keyframes jello {
    0%, 11.1%, to {
        transform: translateZ(0);
    }

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

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

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

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

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

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

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

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

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out;
}

@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }

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

.animate__backInDown {
    animation-name: backInDown;
}

@keyframes backInLeft {
    0% {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }

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

.animate__backInLeft {
    animation-name: backInLeft;
}

@keyframes backInRight {
    0% {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }

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

.animate__backInRight {
    animation-name: backInRight;
}

@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }

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

.animate__backInUp {
    animation-name: backInUp;
}

@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }

    to {
        transform: translateY(700px) scale(0.7);
        opacity: 0.7;
    }
}

.animate__backOutDown {
    animation-name: backOutDown;
}

@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }

    to {
        transform: translateX(-2000px) scale(0.7);
        opacity: 0.7;
    }
}

.animate__backOutLeft {
    animation-name: backOutLeft;
}

@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateX(0) scale(0.7);
        opacity: 0.7;
    }

    to {
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }
}

.animate__backOutRight {
    animation-name: backOutRight;
}

@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    20% {
        transform: translateY(0) scale(0.7);
        opacity: 0.7;
    }

    to {
        transform: translateY(-700px) scale(0.7);
        opacity: 0.7;
    }
}

.animate__backOutUp {
    animation-name: backOutUp;
}

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

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

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

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

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

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

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

.animate__bounceIn {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__bounceInUp {
    animation-name: bounceInUp;
}

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

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

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

.animate__bounceOut {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: bounceOut;
}

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

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

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

.animate__bounceOutDown {
    animation-name: bounceOutDown;
}

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

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

.animate__bounceOutLeft {
    animation-name: bounceOutLeft;
}

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

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

.animate__bounceOutRight {
    animation-name: bounceOutRight;
}

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

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

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

.animate__bounceOutUp {
    animation-name: bounceOutUp;
}

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

    to {
        opacity: 1;
    }
}

.animate__fadeIn {
    animation-name: fadeIn;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInDownBig {
    animation-name: fadeInDownBig;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInRightBig {
    animation-name: fadeInRightBig;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInUpBig {
    animation-name: fadeInUpBig;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInTopRight {
    animation-name: fadeInTopRight;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight;
}

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

    to {
        opacity: 0;
    }
}

.animate__fadeOut {
    animation-name: fadeOut;
}

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

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

.animate__fadeOutDown {
    animation-name: fadeOutDown;
}

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

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

.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

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

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

.animate__fadeOutLeft {
    animation-name: fadeOutLeft;
}

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

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

.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

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

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

.animate__fadeOutRight {
    animation-name: fadeOutRight;
}

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

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

.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

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

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

.animate__fadeOutUp {
    animation-name: fadeOutUp;
}

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

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

.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }

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

.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }

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

.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }

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

.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0);
    }

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

.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft;
}

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

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

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

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }

    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in;
    }
}

.animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip;
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

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

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

    80% {
        transform: perspective(400px) rotateX(-5deg);
    }

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

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

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

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

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

    80% {
        transform: perspective(400px) rotateY(-5deg);
    }

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

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

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

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

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.animate__flipOutX {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

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

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

    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.animate__flipOutY {
    animation-duration: 0.75s;
    animation-duration: calc(var(--animate-duration) * 0.75);
    backface-visibility: visible !important;
    animation-name: flipOutY;
}

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

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

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

    to {
        transform: translateZ(0);
    }
}

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

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

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

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

    to {
        transform: translateZ(0);
    }
}

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

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

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

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

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

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

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

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

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center;
}

@keyframes rotateInDownLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0;
    }

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: left bottom;
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: right bottom;
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0;
    }

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: left bottom;
}

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

    to {
        transform: translateZ(0);
        opacity: 1;
    }
}

.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: right bottom;
}

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

    to {
        transform: rotate(200deg);
        opacity: 0;
    }
}

.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center;
}

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

    to {
        transform: rotate(45deg);
        opacity: 0;
    }
}

.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: left bottom;
}

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

    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}

.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: right bottom;
}

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

    to {
        transform: rotate(-45deg);
        opacity: 0;
    }
}

.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: left bottom;
}

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

    to {
        transform: rotate(90deg);
        opacity: 0;
    }
}

.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: right bottom;
}

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

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

    40%, 80% {
        transform: rotate(60deg);
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

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

.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top left;
}

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

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

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

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

.animate__jackInTheBox {
    animation-name: jackInTheBox;
}

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

    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.animate__rollIn {
    animation-name: rollIn;
}

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

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

.animate__rollOut {
    animation-name: rollOut;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.animate__zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

.animate__zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

.animate__zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

.animate__zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

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

.animate__zoomInUp {
    animation-name: zoomInUp;
}

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

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

    to {
        opacity: 0;
    }
}

.animate__zoomOut {
    animation-name: zoomOut;
}

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

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

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

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

.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: left center;
}

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

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

.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: right center;
}

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

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

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

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

    to {
        transform: translateZ(0);
    }
}

.animate__slideInDown {
    animation-name: slideInDown;
}

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

    to {
        transform: translateZ(0);
    }
}

.animate__slideInLeft {
    animation-name: slideInLeft;
}

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

    to {
        transform: translateZ(0);
    }
}

.animate__slideInRight {
    animation-name: slideInRight;
}

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

    to {
        transform: translateZ(0);
    }
}

.animate__slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0);
    }

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

.animate__slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0);
    }

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

.animate__slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0);
    }

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

.animate__slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0);
    }

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

.animate__slideOutUp {
    animation-name: slideOutUp;
}

/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

/* Подключение шрифтов 
@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('../fonts/Roboto.woff2') format('woff2'), url('../fonts/Roboto.woff') format('woff'), url('../fonts/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
*/

/* Default Styles */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

html,
body {
    height: 100%;
}

html {
    font-size: 10px;
}

body {
    line-height: 1;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #101828;
    background-color: #ffffff;
}

body.lock {
    overflow: hidden;
}

body.overflow-hidden {
    overflow: hidden;
}

input {
    outline: none;
}

/* ======================== */

.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ======================== */

.page {
    flex: 1 1 auto;
}

/* ======================== */

[class*=__container] {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

[class*=__container-fluid] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* ===========  адаптивная сетка  =========== */

/* ==== Хидер ==== */

.header__block {
    padding: 2.5rem 0 0;
}

.header-block__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(40, 42, 43, 0.06);
}

.header-top__logo {
    text-align: center;
    color: #c28624;
    text-align: center;
    font-family: "Vidaloka", sans-serif;
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 700;
}

.header-top__logo span {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: normal;
}

.header-top__logo a {
    color: #c28624;
}

.header-top__contact {
    text-align: center;
}

.top-contact__address {
    color: #282A2B;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 0.5rem;
}

.top-contact__address span {
    font-weight: 500;
}

.top-contact__address::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("../img/icons/icon-map.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 0.6rem;
}

.top-contact__info {
    color: #000;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
    margin-bottom: 0.9rem;
}

.top-contact__phone {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.header-phone__link {
    color: #282A2B;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.header-phone__link::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("../img/icons/icon-phone.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.header-phone__link:hover {
    opacity: 0.8;
}

.header-top__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.item-telegram__link img {
    max-width: 100%;
}

.item-telegram__link:hover {
    opacity: 0.8;
}

.item-viber__link img {
    max-width: 100%;
}

.item-viber__link:hover {
    opacity: 0.8;
}

.item-callback__link {
    display: inline-block;
    color: #D93A4D;
    text-align: right;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 146%;
    border-radius: 3.2rem;
    background: rgba(240, 198, 203, 0.25);
    padding: 1rem 2.2rem;
}

.item-callback__link:hover {
    opacity: 0.8;
    cursor: pointer;
}

.header__burger {
    display: none;
}

.header-bottom__block {
    background-color: #c1a881;
}

.header-menu__list {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem 0;
}

.header-menu__link {
    font-family: "Manrope", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #282A2B;
}

.header-menu__link:hover {
    color: #D93A4D;
}

/* ==== Блок первый экран УТП ==== */

.home-banner__block {
    padding: 5rem 1rem 2rem;
    background-image: url(../img/bg/bg_01.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.home-item__utp {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-utp__title {
    color: #FFFFFF;
    font-family: "Manrope", sans-serif;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
  /* 35.2px */
    letter-spacing: 1.6px;
    margin-bottom: 35rem;
}

.item-utp__description {
    display: inline-block;
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    padding: 5rem 7rem;
    border-radius: 5px;
    background: linear-gradient(136deg, rgba(255, 255, 255, 0.6) 0%, rgba(127, 127, 127, 0) 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* ==== Блок преимущества работы с нами ==== */

.home-step__block {
    padding: 6rem 0 0;
    background-color: #fff;
}

.home-step__title {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 6rem;
}

.home-step__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 3rem;
}

.home-step__item {
    flex: 0 1 40%;
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    align-items: center;
}

.step-item__num {
    color: rgba(189, 112, 72, 0.2);
    font-family: "Manrope", sans-serif;
    font-size: 7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.step-item__description {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.step-item__description span {
    display: block;
    padding-top: 1rem;
    color: rgba(38, 38, 38, 0.7);
    font-size: 1.5rem;
}

/* ==== Главная каталог ==== */

.home-catalog__block {
    padding: 3rem 0;
}

.home-catalog__title {
    color: #262626;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2.5rem;
}

.home-catalog__subtitle {
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5rem;
}

.home-catalog__subtitle span {
    font-weight: 700;
}

.home-catalog__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.home-catalog__item {
    flex: 0 1 31%;
    border-radius: 1.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-item__img {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 1.3rem;
}

.catalog-item__img img {
    max-width: 100%;
}

.catalog-item__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.7rem;
    align-items: center;
}

.item-title__name {
    color: #353535;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.item-title__button {
    color: #8c0c95;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 100px;
    background: #FAFAFA;
    padding: 1.4rem 1.5rem;
}

.item-title__button:hover {
    opacity: 0.8;
}

.title-button__link {
    display: inline-block;
    color: #8c0c95;
}

.title-button__link::before {
    content: "";
    display: inline-block;
    width: 1.7rem;
    height: 2rem;
    background-image: url("../img/icons/icon-cart.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.catalog-item__price {
    display: flex;
    justify-content: space-between;
}

.item-price__name {
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.item-price__cosht {
    color: #BD7048;
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.home-catalog__more {
    text-align: center;
}

.catalog-more__link {
    display: inline-block;
    border-radius: 10rem;
    background: #BD7048;
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 3rem 2rem;
}

.catalog-more__link:hover {
    opacity: 0.8;
}

/* ==== Блок запись на консультацию ==== */

.home-consultation__block {
    background-image: url(../img/bg/bg_02.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 9rem 0 8rem;
}

.home-consultation__title {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 3.5rem;
}

.home-consultation__title span {
    color: #FD7400;
    display: block;
}

.home-consultation__description {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 3.5rem;
}

.consultation-button__link {
    display: inline-block;
    border-radius: 10rem;
    background: #BD7048;
    padding: 2.7rem 6rem;
    color: #FFF;
    font-size: 1.5rem;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.consultation-button__link:hover {
    opacity: 0.8;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* ==== Блок преимущества саун ==== */

.home-whous__block {
    padding: 7rem 0 2.5rem;
}

.home-whous__title {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 6rem;
}

.home-whous__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.whous-item__img {
    flex: 0 1 35%;
}

.whous-item__img img {
    max-width: 100%;
}

.whous-item__list {
    flex: 0 1 60%;
}

.whous-list__item {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.whous-item__num {
    color: #D93A4D;
    font-family: "Manrope", sans-serif;
    font-size: 7rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.whous-item__description {
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 116.9%;
}

/* ==== Блок вопросы-ответы ==== */

.home-faq__block {
    padding: 3rem 0 2rem;
}

.home-faq_title {
    color: #262626;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3.7rem;
}

.home-faq__item {
    padding: 1.7rem 2rem;
    margin-bottom: 1.6rem;
    border-radius: 2rem;
    background: #FAFAFA;
}

.item-faq__title {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

.item-faq__title:hover {
    opacity: 0.8;
    color: #C82325;
}

.item-faq__title::before {
    content: "";
    display: inline-block;
    width: 4.1rem;
    height: 4rem;
    background-image: url("../img/icons/icon-faq.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 2.8rem;
}

.item-faq__title.active {
    color: #C82325;
}

.item-faq__title.active::before {
    content: "";
    display: inline-block;
    width: 5.6rem;
    height: 5.5rem;
    background-image: url("../img/icons/icon-faq__active.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 2.8rem;
}

.item-faq__description {
    display: none;
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-top: 2rem;
}

/* ==== Блок описание главная ==== */

.page-content__block {
    padding: 2rem 0 4rem;
    background: #f1f1f1;
}

.page-content__description {
    text-align: left;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.page-content__description p {
    margin-bottom: 1.5rem;
}

.content-description__title {
    text-align: left;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* ============  Всплывающие окна  ============ */

.decor {
    position: relative;
    max-width: 400px;
    margin: 50px auto 0;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.title__block {
    margin-bottom: 20px;
    text-align: center;
}

.form-inner {
    padding: 50px;
}

.form-inner input,
.form-inner textarea {
    display: block;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
    background: #E9EFF6;
    line-height: 40px;
    border-width: 0;
    border-radius: 5px;
    font-family: "Manrope", sans-serif;
}

.form-inner input[type=submit] {
    margin-top: 30px;
    background: rgb(200, 35, 37);
    border-bottom: 4px solid rgb(255, 0, 44);
    color: white;
    font-size: 14px;
}

.form-inner textarea {
    resize: none;
}

.form-inner__submit:hover {
    opacity: 0.8;
    cursor: pointer;
}

.page__form {
    background: #fff;
    padding: 60px 0;
}

.form-block__title {
    text-align: center;
    margin-bottom: 20px;
}

.form-block__subtitle {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #000000;
    margin-bottom: 75px;
}

.contact-form__row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: -20px -20px;
    margin-bottom: 20px;
}

.contact-form__item {
    flex: 0 1 33.333%;
    margin-bottom: 40px;
    text-align: center;
    padding: 20px 20px;
}

.decor .contact-form__item {
    margin-bottom: 10px;
}

.contact-form__label {
    display: block;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    align-items: center;
    color: #000000;
    margin-bottom: 10px;
}

.contact-form__input {
    background: none;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #000000;
}

input[type=text] {
    border-bottom: 1px solid #000000;
}

input[type=text]:focus {
    border-bottom: 1px solid rgb(200, 35, 37);
}

.contact-form__button {
    flex: 0 1 100%;
    text-align: center;
}

.service-button__send {
    margin-bottom: 10px;
}

.contact-form__offer {
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #808080;
    text-align: center;
}

.service-button__send {
    background: rgb(200, 35, 37);
    box-shadow: 0px 8px 19px rgba(208, 16, 16, 0.3);
    border-radius: 6px;
    padding: 12px 50px;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #F7F7F7;
}

.service-button__send:hover {
    cursor: pointer;
    box-shadow: 0px 8px 19px rgba(200, 35, 37, 0.7);
}

/* ==== Футер ==== */

.home-footer__block {
    padding: 3rem 0 0;
}

.top-footer__row {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 1rem;
}

.top-footer__logo {
    color: #BD7048;
    font-family: "Vidaloka", sans-serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}

.top-footer__logo span {
    display: block;
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
}

.footer-menu__list {
    margin-bottom: 3rem;
}

.footer-menu__item {
    color: rgba(33, 33, 33, 0.5);
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-menu__link {
    color: rgba(33, 33, 33, 0.5);
}

.footer-menu__link:hover {
    opacity: 0.8;
}

.footer-item__info {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.footer-item__info span {
    display: block;
    font-size: 1.3rem;
}

.item-footer__phone {
    color: #3B3B3B;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 2rem;
}

.item-footer__phone::before {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("../img/icons/icon-phone__footer.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 1.2rem;
}

.footer-viber::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-image: url("../img/icons/icon-viber__footer.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-left: 0.8rem;
}

.footer-phone__link {
    color: #3B3B3B;
}

.footer-phone__link:hover {
    opacity: 0.8;
}

.item-footer__mail {
    color: #3B3B3B;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 2rem;
}

.item-footer__mail::before {
    content: "";
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
    background-image: url("../img/icons/icon-mail.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 0.9rem;
}

.footer-mail__link {
    color: #3B3B3B;
}

.footer-mail__link:hover {
    opacity: 0.8;
}

.home-footer__bottom {
    padding: 2.5rem 0;
    background: #262626;
    box-shadow: 0px 4px 37px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.bottom-footer__item {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bottom-footer__item a {
    color: #F6F8F9;
}

.bottom-footer__item a:hover {
    opacity: 0.8;
}

/* ==== Страница каталог товаров ==== */

.catalog-catalog__block {
    padding: 3rem 0;
    background: #f1f1f1;
}

.catalog-catalog__title {
    color: #262626;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 2.5rem;
}

.catalog-catalog__subtitle {
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 5rem;
}

.catalog-catalog__subtitle span {
    font-weight: 700;
}

.catalog-catalog__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.catalog-catalog__item {
    flex: 0 1 45%;
    padding: 1.2rem 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.catalog-item__img {
    text-align: center;
    margin-bottom: 1.3rem;
}

.catalog-item__img img {
    max-width: 100%;
}

.catalog-item__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.7rem;
    align-items: center;
}

.item-title__name {
    color: #353535;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.item-title__button {
    color: #BD7048;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 100px;
    background: #FAFAFA;
    padding: 1.4rem 1.5rem;
}

.item-title__button:hover {
    opacity: 0.8;
}

.title-button__link {
    display: inline-block;
    color: #8c0c95;
}

.title-button__link::before {
    content: "";
    display: inline-block;
    width: 1.7rem;
    height: 2rem;
    background-image: url("../img/icons/icon-cart.svg");
    background-size: cover;
    background-position: center center;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.catalog-item__price {
    display: flex;
    justify-content: space-between;
}

.item-price__name {
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.item-price__cosht {
    color: #BD7048;
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.home-catalog__more {
    text-align: center;
}

.catalog-more__link {
    display: inline-block;
    border-radius: 10rem;
    background: #BD7048;
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 3rem 2rem;
}

.catalog-more__link:hover {
    opacity: 0.8;
}

.catalog-item__info {
    padding: 1rem 0;
}

.item-info__item {
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 1rem;
}

.item-info__item span {
    color: #262626;
}

/* ==== Блок примеры работ ==== */

.home-gallery__block {
    padding: 2rem 0 3rem;
}

.home-gallery__subtitle {
    display: flex;
    justify-content: space-between;
    margin: 0 -2rem;
    margin-bottom: 5.5rem;
}

.gallery-subtitle__left {
    flex: 0 1 50%;
    padding: 0 2rem;
    position: relative;
}

.gallery-subtitle__left::before {
    content: " ";
    background: #000;
    width: 90%;
    height: 1px;
    top: 3rem;
    position: absolute;
}

.gallery-subtitle__right {
    flex: 0 1 50%;
    padding: 0 2rem;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 4.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gallery-subtitle__right span {
    display: block;
    color: #FD7400;
}

.home-gallery__title {
    color: #262626;
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 9rem;
}

.home-gallery__title span {
    font-weight: 700;
}

.home-gallery__row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.home-gallery__item {
    flex: 0 1 23%;
}

.gallery-item__img {
    max-width: 100%;
}

/* ==== Страница полезное ==== */

.news-page__list {
    padding: 2rem 0;
}

.new-page__row {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.news-page__item {
    flex: 0 1 45%;
    padding: 2rem;
    border: 1px solid #BD7048;
    border-radius: 1rem;
}

.news-item__title {
    color: #BD7048;
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin-bottom: 2rem;
}

.news-item__list {
    color: rgba(38, 38, 38, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.news-item__list li {
    padding-bottom: 1rem;
    list-style: decimal;
    margin-left: 1rem;
}

.news-page__description {
    color: rgba(38, 38, 38, 0.7);
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}

.news-page__description span {
    display: block;
    font-size: 1.6rem;
    padding-top: 2rem;
}

.content-wheat {
    background-color: #fff;
}

.bottom-button__call {
    display: inline-flex;
    position: fixed;
    max-width: 30rem;
    right: 15px;
    bottom: 10px;
    z-index: 10;
    background: rgba(247, 235, 197, 0.8);
    border-radius: 1rem;
    font-family: "Manrope", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2rem;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #262626;
    padding: 1rem;
    margin-bottom: 15px;
}

.bottom-button__call span {
    display: block;
    color: rgb(33, 33, 33);
    font-size: 1rem;
    line-height: 1.5rem;
}

.bottom-button__call a {
    color: #262626;
}

.animate-grow {
    animation: animate_grow 2s infinite;
}

.animate-grow:hover {
    animation: none;
}

@keyframes animate_grow {
    0% {
        transform: scale3d(1, 1, 1);
    }

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

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.page-info__title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.page-info__list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.page-info__item {
    flex: 0 1 30%;
}

.page-info__item img {
    max-width: 100%;
    margin-bottom: 2rem;
}

.page-info__item p {
    display: block;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
}

.color__red {
    color: red;
}

/* ==== Страница контактов ==== */

.page-contact__block {
    padding: 4rem 0;
}

.contact-block__row {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
}

.contact-block__item {
    flex: 0 1 45%;
}

.contact-block__info {
    font-weight: 600;
}

.contact-block__info span {
    padding: 1rem 0;
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
}

.color__green {
    color: green;
}

.color__brown {
    color: #BD7048;
}

.color__yellow {
    color: rgb(243, 223, 44);
}

.justify__center {
    justify-content: center;
}

.align__center {
    text-align: center;
}

.slider {
    padding: 32px;
    color: #fff;
}

.slider .swiper-container {
    width: 100%;
    height: 100%;
}

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

.slider__col {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin-right: 32px;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

.slider__thumbs {
    flex: 0 1 30%;
    align-self: center;
    height: 304px;
}

.slider__thumbs .slider__image {
    transition: 0.25s;
    filter: grayscale(100%);
    opacity: 0.5;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    filter: grayscale(0%);
    opacity: 1;
}

.slider__images {
    flex: 0 1 70%;
    height: 400px;
}

.slider__images .slider__image img {
    transition: 3s;
}

.slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.slider__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.image-slider {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

/* ==== Страница товара ==== */

.product-page__gallery {
    padding: 2rem 0;
}

.product-gallery__row {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.product-gallery__item {
    align-self: center;
}

.product-gallery__item:last-child {
    padding: 2rem 3rem;
    background: #f1f1f1;
    border-radius: 2rem;
}

.product-gallery__images {
    width: 500px;
    height: 100%;
}

.product-content__description {
    padding: 2rem 1.5rem;
}

.product-content__description p {
    padding-bottom: 1rem;
}

.page-content__images {
    text-align: center;
}

.product-content__block {
    padding: 3rem 0;
}

.page-content__img {
    max-width: 100%;
    padding: 2rem 1.5rem;
}

.product-content__row {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

@media (max-width: 1170px) {
    [class*=__container] {
        max-width: 970px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
    }

    .top-contact__address span {
        display: block;
    }
}

@media (max-width: 979px) {
    [class*=__container] {
        max-width: 750px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
    }

    .header-block__top {
        gap: 2rem;
    }

    .header-top__contact {
        display: none;
    }

    .header__burger {
        display: block;
        position: relative;
        width: 30px;
        min-height: 20px;
        z-index: 7;
        margin-right: 10px;
    }

    .header__burger::before,
  .header__burger::after {
        content: "";
        background-color: rgb(0, 0, 0);
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .header__burger::before {
        top: 0;
    }

    .header__burger::after {
        bottom: 0;
    }

    .header__burger span {
        position: absolute;
        background-color: rgb(0, 0, 0);
        left: 0;
        width: 100%;
        height: 2px;
        top: 9px;
        transition: all 0.3s ease 0s;
    }

    .header__burger.active {
        z-index: 12;
    }

    .header__burger.active::before {
        transform: rotate(45deg);
        top: 9px;
        background-color: rgb(0, 0, 0);
    }

    .header__burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
        background-color: rgb(0, 0, 0);
    }

    .header__burger.active span {
        transform: scale(0);
    }

    .header-bottom__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #ffffff;
        text-align: center;
        transition: all 0.8s ease 0s;
        display: block;
        z-index: 11;
    }

    .header-bottom__menu.active {
        top: 0;
    }

    .header-bottom__menu.active .header-menu__link:last-child {
        margin-right: 25px;
    }

    .header-bottom__menu.active .header-menu__list {
        flex-direction: column;
        gap: 25px;
        margin-top: 100px;
    }

    .header-bottom__menu.active .header-menu__link {
        font-size: 18px;
        color: rgb(0, 0, 0);
    }

    .home-step__list {
        justify-content: flex-start;
    }

    .home-step__item {
        flex: 0 1 95%;
    }

    .home-catalog__row {
        justify-content: center;
    }

    .home-catalog__item {
        flex: 0 1 46%;
    }

    .whous-item__img {
        display: none;
    }

    .whous-item__list {
        flex: 0 1 100%;
    }

    .whous-list__item {
        flex: 0 1 95%;
    }

    .top-footer__row {
        flex-wrap: wrap;
    }

    .top-footer__item {
        flex: 0 1 45%;
    }

    .catalog-catalog__row {
        justify-content: center;
    }

    .catalog-catalog__item {
        flex: 0 1 48%;
    }

    .gallery-subtitle__left {
        display: none;
    }

    .gallery-subtitle__right {
        flex: 0 1 100%;
    }

    .home-gallery__item {
        flex: 0 1 31%;
    }

    .new-page__row {
        flex-wrap: wrap;
    }

    .news-page__item {
        flex: 0 1 95%;
    }

    .contact-block__row {
        flex-wrap: wrap;
    }

    .contact-block__item {
        flex: 0 1 100%;
        text-align: center;
    }

    .product-gallery__row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        transform-origin: 0;
    }

    .mfp-arrow-right {
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 768px) {
    [class*=__container] {
        max-width: 720px;
        padding: 0 15px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
        padding: 0;
    }

    .catalog-item__img {
        justify-content: center;
    }

    .catalog-catalog__item {
        flex: 0 1 100%;
    }

    .home-gallery__item {
        flex: 0 1 48%;
    }

    .product-content__row {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    [class*=__container] {
        max-width: 540px;
        padding: 0 15px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
        padding: 0;
    }

    .header-top__logo {
        font-size: 2.6rem;
    }

    .buttons-item__callback {
        display: none;
    }

    .home-banner__block {
        padding: 5rem 1rem 5rem;
    }

    .home-catalog__item {
        flex: 0 1 100%;
    }

    .top-footer__row {
        gap: 1.5rem;
        justify-content: center;
    }

    .top-footer__item {
        flex: 0 1 97%;
        text-align: center;
    }

    .home-gallery__item {
        flex: 0 1 95%;
    }

    .page-info__list {
        flex-wrap: wrap;
    }

    .page-info__item {
        flex: 0 1 95%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    [class*=__container] {
        max-width: 460px;
        padding: 0 10px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
        padding: 0;
    }

    .home-banner__block {
        background-position: bottom;
    }

    .item-utp__title {
        margin-bottom: 15rem;
    }

    .item-utp__description {
        padding: 2rem 1.5rem;
    }

    .home-step__title {
        text-align: center;
        font-size: 3rem;
    }

    .home-step__item {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        justify-content: center;
    }

    .home-catalog__title {
        font-size: 3rem;
    }

    .whous-list__item {
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        justify-content: center;
    }

    .catalog-catalog__title {
        font-size: 3rem;
    }
}

@media (max-width: 350px) {
    [class*=__container] {
        max-width: 340px;
        padding: 0 10px;
    }

    [class*=__container-fluid] {
        max-width: 100%;
        padding: 0;
    }
}

@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

    .animate__animated[class*=Out] {
        opacity: 0;
    }
}