.Phone {
    position: relative;
    top: 15px;
    left: -5px;
    display: inline-block;
    margin: 0;
    width: 50px;
    height: 50px;
    font-size: 25vmin;
    background-color: #ef332f;
    border-radius: 0.5em;
    box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1)
}

.Phone::before,.Phone::after {
    position: absolute;
    content: ""
}

.Phone::before {
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0)
}

.Phone::after {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.Phone.is-animating {
    -webkit-animation: phone-outer 4000ms infinite;
    animation: phone-outer 4000ms infinite
}

.Phone.is-animating::before {
    -webkit-animation: phone-inner 4000ms infinite;
    animation: phone-inner 4000ms infinite
}

.Phone.is-animating::after {
    -webkit-animation: phone-icon 4000ms infinite;
    animation: phone-icon 4000ms infinite
}

@-webkit-keyframes phone-outer {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }

    33.3333% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.1);
        transform: translate3d(0, 0, 0) scale(1.1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5)
    }

    66.6666% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }
}

@keyframes phone-outer {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }

    33.3333% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.1);
        transform: translate3d(0, 0, 0) scale(1.1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0.1), 0em 0.05em 0.1em rgba(0, 0, 0, 0.5)
    }

    66.6666% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0.5em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 0 0em rgba(52, 152, 219, 0), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2)
    }
}

@-webkit-keyframes phone-inner {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0)
    }

    33.3333% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0.9);
        transform: translate3d(0, 0, 0) scale(0.9)
    }

    66.6666% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0)
    }

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

@keyframes phone-inner {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0)
    }

    33.3333% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(0.9);
        transform: translate3d(0, 0, 0) scale(0.9)
    }

    66.6666% {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        transform: translate3d(0, 0, 0) scale(0)
    }

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

@-webkit-keyframes phone-icon {
    0% {
        -webkit-transform: translate3d(0em, 0, 0);
        transform: translate3d(0em, 0, 0)
    }

    2% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    4% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    6% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    8% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    10% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    12% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    14% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    16% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    18% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    20% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    22% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    24% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    26% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    28% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    30% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    32% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    34% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    36% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    38% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    42% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    44% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    46% {
        -webkit-transform: translate3d(0em, 0, 0);
        transform: translate3d(0em, 0, 0)
    }
}

@keyframes phone-icon {
    0% {
        -webkit-transform: translate3d(0em, 0, 0);
        transform: translate3d(0em, 0, 0)
    }

    2% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    4% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    6% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    8% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    10% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    12% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    14% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    16% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    18% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    20% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    22% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    24% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    26% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    28% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    30% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    32% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    34% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    36% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    38% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    40% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    42% {
        -webkit-transform: translate3d(0.01em, 0, 0);
        transform: translate3d(0.01em, 0, 0)
    }

    44% {
        -webkit-transform: translate3d(-0.01em, 0, 0);
        transform: translate3d(-0.01em, 0, 0)
    }

    46% {
        -webkit-transform: translate3d(0em, 0, 0);
        transform: translate3d(0em, 0, 0)
    }
}

.fancybox-enabled {
    overflow: hidden
}

.fancybox-enabled body {
    overflow: visible;
    -ms-touch-action: none;
    touch-action: none
}

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.fancybox-container~.fancybox-container {
    z-index: 99992
}

.fancybox-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0f0f11;
    opacity: 0;
    transition-timing-function: cubic-bezier(.55, .06, .68, .19);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.fancybox-container--ready .fancybox-bg {
    opacity: .87;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 99994;
    transition: opacity .2s;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    direction: ltr
}

.fancybox-show-controls .fancybox-controls {
    opacity: 1
}

.fancybox-infobar {
    display: none
}

.fancybox-show-infobar .fancybox-infobar {
    display: inline-block;
    pointer-events: all
}

.fancybox-infobar__body {
    display: inline-block;
    width: 70px;
    line-height: 44px;
    font-size: 13px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align: center;
    color: #ddd;
    background-color: rgba(30, 30, 30, .7);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox-buttons {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    pointer-events: all
}

.fancybox-show-buttons .fancybox-buttons {
    display: block
}

.fancybox-slider-wrap {
    overflow: hidden;
    direction: ltr
}

.fancybox-slider,
.fancybox-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent
}

.fancybox-slide:before {
    content: "";
    height: 100%;
    width: 0
}

.fancybox-slide:before,
.fancybox-slide>* {
    display: inline-block;
    vertical-align: middle
}

.fancybox-slide>* {
    position: relative;
    padding: 24px;
    margin: 44px 0;
    border-width: 0;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box
}

.fancybox-slide--image {
    overflow: hidden
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-content {
    display: inline-block;
    position: relative;
    margin: 44px auto;
    padding: 0;
    border: 0;
    width: 80%;
    height: calc(100% - 88px);
    vertical-align: middle;
    line-height: normal;
    text-align: left;
    white-space: normal;
    outline: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch
}

.fancybox-iframe {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: #fff
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
    background: transparent
}

.fancybox-placeholder {
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.fancybox-image,
.fancybox-placeholder,
.fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0
}

.fancybox-image,
.fancybox-spaceball {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    background: transparent;
    background-size: 100% 100%
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
    cursor: zoom-out
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
    cursor: zoom-in
}

.fancybox-controls--canGrab .fancybox-placeholder {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-tmp {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden
}

.fancybox-error {
    position: absolute;
    margin: 0;
    padding: 40px;
    top: 50%;
    left: 50%;
    width: 380px;
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    cursor: default
}

.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font: 16px/20px Helvetica Neue, Helvetica, Arial, sans-serif
}

.fancybox-close-small {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font: 21px/1 Arial, Helvetica Neue, Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    cursor: pointer;
    background: #fff;
    transition: background .2s;
    box-sizing: border-box;
    z-index: 2
}

.fancybox-close-small:focus {
    outline: 1px dotted #888
}

.fancybox-slide--video .fancybox-close-small {
    top: -36px;
    right: -36px;
    background: transparent
}

.fancybox-close-small:hover {
    color: #555;
    background: #eee
}

.fancybox-caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 0;
    z-index: 99998;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
    background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none
}

.fancybox-show-caption .fancybox-caption-wrap {
    opacity: 1
}

.fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid hsla(0, 0%, 100%, .4);
    font-size: 14px;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none
}

.fancybox-caption a,
.fancybox-caption button {
    pointer-events: all
}

.fancybox-caption a {
    color: #fff;
    text-decoration: underline
}

.fancybox-button {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    box-sizing: border-box;
    vertical-align: top;
    outline: none
}

.fancybox-button--disabled {
    cursor: default;
    pointer-events: none
}

.fancybox-button,
.fancybox-infobar__body {
    background: rgba(30, 30, 30, .6)
}

.fancybox-button:hover {
    background: rgba(0, 0, 0, .8)
}

.fancybox-button:after,
.fancybox-button:before {
    content: "";
    pointer-events: none;
    position: absolute;
    border-color: #fff;
    background-color: currentColor;
    color: currentColor;
    opacity: .9;
    box-sizing: border-box;
    display: inline-block
}

.fancybox-button--disabled:after,
.fancybox-button--disabled:before {
    opacity: .5
}

.fancybox-button--left:after {
    left: 20px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
}

.fancybox-button--left:after,
.fancybox-button--right:after {
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor
}

.fancybox-button--right:after {
    right: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.fancybox-button--left {
    border-bottom-left-radius: 5px
}

.fancybox-button--right {
    border-bottom-right-radius: 5px
}

.fancybox-button--close {
    float: right
}

.fancybox-button--close:after,
.fancybox-button--close:before {
    content: "";
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 16px;
    top: calc(50% - 1px);
    left: calc(50% - 8px)
}

.fancybox-button--close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.fancybox-button--close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.fancybox-loading {
    border: 6px solid hsla(0, 0%, 39%, .4);
    border-top: 6px solid hsla(0, 0%, 100%, .6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: a .8s infinite linear;
    animation: a .8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 99999
}

@-webkit-keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes a {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@media (max-width:800px) {
    .fancybox-controls {
        text-align: left
    }
    .fancybox-button--left,
    .fancybox-button--right,
    .fancybox-buttons button:not(.fancybox-button--close) {
        display: none!important
    }
    .fancybox-caption {
        padding: 20px 0;
        margin: 0
    }
}

.fancybox-button--fullscreen:before {
    width: 15px;
    height: 11px;
    left: 15px;
    top: 16px;
    border: 2px solid;
    background: none
}

.fancybox-button--play:before {
    top: 16px;
    left: 18px;
    width: 0;
    height: 0;
    border-top: 6px inset transparent;
    border-bottom: 6px inset transparent;
    border-left: 10px solid;
    border-radius: 1px;
    background: transparent
}

.fancybox-button--pause:before {
    top: 16px;
    left: 18px;
    width: 7px;
    height: 11px;
    border-style: solid;
    border-width: 0 2px;
    background: transparent
}

.fancybox-button--thumbs span {
    font-size: 23px
}

.fancybox-button--thumbs:before {
    top: 20px;
    left: 21px;
    width: 3px;
    height: 3px;
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, inset 0 0 0 32px, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0
}

.fancybox-container--thumbs .fancybox-caption-wrap,
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap {
    right: 220px
}

.fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    z-index: 99993;
    word-break: normal;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box
}

.fancybox-thumbs>ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0
}

.fancybox-thumbs>ul>li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid #fff;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box
}

li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, .1)
}

.fancybox-thumbs>ul>li>img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-thumbs>ul>li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94)
}

.fancybox-thumbs>ul>li.fancybox-thumbs-active:before {
    opacity: 1
}

@media (max-width:800px) {
    .fancybox-thumbs {
        display: none!important
    }
    .fancybox-container--thumbs .fancybox-caption-wrap,
    .fancybox-container--thumbs .fancybox-controls,
    .fancybox-container--thumbs .fancybox-slider-wrap {
        right: 0
    }
}

.noUi-target,
.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-target {
    position: relative;
    direction: ltr
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-origin {
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0
}

.noUi-handle {
    position: relative;
    z-index: 1
}

.noUi-stacking .noUi-handle {
    z-index: 10
}

.noUi-state-tap .noUi-origin {
    -webkit-transition: left .3s, top .3s;
    transition: left .3s, top .3s
}

.noUi-state-drag * {
    cursor: inherit!important
}

.noUi-base,
.noUi-handle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.noUi-horizontal {
    height: 18px
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    left: -17px;
    top: -6px
}

.noUi-vertical {
    width: 18px
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    left: -6px;
    top: -17px
}

.noUi-background {
    background: #FAFAFA;
    box-shadow: inset 0 1px 1px #f0f0f0
}

.noUi-connect {
    background: #3FB8AF;
    box-shadow: inset 0 0 3px rgba(51, 51, 51, .45);
    -webkit-transition: background 450ms;
    transition: background 450ms
}

.noUi-origin {
    border-radius: 2px
}

.noUi-target {
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB
}

.noUi-target.noUi-connect {
    box-shadow: inset 0 0 3px rgba(51, 51, 51, .45), 0 3px 6px -5px #BBB
}

.noUi-draggable {
    cursor: w-resize
}

.noUi-vertical .noUi-draggable {
    cursor: n-resize
}

.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #FFF;
    cursor: default;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB
}

.noUi-active {
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB
}

.noUi-handle:after,
.noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #E8E7E6;
    left: 14px;
    top: 6px
}

.noUi-handle:after {
    left: 17px
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px
}

.noUi-vertical .noUi-handle:after {
    top: 17px
}

[disabled] .noUi-connect,
[disabled].noUi-connect {
    background: #B8B8B8
}

[disabled] .noUi-handle,
[disabled].noUi-origin {
    cursor: not-allowed
}

.noUi-pips,
.noUi-pips * {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    text-align: center
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px
}

.noUi-marker {
    position: absolute;
    background: #CCC
}

.noUi-marker-large,
.noUi-marker-sub {
    background: #AAA
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%
}

.noUi-value-horizontal {
    -webkit-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0)
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%
}

.noUi-value-vertical {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    padding-left: 25px
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    background: #fff;
    padding: 5px;
    text-align: center
}

.noUi-horizontal .noUi-handle-lower .noUi-tooltip {
    top: -32px
}

.noUi-horizontal .noUi-handle-upper .noUi-tooltip {
    bottom: -32px
}

.noUi-vertical .noUi-handle-lower .noUi-tooltip {
    left: 120%
}

.noUi-vertical .noUi-handle-upper .noUi-tooltip {
    right: 120%
}

html,
body,
div,
span,
applet,
object,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
    vertical-align: baseline;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0
}

:focus {
    outline: 0
}

body {
    background: white;
    line-height: 1;
    color: black
}

ol,
ul {
    list-style: none
}

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

caption,
th,
td {
    font-weight: 400;
    text-align: left
}

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

blockquote,
q {
    quotes: "" ""
}

.clear {
    clear: both
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

a {
    outline: none;
    text-decoration: none
}

a:hover {
    text-decoration: none
}

.a_left {
    float: left;
    margin: 0 10px 10px 0
}

.a_right {
    float: right;
    margin: 0 0 10px 10px
}

.a_center {
    text-align: center
}

button {
    border: none;
    cursor: pointer
}

input {
    border: none
}

@font-face {
    font-family: 'MuseoSansCyrl';
    src: local("Museo Sans Cyrl 500"), local("MuseoSansCyrl-500"), url(../fonts/MuseoSansCyrl-500.woff2.html) format("woff2"), url(../fonts/MuseoSansCyrl-500.woff.html) format("woff"), url(../fonts/MuseoSansCyrl-500.ttf.html) format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: 'MuseoSansCyrl';
    src: local("Museo Sans Cyrl 100"), local("MuseoSansCyrl-100"), url(../fonts/MuseoSansCyrl-100.otf) format("opentype");
    font-weight: 100;
    font-style: normal
}

@font-face {
    font-family: 'MuseoSansCyrl';
    src: local("Museo Sans Cyrl 300"), local("MuseoSansCyrl-300"), url(../fonts/MuseoSansCyrl-300.otf) format("opentype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: 'MuseoSansCyrl';
    src: local("Museo Sans Cyrl 700"), local("MuseoSansCyrl-700"), url(../fonts/MuseoSansCyrl-700.otf) format("opentype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'MuseoSansCyrl';
    src: local("Museo Sans Cyrl 900"), local("MuseoSansCyrl-900"), url(../fonts/MuseoSansCyrl-900.otf) format("opentype");
    font-weight: 900;
    font-style: normal
}

html {
    overflow-y: scroll!important;
    overflow-x: auto!important
}

body>div,
header,
footer {
    width: 100%;
    /* min-width: 1200px */
}

.container {
    width: 1200px;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    padding: 0 15px
}

.hidden {
    display: none!important
}

.input_error {
    border: 2px solid red!important
}

body {
  padding-top: 56px;
  background: #fff url(../img/box-1__bg.jpg) no-repeat top center
}

header {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,.7);
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px
}

header:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: .5;
    float: left
}

header nav {
  width: 100%;
}

header .social {
  width: 150px;
  text-align: right;
}

header .social a {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px;
}

header .main-menu {
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

header .main-menu li {
    line-height: 55px
}

header .main-menu li:nth-last-of-type(1) a {
    background: #ef332f;
    border-radius: 50px;
}

header .main-menu li:nth-last-of-type(2) a:hover {
    background: #f3615e
}

header .main-menu li a {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: background linear .2s;
    -moz-transition: background linear .2s;
    -o-transition: background linear .2s;
    transition: background linear .2s;
    line-height: 36px;
    padding: 0 15px;
    display: inline-block;
    border-radius: 50px;
}

header .main-menu li a:hover {
    background: #ef332f
}

header .modal-link {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 280px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    font-family: MuseoSansCyrl;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    float: right;
    margin-top: 10px
}

header .modal-link:hover {
    cursor: pointer;
    background-color: #da1511
}

.logo-fix {
  width: 0;
  height: 40px;
  transition: all .4s;
  opacity: 0;
  pointer-events: none;
}

.logo-fix img {
  max-width: 100%;
  max-height: 100%;
  transition: inherit;
}

.logo-fix_show {
  width: 80px;
  opacity: 1;
  pointer-events: initial;
}

.box-1 .container {
    height: 792px
}

.box-1 .logo {
    float: left;
    margin-top: 6px
}

.box-1 .contacts {
    position: relative;
    float: right;
    width: 325px;
    margin-top: 32px
}

.box-1 .contacts .tel {
    display: block;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 24px;
    font-weight: 900;
    float: right;
    letter-spacing: .1em
}

.box-1 .contacts .tel span {
  display: inline-block;
}

.box-1 .contacts .modal-link {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 265px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    font-family: MuseoSansCyrl;
    color: white;
    background-color: none;
    background: rgba(255,0,0,.7);
    border: 1px solid rgba(255,0,0,.7);
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    float: right;
    margin-top: 12px;
    border-radius: 50px;
}

.box-1 .contacts .modal-link:hover {
    cursor: pointer;
    color: #fff;
    background-color: #ef322e
}

.box-1 h1 {
    margin-top: 76px;
    text-align: center;
    font-family: MuseoSansCyrl;
    text-transform: uppercase;
    color: #fff;
    font-size: 61px;
    line-height: 65px;
    font-weight: 900;
    letter-spacing: .1em
}

.box-1 h1 .red {
    color: #ef332f
}

.box-1 h1 .px50 {
    font-size: 50px;
    letter-spacing: .34em
}

.box-1 .block {
    float: right;
    width: 400px;
    height: 374px;
    box-sizing: border-box;
    border: 10px solid #ef332f;
    margin-top: 40px
}

.box-1 .block p {
    text-align: center;
    font-family: MuseoSansCyrl
}

.box-1 .block p.time {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
    padding-top: 22px;
    letter-spacing: 1px
}

.box-1 .block p.time span {
    color: #ef332f
}

.box-1 .block p.work {
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin-top: 10px
}

.box-1 .block p.text {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.3em;
    margin-top: 22px
}

.box-1 .block form {
    width: 282px;
    display: block;
    margin: 18px auto 0
}

.box-1 .block form input {
    float: left;
    height: 48px;
    width: 85px;
    background: #fff;
    box-sizing: border-box;
    text-align: center;
    color: #332316;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 100
}

.box-1 .block form input[type=tel] {
    float: right;
    width: 100%
}

.box-1 .block form button {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 282px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    font-family: MuseoSansCyrl;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    margin-top: 25px;
    border-radius: 50px;
}

.box-1 .block form button:hover {
    cursor: pointer;
    background-color: #da1511
}

.box-1 .left {
    float: left;
    width: 480px;
    margin-top: 96px
}

.box-1 .left .hour {
    float: left
}

.box-1 .left .text {
    font-family: MuseoSansCyrl;
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 100;
    width: 340px;
    float: right;
    letter-spacing: 1px
}

.box-1 .left .text b {
    font-weight: 900
}

.box-2 .container {
    padding-bottom: 75px
}

.box-2 h2 {
    padding-top: 58px;
    text-align: center;
    font-family: MuseoSansCyrl;
    font-weight: 900;
    color: #13151e;
    font-size: 36px;
    line-height: 1.1em
}

.box-2 h2 span {
    color: #ef332f
}

.box-2 h3 {
    margin-top: 30px;
    text-align: center;
    font-weight: 100;
    color: #13151e;
    font-size: 24px;
    font-family: MuseoSansCyrl;
    line-height: 1.2em
}

.box-3 {
    background: url(../img/box-3__bg.jpg) no-repeat top center
}

.box-3 .container {
    height: 1214px
}

.box-3 h2 {
    text-align: center;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 36px;
    font-weight: 900;
    padding: 120px 330px 0;
    line-height: 1.1em;
    margin-bottom: 60px
}

.box-3 .item {
    position: relative;
    float: left;
    width: 230px;
    min-height: 230px;
    margin-right: 62px;
    margin-top: 20px
}

.box-3 .item:nth-of-type(1):after {
    background-position: 0 -165px;
    width: 35px;
    height: 36px
}

.box-3 .item:nth-of-type(2):after {
    left: 20px;
    background-position: 0 -233px;
    width: 30px;
    height: 37px
}

.box-3 .item:nth-of-type(3):after {
    left: 15px;
    background-position: 0 -33px;
    width: 38px;
    height: 38px
}

.box-3 .item:nth-of-type(4):after {
    left: 19px;
    top: 20px;
    background-position: 0 -201px;
    width: 32px;
    height: 32px
}

.box-3 .item:nth-of-type(5):after {
    top: 23px;
    background-position: 0 -106px;
    width: 36px;
    height: 26px
}

.box-3 .item:nth-of-type(6):after {
    left: 15px;
    background-position: 0 0;
    width: 39px;
    height: 33px
}

.box-3 .item:nth-of-type(7):after {
    background-position: 0 -71px;
    width: 37px;
    height: 35px
}

.box-3 .item:nth-of-type(8):after {
    left: 17px;
    top: 19px;
    background-position: 0 -132px;
    width: 36px;
    height: 33px
}

.box-3 .item:before {
    display: block;
    content: "";
    background-position: center center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    border: 10px solid #ef332f
}

.box-3 .item:after {
    position: absolute;
    top: 17px;
    left: 17px;
    content: '';
    background: url(../img/box-3-icons.png) no-repeat;
    overflow: hidden;
    text-indent: -9999px;
    text-align: left
}

.box-3 .item h4 {
    margin-top: 15px;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 900
}

.box-3 .item .description {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    line-height: 24px;
    font-weight: 100
}

.box-3 .block {
    box-sizing: border-box;
    width: 870px;
    height: 374px;
    border: 10px solid #ef322e;
    margin: 0 auto
}

.box-3 .block .inner {
    width: 830px;
    height: 334px;
    margin: 10px;
    background: #fff
}

.box-3 .block .inner h3 {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 24px;
    line-height: 1.1em;
    padding: 45px 60px 0;
    font-weight: 900
}

.box-3 .block .inner .text {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    line-height: 1.1em;
    font-weight: 100;
    padding: 0 130px;
    margin-top: 25px
}

.box-3 .block .inner form {
    width: 282px;
    display: block;
    margin: 22px auto 0
}

.box-3 .block .inner form input {
    float: left;
    height: 48px;
    width: 85px;
    background: #e5e5e5;
    box-sizing: border-box;
    text-align: center;
    color: #332316;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 100
}

.box-3 .block .inner form input[type=tel] {
    float: right;
    width: 100%
}

.box-3 .block .inner form button {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 282px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    font-family: MuseoSansCyrl;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    margin-top: 14px;
    border-radius: 50px;
}

.box-3 .block .inner form button:hover {
    cursor: pointer;
    background-color: #da1511
}

.box-4 {
    background: #f2f2f2
}

.box-4 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 98px
}

.box-4 h2 {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 36px;
    font-weight: 900;
    line-height: 1em;
    padding: 0 340px
}

.box-4 .item {
    width: 555px;
    /* height: 475px; */
    margin-top: 58px
}

.box-4 .item:nth-of-type(2n+1) {
    float: left
}

.box-4 .item:nth-of-type(2n) {
    float: right
}

.box-4 .item h4 {
    font-family: MuseoSansCyrl;
    font-size: 18px;
    float: left;
    width: 50%;
    line-height: 36px;
    margin-top: 15px;
    font-weight: 900;
    text-align: left;
    height: 72px;
    overflow: hidden;
}

.box-4 .item h5 {
    font-family: MuseoSansCyrl;
    font-size: 24px;
    float: left;
    width: 50%;
    line-height: 36px;
    margin-top: 15px;
    font-weight: 100;
    text-align: right
}

.box-4 .item .description {
    font-family: MuseoSansCyrl;
    font-size: 18px;
    text-align: left;
    float: left;
    width: 100%;
    font-weight: 100;
    height: 36px;
    overflow: hidden;
}

.box-4 .item .view {
    display: block;
    float: left;
    box-sizing: border-box;
    width: auto;
    padding: 0 30px;
    height: 60px;
    text-align: center;
    line-height: 52px;
    color: #ef332f;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    border: 4px solid #ef332f;
    margin-top: 30px;
    font-weight: 700;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    border-radius: 50px;
}

.box-4 .item .view:hover {
    color: #fff;
    background: #ef332f
}

.box-5 .container {
    padding-bottom: 18px
}

.box-5 .item {
    float: left;
    margin-top: 78px;
    width: 33.33333333%;
    text-align: center
}

.box-5 .item h3 {
    margin-top: 40px;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    font-weight: 900
}

.box-5 .item .text {
    margin-top: 5px;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.2em;
    padding: 0 35px
}

.box-5 .item .view {
    display: block;
    margin: 50px auto 0;
    width: 219px;
    height: 60px;
    line-height: 60px;
    background: #ef332f;
    text-align: center;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    border-radius: 50px;
}

.box-5 .item .view:hover {
    background: #da1511
}

.box-6 {
    background: url(../img/box-6__bg.jpg) no-repeat top center
}

.box-6 .container {
    height: 978px
}

.box-6 h2 {
    text-align: center;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1em;
    padding-top: 150px
}

.box-6 h3 {
    text-align: center;
    color: #fff;
    font-family: MuseoSansCyrl;
    font-weight: 100;
    font-size: 24px;
    line-height: 1.1em;
    margin-top: 5px
}

.box-6 .calc {
    box-sizing: border-box;
    width: 1030px;
    height: 450px;
    border: 10px solid rgba(255, 255, 255, .5);
    margin: 64px auto 0;
    padding: 20px 40px;
    background: rgba(0, 0, 0, .3)
}

.box-6 .calc .text-1 {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1em
}

.box-6 .calc form {
    float: left;
    width: 402px
}

.box-6 .calc form input,
.box-6 .calc form select {
    width: 402px;
    height: 48px;
    background: #fff;
    box-sizing: border-box;
    float: left;
    display: block;
    border-radius: 0px!important;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    padding-left: 20px;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 100;
    margin-top: 10px
}

.box-6 .calc form select {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAKCAMAAADik6yWAAAAS1BMVEUAAADvMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy/vMy+JtIytAAAAGHRSTlMA+/aLBPHs57atopeUgWBWTEM7MislwhJvhJ0hAAAAXklEQVQY033IVwqAMAAE0U2x9z73P6kIQiAmPvZjGckNCganWA8hOugVGQ107+/AjIpNBlovybdgJn3NFhov34CdlbJYqK8a7KK0tYBnq3K2Eig35e0V1a4/x3ko6QY5AAS1HMcSVgAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: right center
}

.box-6 .calc form select:hover {
    cursor: pointer
}

.box-6 .calc .row {
    width: 100%;
    float: left;
    margin-top: 10px
}

.box-6 .calc .row.in {
    margin-top: 30px
}

.box-6 .calc .row.in label {
    line-height: 1em
}

.box-6 .calc .row label {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 20px;
    font-weight: 100;
    line-height: 3em
}

.box-6 .calc .row label span {
    color: #ef332f
}

.box-6 .calc .noUi-horizontal .noUi-base .noUi-origin .noUi-handle {
    border-radius: 100%;
    width: 34px;
    height: 34px;
    top: -9px
}

.box-6 .calc .noUi-horizontal .noUi-base .noUi-origin .noUi-handle:before,
.box-6 .calc .noUi-horizontal .noUi-base .noUi-origin .noUi-handle:after {
    top: 9px
}

.box-6 .calc .result {
    float: left;
    margin-left: 74px;
    width: 329px
}

.box-6 .calc .result p {
    font-family: MuseoSansCyrl;
    line-height: 1.3em
}

.box-6 .calc .result p.text {
    color: #fff;
    font-size: 18px;
    font-weight: 100
}

.box-6 .calc .result p.res {
    font-size: 36px;
    color: #ef332f;
    margin-bottom: 30px
}

.box-6 .calc .result .modal-link {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 329px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    font-family: MuseoSansCyrl;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    margin-top: 10px;
    border-radius: 50px;
}

.box-6 .calc .result .modal-link:hover {
    cursor: pointer;
    background-color: #da1511
}

.box-7 .container {
    padding-bottom: 75px
}

.box-7 h2 {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    line-height: 36px;
    font-size: 30px;
    font-weight: 300;
    padding: 75px 170px
}

.box-7 h2 b {
    font-size: 36px;
    font-weight: 900
}

.box-7 .item {
    width: 555px
}

.box-7 .item:nth-of-type(2n) {
    float: right
}

.box-7 .item:nth-of-type(2n+1) {
    float: left
}

.box-7 .item h3 {
    text-align: left;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 22px;
    font-weight: 900
}

.box-7 .item .left {
    float: left;
    width: 350px;
    margin-top: 15px;
    height: 96px
}

.box-7 .item .left h4 {
    text-align: left;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 900
}

.box-7 .item .left .description {
    margin-top: 5px;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 100
}

.box-7 .item .right {
    float: right;
    width: 205px;
    margin-top: 15px;
    text-align: right;
    height: 96px
}

.box-7 .item .right h5 {
    font-family: MuseoSansCyrl;
    color: #000;
    font-size: 24px;
    font-weight: 100
}

.box-7 .item .right .description {
    color: #747474;
    font-size: 16px;
    font-family: MuseoSansCyrl;
    font-weight: 100;
    margin-top: 5px
}

.box-7 .item .modal-link {
    display: block;
    width: 299px;
    height: 71px;
    box-sizing: border-box;
    text-align: center;
    color: #ef332f;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    line-height: 1.2em;
    border: 4px solid #ef332f;
    float: left;
    padding-top: 12px;
    font-weight: 100;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    border-radius: 50px;
}

.box-7 .item .modal-link b {
    font-weight: 700
}

.box-7 .item .modal-link:hover {
    color: #fff;
    background: #ef332f
}

.box-8 {
    background: url(../img/box-8__bg.jpg) repeat-y top center
}

.box-8 .container {
    padding-bottom: 70px
}

.box-8 h2 {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    line-height: 36px;
    font-size: 30px;
    padding: 80px 230px 70px
}

.box-8 h2 b {
    font-size: 36px
}

.box-8 .item {
    float: left;
    width: 100%;
    height: 489px;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    overflow: hidden
}

.box-8 .item.item-hidden {
    height: 0
}

.box-8 .item:nth-of-type(2n) .slider {
    float: right
}

.box-8 .item:nth-of-type(2n) .description {
    float: left
}

.box-8 .item .slider {
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.box-8 .item .slider-controls {
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 52px;
    left: 0;
    z-index: 2
}

.box-8 .item .slider-controls a {
    display: block;
    width: 52px;
    height: 52px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .8;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s
}

.box-8 .item .slider-controls a.next {
    float: right;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAMAAADypuvZAAAATlBMVEXvMy//////+fn+7e34o6HyWVbvNTH+8/P6xcT6vbz5raz4qaf3mpj0d3T0b2zzaGXzYV7xUEzvODT+9fT70dD5tbT5tbP1gH31f3zwQz/cDUCOAAAAYUlEQVRIx+3SWQ6AIAyEYQYVF9x3739RucI0MTFk/vcvDbROKfXP4s2bEhho1AN+tIzyE626pGYWhQOoK1q1QEGrtUlqYdWzAbtp0vdvCif1e/ye+Iuw3579yl28nFIqr143JgI5kOVlbgAAAABJRU5ErkJggg==)
}

.box-8 .item .slider-controls a.prev {
    float: left;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAMAAADypuvZAAAAUVBMVEXvMy/////++Pj+7e34o6HvNTH/+vr+8/P6xcP6vbz5tbT4qaf3m5n1gHz0d3T0cG3zaGXzYV7yW1jyVlPxUEzvODT+9fT70M/5raz5ravwQz+INiSKAAAAYklEQVRIx+2TNw4AMQgEvZdzzv9/6NFRb4FkWUxDNULAEhzHiZex550JKFhnroCBdJaMb7SK85DOVgNdyTl7DrSkc4jTnIHjBq5PqnUnncl4e3qnV6pxIjR71inXf3IcJx1+ua8CfxHJOGkAAAAASUVORK5CYII=)
}

.box-8 .item .slider-controls a:hover {
    opacity: 1
}

.box-8 .item .slider ul {
    position: absolute;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -o-transition: all ease 1s;
    transition: all ease 1s;
    top: 0;
    left: 0;
    width: 99999999%;
    height: 100%
}

.box-8 .item .slider ul li {
    float: left;
    width: 586px;
    height: 100%
}

.box-8 .item .slider ul li img {
    width: 100%;
    height: 100%
}

.box-8 .item .description {
    float: right;
    width: 50%;
    box-sizing: border-box;
    height: 100%;
    padding-left: 44px;
    padding-top: 36px;
    background: #fff
}

.box-8 .item .description h4 {
    color: #010000;
    font-family: MuseoSansCyrl;
    font-size: 20px;
    line-height: 30px;
    font-weight: 900
}

.box-8 .item .description .text {
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    line-height: 30px;
    font-weight: 100;
    margin-top: 20px
}

.box-8 .item .description .text b {
    font-weight: 700
}

.box-8 .show-more-samples {
    display: block;
    margin: 70px auto 0;
    box-sizing: border-box;
    width: 231px;
    height: 60px;
    line-height: 52px;
    border: 4px solid #ef332f;
    text-align: center;
    color: #ef332f;
    font-family: MuseoSansCyrl;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    border-radius: 50px;
}

.box-8 .show-more-samples:hover {
    color: #fff;
    background: #ef332f
}

.box-9 .container {
    padding-bottom: 45px
}

.box-9 h2 {
    text-align: center;
    color: #000;
    font-family: MuseoSansCyrl;
    font-size: 36px;
    padding: 80px 0 50px;
    font-weight: 900
}

.box-9 ul {
    width: 100%;
    height: 373px;
    text-align: center
}

.box-9 ul li {
    display: inline-block;
    width: 270px;
    height: 373px;
    box-sizing: border-box;
    border: 10px solid #d2d2d2;
    background: #fff;
    margin-left: 18px
}

.box-9 ul li:nth-of-type(1) {
    margin-left: 0
}

.box-9 ul li a {
    display: block;
    float: left;
    width: 230px;
    height: 333px;
    margin: 10px
}

.box-9 ul li a img {
    width: 100%;
    height: 100%;
    display: block;
    float: left
}

.box-10 {
    position: relative;
    overflow: hidden
}

.box-10 #map {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1918px;
    width: 100%;
    height: 100%;
    background: url(../img/map.jpg) no-repeat center;
    background-size: cover
}

.box-10 .container {
    height: 850px;
    width: 0;
    overflow: visible;
    padding: 0
}

.box-10 .top {
    position: absolute;
    top: 0;
    left: -960px
}

.box-10 h2 {
    width: 630px;
    margin-left: -315px;
    text-align: center;
    padding-top: 160px;
    color: #fff;
    font-family: MuseoSansCyrl;
    line-height: 36px;
    font-size: 24px;
    font-weight: 100
}

.box-10 h2 b {
    font-size: 36px;
    font-weight: 900
}

.box-10 .block {
    width: 400px;
    box-sizing: border-box;
    margin-left: -200px;
    margin-top: 70px;
    border: 10px solid #ef332f
}

.box-10 .block .inner {
    width: 370px;
    background: #fff;
    margin: 5px;
    padding-bottom: 30px
}

.box-10 .block .inner h3 {
    text-align: center;
    font-family: MuseoSansCyrl;
    font-weight: 900;
    color: #000;
    font-size: 24px;
    line-height: 24px;
    padding-top: 25px
}

.box-10 .block .inner h4 {
    text-align: center;
    font-family: MuseoSansCyrl;
    color: #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 100;
    margin-top: 5px
}

.box-10 .block .inner form {
    width: 280px;
    display: block;
    margin: 20px auto 0
}

.box-10 .block .inner form input {
    float: left;
    width: 280px;
    height: 48px;
    background: #e5e5e5;
    text-align: center;
    box-sizing: border-box;
    color: #332316;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 12px
}

.box-10 .block .inner form input:nth-of-type(2) {
    width: 100%
}

.box-10 .block .inner form input:nth-of-type(3) {
    width: 185px;
    margin-left: 10px
}

.box-10 .block .inner form button {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 280px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    font-family: MuseoSansCyrl;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    margin-top: 5px;
    border-radius: 50px;
}

.box-10 .block .inner form button:hover {
    cursor: pointer;
    background-color: #da1511
}

footer {
    background: #000
}

footer .container {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .logo {
    float: none;
    margin-top: 0
}

footer .info {
    float: none;
    margin-top: 0;
    width: auto;
    text-align: center;
}

footer .info .footer-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

footer .info .footer-menu li {
    line-height: 55px
}

footer .info .footer-menu li a {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: background linear .2s;
    -moz-transition: background linear .2s;
    -o-transition: background linear .2s;
    transition: background linear .2s;
    line-height: 36px;
    padding: 0 15px;
    display: inline-block;
    border-radius: 50px;
}

footer .info .footer-menu li a:hover {
    background: #ef332f
}

footer .info .social {
    float: right;
    margin-top: 25px
}

footer .info .social a {
    margin-left: 5px;
    opacity: .8
}

footer .info .social a:hover {
    opacity: 1
}

footer .info .left {
    float: none;
    width: auto;
    margin-top: 25px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .info .left .tel {
    color: #fff;
    font-family: MuseoSansCyrl;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .1em;
    display: block;
    margin-bottom: 10px;
}

footer .info .left .modal-link {
    float: none;
    width: 260px;
    line-height: 34px;
    background: rgba(255,0,0,.7);
    border: 1px solid rgba(255,0,0,.7);
    display: inline-block;
    text-align: center;
    font-family: MuseoSansCyrl;
    font-size: 14px;
    color: white;
    margin-top: 5px;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    border-radius: 50px;
}

footer .info .left .modal-link:hover {
    background: #ef332f;
    color: #fff
}

.fancybox-slide>* {
    padding: 0;
    background: none;
    margin: 0
}

.fancybox-close-small {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 22px;
    right: 22px;
    border: none;
    color: #000;
    font-weight: 900
}

.fancybox-close-small:focus {
    outline: none
}

.modal-form {
    width: 400px;
    height: auto;
    background: #000;
    border: 10px solid #ef332f;
    box-sizing: border-box
}

.modal-form .inner {
    background: #fff;
    width: 360px;
    height: auto;
    padding-bottom: 40px;
    margin: 10px
}

.modal-form .inner h2 {
    text-align: center;
    font-family: MuseoSansCyrl;
    font-weight: 100;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    padding: 20px 30px
}

.modal-form .inner h2 b {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin-bottom: 5px;
    display: inline-block
}

.modal-form .inner h3 {
    text-align: center;
    font-family: MuseoSansCyrl;
    line-height: 24px;
    font-size: 18px;
    color: #000;
    font-weight: 900;
    padding-top: 60px;
    padding-bottom: 20px
}

.modal-form .inner h3 b {
    font-size: 24px;
    line-height: 24px;
    font-weight: 900;
    margin-bottom: 5px;
    display: inline-block
}

.modal-form .inner form {
    width: 280px;
    display: block;
    margin: 0 auto
}

.modal-form .inner form input {
    float: left;
    width: 280px;
    height: 48px;
    background: #e5e5e5;
    text-align: center;
    box-sizing: border-box;
    color: #332316;
    font-family: MuseoSansCyrl;
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 12px
}

.modal-form .inner form input:nth-of-type(2) {
    width: 100%
}

.modal-form .inner form input:nth-of-type(3) {
    width: 185px;
    margin-left: 10px
}

.modal-form .inner form button {
    display: block;
    padding: 0;
    border: none;
    margin: 0 auto;
    width: 280px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    font-family: 'MuseoSansCyrl', sans-serif;
    color: #fff;
    background-color: #ef332f;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
    letter-spacing: 1px;
    margin-top: 5px
}

.modal-form .inner form button:hover {
    cursor: pointer;
    background-color: #da1511
}

.red-text {
    font-size: 30px;
    font-weight: 800;
    color: #ef332f
}

#instagram {
  position: fixed;
  /* background: url(/img/inst_fone.jpg); */
  background: rgba(0,0,0,.7);
  border-radius: 0 0 10px 10px;
  background-size: cover;
  right: -50px;
  transform: rotate(90deg);
  top: 63%;
  transform-origin: 100% 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  max-width: 208px;
  z-index: 30;
  font-family: 'MuseoSansCyrl', sans-serif;
  box-shadow: 0 0 0 2px rgba(255,0,0,.5);
  animation: slide-left .5s 2s forwards;
  transition: all .5s;
}


#instagram a {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 15px 8px;
    font-size: 12px;
    font-weight: bold;
}

#instagram a:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    /*background: url(/img/instagram.svg) center no-repeat;*/
    flex-shrink: 0;
    margin-right: 12px;
    transition: .5s;
    transition-timing-function: ease-out
}

#instagram a:hover:before {
    transform: rotate(360deg)
}

#instagram a:focus {
    color: #fff !important;
    outline: none
}

@keyframes slide-left {
  0% {
    right: -50px;
  }

  100% {
    right: 0;
  }
}

.item strong.red {
  font-size: 24px;
  font-weight: bold;
  color: #ef332f;
  padding-left: 220px;
}

.catalog {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.catalog .item {
  float: none !important;
  box-sizing: border-box;
  width: 31%;
  margin-bottom: 30px;
  padding: 15px;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-align: center;
}

.box-7 h2.catalog-title {
  font-size: 20px;
}

.catalog .item h3 {
  margin: 0 0 10px;
  font-family: MuseoSansCyrl;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.catalog .item p {
  margin: 4px 0;
  font-family: MuseoSansCyrl;
  font-size: 14px;
}

.catalog .item .price {
  font-size: 18px;
  font-weight: 700;
}

.catalog .item .btn {
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
}

.catalog .item img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 150px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

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

.item-img {
  position: relative;
  display: block;
  margin: 0 20px 20px 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 1px 2px rgba(0,0,0,.1);
  overflow: hidden;
}

.item-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.btn {
  display: inline-block;
  vertical-align: top;
  padding: 8px;
  height: 36px;
  line-height: 36px;
  white-space: nowrap;
  background: transparent;
  border-radius: 50px;
  color: #ef332f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-family: 'MuseoSansCyrl', sans-serif;
  transition: all .3s;
  border: 2px solid #ef332f;
  width: 200px;
  text-align: center;
}

.btn:hover {
  background: #ef332f;
  color: white;
}

/* Override button width inside catalog cards */
.catalog .item .btn {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
}

.menu-mobile {
  position: absolute;
  z-index: 999999;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: url('../img/icons/menu.svg') no-repeat center;
  background-size: contain;
  display: none;
}

.menu-mobile-close {
  position: fixed;
  background: url('../img/icons/close.svg') no-repeat center;
  background-size: 20px;
}

header.header-mobile {
  top: 0;
  opacity: 1;
}

.freeze {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 1200px) {
  body {
    padding: 16px 0 0;
  }
  header {
    top: -100%;
    opacity: 0;
    transition: all .5s;
    /* display: none; */
  }

  header .container {
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  header nav {
    width: 100%;
  }

  header .main-menu {
    text-align: center;
    flex-direction: column;
  }

  header .social {
    text-align: center;
    margin: 20px 0;
  }

  .menu-mobile {
    display: block;
  }

  .logo-fix {
    display: none;
  }

  * {
    float: none !important;
    max-width: 100% !important;
  }

  img {
    width: auto !important;
    height: auto !important;
  }

  .box-1 .logo {
    float: none;
  }

  .box-1 .contacts {
    float: none;
    width: 100%;
  }

  .box-1 {
    text-align: center;
  }

  .box-1 h1 {
    margin-top: 20px;
    font-size: 26px;
    line-height: 1.4;
  }

  .box-1 h1 .px50 {
    display: block;
    font-size: 18px;
  }

  .box-1 h1 .red {
    display: block;
  }

  .box-1 .left {
    margin: 20px auto 0;
  }

  .box-1 .left .text {
    width: auto;
  }

  .box-1 .container {
    height: auto;
  }

  .box-1 .block {
    margin: 20px auto;
    background: rgba(0,0,0,.7);
    height: auto;
    padding: 8px;
  }

  .box-1 .block p.work,
  .box-1 .block p.time {
    display: none;
  }

  .box-1 .block form button {
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }

  .box-2 h2 {
    padding: 20px 0 0;
    font-size: 20px;
  }

  .box-2 h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 20px;
  }

  .box-3 {
    background: #F2F2F2;
  }

  .box-3 h2 {
    padding: 60px 0 0;
    color: black;
    font-size: 26px;
  }

  .box-3 .item {
    margin: 0 auto;
    width: auto;
    text-align: center;
    min-height: initial;
    margin-bottom: 30px;
  }

  .box-3 .item:before {
    margin: 0 auto;
    background: rgba(0,0,0,.7);
  }

  .box-3 .item:nth-child(1n):after {
    left: 50%;
    transform: translateX(-50%);
  }

  .box-3 .container {
    height: auto;
  }

  .box-3 .item h4,
  .box-3 .item .description {
    /* background: rgba(0,0,0,.7); */
    color: black;
  }

  .box-3 .block {
    height: auto;
  }

  .box-3 .block .inner {
    margin: 0;
    height: auto;
  }

  .box-3 .block .inner .text,
  .box-3 .block .inner form {
    padding: 8px;
  }

  .box-3 .block .inner form {
    box-sizing: border-box;
  }

  .box-3 .block .inner form button {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .box-3 .block .inner h3 {
    padding: 8px;
  }

  .box-4 h2 {
    color: black;
    padding: 0;
    margin: 40px 0 0;
    font-size: 26px;
  }

  .box-4 .item:nth-child(1n) {
    margin: 10px 0 0;
  }

  .box-4 .item h4,
  .box-4 .item h5,
  .box-4 .item .description {
    margin: 0;
    width: 100%;
    height: auto;
    text-align: left;
  }

  .box-5 .item {
    width: 100%;
    margin-top: 20px;
  }

  .box-6 .calc .result p.res {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .box-6 .calc .result p {
    font-size: 16px;
  }

  .box-6 .calc .result .modal-link {
    height: auto;
    line-height: 1.4;
    font-size: 16px;
  }

  .box-6 .container {
    height: auto;
  }

  .box-6 h2 {
    padding-top: 100px;
    font-size: 26px;
  }

  .box-6 .calc {
    height: auto;
    padding: 8px;
    margin: 20px 0;
  }

  .box-6 .calc .result {
    margin: 20px 0 0;
  }

  .box-7 h2 {
    padding: 8px;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.4;
  }

  .box-7 h2 b {
    font-size: 20px;
  }

  .box-7 .item {
    margin: 0 0 20px;
  }

  .box-7 .item,
  .box-7 .item h3,
  .box-7 .item .left h4 {
    text-align: center;
  }

  .box-7 .item h3 {
    font-size: 26px;
  }

  .box-7 .item .left h4 {
    font-size: 16px;
  }

  .box-7 .item .right {
    margin: 0;
    width: 100%;
    height: auto;
    margin: 0 0 10px;
  }

  .box-8 h2 b {
    font-size: 26px;
  }

  .box-8 h2 {
    padding: 40px 8px 0;
    font-size: 20px;
    margin: 0 0 20px;
  }

  .box-8 .item {
    margin: 0 0 20px;
    height: auto;
    /* padding-top: 240px; */
  }

  .box-8 .item .slider {
    width: 100%;
    height: auto;
    height: 76.4vw;
  }

  .box-8 .item .slider ul {
    /* position: static; */
    width: 100%;
    white-space: nowrap;
    font-size: 0;
  }

  .box-8 .item .slider ul li {
    height: 100%;
    display: inline-block;
    vertical-align: top;
  }

  .box-8 .item .slider-controls {
    bottom: 0;
    display: flex;
    justify-content: space-between;
    height: 52px;
  }

  .box-8 .item .description {
    width: 100%;
    padding: 8px;
  }

  .box-8 .item .description h4 {
    font-size: 16px;
  }

  .box-8 .item .description .text b {
    display: block;
  }

  .box-8 .item.item-hidden {
    margin: 0;
  }

  .box-9 h2 {
    padding: 40px 0;
    font-size: 26px;
  }

  .box-9 ul {
    height: auto;
  }

  .box-9 ul li {
    margin: 0 0 20px;
  }

  .box-10 .container {
    height: auto;
    margin: 0;
    padding: 8px;
    width: 100%;
  }

  .box-10 .top {
    height: auto;
    position: static;
  }

  .box-10 h2 {
    margin: 0;
    padding: 40px 0;
    line-height: 1.4;
    font-size: 18px;
  }

  .box-10 h2 b {
    font-size: 24px;
    line-height: 1.4;
  }

  .box-10 .block {
    margin: 20px 0 0;
  }

  .box-10 .block .inner {
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
  }

  footer .logo {
    display: block;
    margin: 10px auto;
  }

  footer .container {
    height: auto;
    padding-bottom: 20px;
  }

  footer .info {
    text-align: center;
  }

  footer .info .footer-menu {
    display: none;
  }

  footer .info .left {
    margin: 0;
  }

  footer .info .left .tel {
    display: block;
    margin: 20px 0;
  }

  .modal-form .inner {
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
  }

  #instagram {
    /* display: none; */
    border-radius: 4px;
    top: auto;
    bottom: 15%;
  }

  #instagram span {
    display: none;
  }

  #instagram a:before {
    margin: 0;
  }

  #instagram a {
    padding: 2px;
  }

  .catalog,
  .item-img-wrap {
    flex-direction: column;
  }

  .item-img {
    margin: 0 auto 20px;
  }

  .box-7 .item .left .description {
    margin: 0 0 10px;
  }

  .box-7 .item .left {
    height: auto;
  }

  .box-7 .item .right {
    text-align: center;
  }

  .item strong.red {
    padding: 0;
  }

  .item-img img {
    height: 100% !important;
  }
}

@media (max-width: 500px) {
  .box-7 .item .modal-link {
    width: 100%;
    margin: 20px auto;
  }
}

@media (max-width: 350px) {
  .Phone {
    top: -10px;
  }
}
