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

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

body {
    background: #fff;
    font-size: 14px;
    color: #000;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
}

* {
    outline: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.responsive-image {
    max-width: 100%;
}

input, textarea, select, button {
    border: none;
    resize: none;
    display: block;
    font-family: 'Roboto', sans-serif;
}

input[type="text"],
input[type="tel"],
input[type="mail"] {
    background: #fff;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

button[type="submit"] {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

::-moz-placeholder {
    opacity: 1;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-ms-placeholder {
    opacity: 1;
}

::placeholder {
    opacity: 1;
}

label {
    cursor: pointer;
}

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

a {
    transition: all 300ms ease;
    text-decoration: none;
    color: #2E72A4;
}

p {
    margin-top: 25px;
}

.hidden {
    display: none;
}

.viewport-wrapper {
    position: relative;
    min-width: 280px;
    overflow: hidden;
    margin: 0 auto;
}

.viewport-wrapper.overflow {
    width: 100%;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
}

.container {
    margin: 0 auto;
    min-width: 300px;
    max-width: 1920px;
    padding: 0 50px;
    width: 100%;
}

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

.j-between {
    justify-content: space-between;
}

.j-center {
    justify-content: center;
}

.j-end {
    justify-content: flex-end;
}

.a-start {
    align-items: flex-start;
}

.a-center {
    align-items: center;
}

.a-end {
    align-items: flex-end;
}


.modal-buttons {
    display: flex;
    margin-top: 20px;
}

.modal-buttons.center {
    justify-content: center;
}

.modal-buttons .bt-str-blue {
    margin-right: 20px;
}

.modal-buttons .bt-str-blue.disabled {
    border-color: #fff;
    cursor: default;
}

.modal-buttons .bt-str-blue.disabled:hover {
    background: none;
}

.modal-buttons .bt-str-blue:last-child {
    margin-right: 0;
}

.bt-str-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: solid 3px #008bea;
    border-radius: 25px;
}

.bt-str-blue:hover {
    background: #008bea;
}

.bt-str-white {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: solid 3px #fff;
    border-radius: 25px;
}


.icon-gallery {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 19px;
    margin-right: 12px;
}

.icon-gallery:before {
    content: '';
    display: block;
    background: url(../i/gallery.png);
    width: 22px;
    height: 19px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.icon-filter {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 19px;
    margin-right: 12px;
}

.icon-filter:before {
    content: '';
    display: block;
    background: url(../i/filter.png);
    width: 22px;
    height: 19px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.icon-filter:after {
    content: '';
    display: block;
    background: url(../i/filter-blue.png);
    width: 22px;
    height: 19px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    opacity: 0;
}


.icon-compare {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 20px;
    margin-right: 12px;
}

.icon-compare:before {
    content: '';
    display: block;
    background: url(../i/compare.png);
    width: 18px;
    height: 20px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.icon-compare:after {
    content: '';
    display: block;
    background: url(../i/compare-blue.png);
    width: 18px;
    height: 20px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    opacity: 0;
}


.icon-smartphone {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 26px;
    margin-right: 12px;
}

.icon-smartphone:before {
    content: '';
    display: block;
    background: url(../i/smartphone.png);
    width: 16px;
    height: 26px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.icon-smartphone:after {
    content: '';
    display: block;
    background: url(../i/smartphone-blue.png);
    width: 16px;
    height: 26px;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
    opacity: 0;
}


/*.header-call:hover .icon-smartphone:before,
.bt-str-blue:hover .icon-filter:before,
.bt-str-blue:hover .icon-compare:before {
	opacity: 0;
}
.header-call:hover .icon-smartphone:after,
.bt-str-blue:hover .icon-filter:after,
.bt-str-blue:hover .icon-compare:after {
	opacity: 1;
}*/


.main-menu {
    position: fixed;
    left: 0;
    top: 0;
    background: #28323c;
    z-index: 150;
    display: none;
    height: 100%;
    padding: 140px 50px 10px;
    overflow: hidden;
}


.close-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    background: url(../i/triangle2.png);
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    padding-top: 58px;
    cursor: pointer;
    transition: .3s;
}

.close-wrapper:before {
    content: '';
    display: block;
    background: url(../i/close.png);
    width: 24px;
    height: 24px;
}

.close-wrapper:hover {
    top: -32px;
}

.main-menu .logo {
    position: absolute;
    top: 10px;
    left: 116px;
    width: 173px;
    display: block;
}

.main-menu .logo svg {
    width: 100%;
}

.main-menu .wrapper {
    position: relative;
    height: calc(100vh - 150px);
    max-width: 1600px;
    margin: 0 auto;
    opacity: 0;
}


/*.open-menu .main-menu {
	transform: translateX(0%);
}
.open-menu .main-menu .wrapper {
	opacity: 1;
}*/


.main-menu .nav {
    width: 50%;
    padding-left: 15%;
}

.main-menu .content {
    width: 40%;
}

.nav li {
    margin-bottom: 20px;
}

.nav li a {
    font-size: 24px;
    color: #b1c7d6;
    font-weight: 900;
}

.nav li a:after {
    content: '';
    display: block;
    height: 6px;
    background-color: #008bea;
    transition: .3s;
    width: 0;
}

.nav li a.active:after,
.nav li a:hover:after {
    width: 107px;
}

.nav li a.active,
.nav li a:hover {
    color: #8f8f8f;
}

.nav ul + ul {
    padding-top: 60px;
}


.main-menu .tab-content {
    max-height: 760px;
    overflow: auto;
}

.main-menu .tab-content::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 5px;
}

.main-menu .tab-content::-webkit-scrollbar-thumb {
    width: 5px;
    background: #fff;
    border-radius: 5px;
}

.main-menu .tab-content::-webkit-scrollbar-track {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 5px;
}

.main-menu .box:not(:first-child) {
    margin-top: 30px;
}

.main-menu .tab-content .title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #8f8f8f;
}

.main-menu .tab-content .col {
    width: 33.333%;
}

.main-menu .tab-content .sm-title {
    padding-bottom: 6px;
    margin-top: 15px;
    font-size: 12px;
    color: #8f8f8f;
    font-weight: 500;
    text-transform: uppercase;
}

.main-menu .tab-content li {
    margin-top: 18px;
}

.main-menu .tab-content li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.main-menu .tab-content li a:hover {
    color: #008bea;
}

.main-menu .social {
    left: 15%;
    bottom: 100px;
    position: absolute;
    justify-content: flex-start;
}

.main-menu .social a {
    margin: 0 16px 0 0;
}

.main-menu .tab-content .mobile-title {
    display: none;
    font-size: 24px;
    color: #b1c7d6;
    font-weight: 900;
    cursor: pointer;
}

.main-menu .tab-content .mobile-title:after {
    content: '';
    display: block;
    height: 6px;
    background-color: #008bea;
    transition: .3s;
    width: 0;
    margin: 5px auto 0;
}

.main-menu .tab-content.active .mobile-title:after {
    width: 107px;
}


.mobile-bt-menu {
    position: relative;
    z-index: 10;
    cursor: pointer;
    display: none;
    background: url(../svg/list.svg);
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.header {
    position: absolute;
    /*z-index: 100;*/
    z-index: 101;
    width: 100%;
    color: #fff;
    background: #28323c;
}

.header-absolute {
    left: 0;
    top: 56px;
    background: transparent;
}

.header-absolute .header-logo {
    margin-top: -18px;
    width: 216px;
}

.header-wrapper {
    height: 82px;
}

.header-logo {
    margin-right: 50px;
    display: block;
}

.header-logo img {
    width: 100%;
}

.header-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-nav {
    margin-left: auto;
}

.header-nav li {
    margin-right: 50px;
}

.header-nav .topline>li {
    margin-right: 0px;
    padding-right: 50px;
}

.header-nav li a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.header-nav li .bt-menu {
    padding-left: 25px;
}

.header-nav li a:hover {
    color: #008bea;
}

.icon-burger {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: .3s;
    position: absolute;
    left: 0;
    top: 3px;
}

.icon-burger:before {
    content: '';
    display: block;
    height: 2px;
    background: #fff;
    width: 7px;
    transition: .3s;
}

.header-nav li a:hover .icon-burger {
    border-color: #008bea;
}

.header-nav li a:hover .icon-burger:before {
    background: #008bea;
}


.heder-tel {
    font-size: 15px;
    font-weight: 700;
    color: #ffff;
    display: inline-block;
}

.header-call {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border: solid 3px #008bea;
    border-radius: 25px;
    margin: 0 0 0 72px;
}

.header-call:hover {
    background: #008bea;
}


.ps {
    position: relative;
    float: left;
    width: 100%;
}

.wrapper {
    margin: 0 auto;
    max-width: 1820px;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
}

.wrapper-in {
    position: relative;
    float: left;
    width: calc(100% + 110px);
    margin-right: -110px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}


#main-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #0b0c0b;
    overflow: hidden;
}

#main-screen .service-block {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.3%;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#main-screen .service-block .service-block-in {
    max-height: 780px;
    margin-top: -40px;
}

#main-screen .service-block.active {
    z-index: 6;
}

#main-screen .service-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 1;
}

#main-screen .service-block .srv-back {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
}

#main-screen .service-block.s-b-1 {
    left: 0;
}

#main-screen .service-block.s-b-1 .border-top {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

#main-screen .service-block.s-b-1 .border-bottom {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to top, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

#main-screen .service-block.s-b-2 {
    left: 33.3%;
}

#main-screen .service-block.s-b-2 .border-top {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

#main-screen .service-block.s-b-2 .border-bottom {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to top, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}


#main-screen .service-block.s-b-3 {
    right: 0;
    left: auto;
}


#main-screen .service-block:hover:before {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
}

span.show-h2 {
    opacity: 0;
}

span.show-h2.show-opacity {
    opacity: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#main-screen .service-block.active:hover:before {
    opacity: 0.5;
}

#main-screen .service-block.active:before {
    opacity: 0.5;
}

#main-screen .service-block.active:before {
    /*display: none;*/
}

#main-screen.active-hover .service-block:hover {
    width: 35%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
}

#main-screen.active-hover .service-block.s-b-2:hover {
    margin-left: -1%;
}

#main-screen .service-block .service-block-name {
    top: 50%;
    margin-top: -65px;
    position: absolute;
    left: 52px;
    color: #fff;
    font-weight: bold;
    font-size: 42px;
    line-height: 59px;
    padding-right: 20px;
    padding-bottom: 12px;
    text-transform: uppercase;
    z-index: 2;
}

#main-screen .service-block.s-b-3 .service-block-name {
    right: 0;
    width: 100%;
}

#main-screen .service-block .service-block-name {
    opacity: 0;
    display: none;
}

#main-screen .service-block .service-block-name.active-middle {
    opacity: 1;
    display: block;
}

#main-screen.active-hover .service-block .service-block-name {
    opacity: 1;
    display: block;
}

#main-screen .service-block .service-block-name.service-vertical {
    display: block;
    left: 50%;
    font-size: 23.3px;
    transform: rotate(-90deg);
    margin-top: 0;
    padding-bottom: 0;
    width: 410px;
    height: 118px;
    margin-left: -175px;
    bottom: -330px;
    top: auto;
    opacity: 1;
}

@media (max-height: 740px) {
    #main-screen .service-block .service-block-name.service-vertical {
        margin-bottom: 35px;
    }
}

#main-screen .service-block.active .service-block-name, #main-screen .service-block .service-block-name.active-middle {
    font-size: 52px;
    margin-top: 0;
    top: 180px;
    display: block;
    min-width: 800px;
}

#main-screen .service-block.active .service-block-name:before, #main-screen .service-block .service-block-name.active-middle:before {
    display: none;
}

#main-screen .service-block.active .service-block-name br, #main-screen .service-block .service-block-name.active-middle br {
    display: none;
}

#main-screen .service-block .service-block-name.service-vertical br {
    display: none;
}

#main-screen .service-block .service-block-name.service-vertical:before {
    display: none;
}

#main-screen .service-block .service-block-name:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94px;
    height: 6px;
    background: #008bea;
    transition-duration: 0.3s;
}

#main-screen .service-block:hover .service-block-name:before {
    width: 150px;
}

#main-screen .service-block .service-block-prev {
    display: none;
    opacity: 0;
    /*margin-top: 408px;*/
    /*margin-top: 350px;*/
    margin-top: 290px;
    color: #fff;
    padding-left: 52px;
    z-index: 3;
}

@media (max-height: 990px) {
    #main-screen.active-hover .service-block.active-click {
        /*height: 650px !important;*/
    }

    .product-list.header-screen {
        max-height: 100%;
    }
}

#main-screen .service-block .service-block-prev .service-block-prev-main {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto Condensed';
    margin-bottom: 12px;
}

@media (max-height: 830px) {
    #main-screen .service-block .service-block-prev {
        margin-top: 310px;
    }
}

@media (max-height: 790px) {
    #main-screen .service-block .service-block-prev {
        margin-top: 300px;
    }
}

@media (max-height: 760px) {
    #main-screen .service-block .service-block-prev {
        margin-top: 280px;
    }

    #main-screen .service-block .service-block-in {
        margin-top: 0;
    }
}

@media (max-height: 780px) {
    #main-screen .service-block.active .service-block-name, #main-screen .service-block .service-block-name.active-middle {
        top: 170px;
    }

    #main-screen .service-block .service-block-prev {
        margin-top: 300px;
    }
}

@media (max-height: 680px) {
    #main-screen .service-block.active .service-block-name, #main-screen .service-block .service-block-name.active-middle {
        top: 170px;
    }

    #main-screen .service-block .service-block-prev {
        margin-top: 280px;
    }
}

#main-screen .service-block .service-block-prev .service-block-prev-text {
    width: 450px;
    font-size: 17px;
    line-height: 27px;
}

#main-screen .service-block .service-block-prev .service-block-link {
    position: absolute;
    left: 641px;
    top: 75px;
    padding: 35px 39px;
    border-radius: 46px;
    font-size: 21.5px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#main-screen .service-block .service-block-prev .service-block-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    /*width: 100%;*/
    right: 0;
    border: 3px solid #008bea;
    border-radius: 46px;
}

#main-screen .service-block .service-block-prev .service-block-link.pulse {
    border: 3px;
}

.pulse::before,
.pulse::after {
    content: '';
    position: absolute;
    border: 3px solid #008bea;
    box-shadow: 0 0 25px #008bea;

    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border-radius: 46px;
    animation: pulse 1.2s linear infinite;
    opacity: 0;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


#main-screen .service-block .service-block-prev .service-block-link:hover {
    background: #008bea;
}

#main-screen .service-block .service-block-prev .service-block-link.pulse:hover {
    background: none;
}

#main-screen .service-block .service-block-prev .service-block-link span {
    font-weight: 300;
    font-size: 25px;
    line-height: 10px;
}

#main-screen .service-block .service-block-bottom {
    display: none;
    opacity: 0;
    position: absolute;
    left: 52px;
    bottom: 40px;
    z-index: 3;
    justify-content: flex-start;
    min-width: 1159px;
}

#main-screen .service-block .service-block-bottom .service-block-ico {
    position: relative;
    float: left;
    width: auto;
    /* margin-right: 57px;*/
    color: #fff;

    width: 33%;
    padding-right: 30px;
}

#main-screen .service-block .service-block-bottom .service-block-ico .top-ico {
    position: relative;
    float: left;
    width: 70px;
    height: 70px;
}

#main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-name {
    font-size: 43px;
    text-transform: uppercase;
}

#main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-name sup {
    font-size: 17px;
    line-height: 48px;
    font-weight: 900;
}

#main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-text {
    font-weight: 500;
    font-size: 18px;
}


@media (max-height: 820px) {
    #main-screen .service-block .service-block-prev {
        margin-top: 280px;
    }
}

@media (max-height: 690px) {
    #main-screen .service-block .service-block-prev .service-block-prev-main {
        display: none;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        top: 8px;
    }
}


.product-list {
    background: #00375c;
}

.product-list .product {
    display: flex;
    align-items: center;
}

.product-list.active {
    z-index: 1;
}


@media (max-width: 1460px) {
    #main-screen .service-block.active .service-block-name, #main-screen .service-block .service-block-name.active-middle {
        font-size: 42px;
    }

    #main-screen .service-block .service-block-prev .service-block-prev-text {
        font-size: 16px;
        line-height: 26px;
        width: 399px;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        font-size: 17.5px;
        padding: 33px 35px;
        left: 570px;
    }

    #main-screen .service-block .service-block-bottom {
        min-width: 990px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico {
        margin-right: 37px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-name {
        font-size: 32px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-text {
        font-size: 15px;
    }
}


@media (max-width: 1310px) {
    #main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-name {
        font-size: 24px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-name sup {
        top: -1em;
        line-height: 20px;
        font-size: 12px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .service-block-ico-text {
        font-size: 13px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico {
        margin-right: 20px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .top-ico {
        width: 55px;
        height: 55px;
        background-size: 100% auto !important;
    }

    #main-screen .service-block .service-block-name.service-vertical {
        white-space: nowrap;
    }
}

@media (max-width: 1295px) {
    #main-screen .service-block .service-block-name {
        font-size: 35px;
        line-height: 46px;
    }

    #main-screen .service-block .service-block-bottom {
        min-width: 630px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico {
        width: 33%;
    }
}

@media (max-width: 1160px) {
    #main-screen .service-block .service-block-prev .service-block-link {
        left: 475px;
    }

    #main-screen .service-block .service-block-prev .service-block-prev-text {
        font-size: 14px;
        line-height: 23px;
        width: 380px;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        font-size: 16.5px;
        padding: 33px 29px;
    }
}


@media (max-width: 1105px) {
    #main-screen .service-block .service-block-name {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 1060px) {
    #main-screen .service-block .service-block-prev .service-block-link {
        left: 455px;
    }
}

@media (max-width: 1040px) {
    #main-screen .service-block .service-block-prev .service-block-link {
        left: 435px;
    }
}

@media (max-width: 1040px) {

    .viewport-wrapper {
        overflow: visible;
    }

    #main-screen {
        position: relative;
        /*margin-top: 140px;*/
        margin-top: 100px;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
    }

    #main-screen .service-block {
        position: relative;
        float: left;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        height: auto;
        width: 100%;
        min-height: 120px;
        height: 150px;
        display: block;
    }

    #main-screen .service-block .srv-back {
        /*background-size: 110% auto !important;*/
        background-size: cover !important;
        background-position: center center !important;
    }

    #main-screen .service-block.s-b-2 .border-top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(182, 184, 185, 1) 15%, rgba(182, 184, 185, 0.1) 80%);
        z-index: 1;
    }

    #main-screen .service-block.s-b-2 .border-bottom {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(182, 184, 185, 1) 15%, rgba(182, 184, 185, 0.1) 80%);
        z-index: 1;
    }

    #main-screen .service-block .service-block-name {
        margin-top: -40px;
    }

    #main-screen .service-block:before {
        opacity: 0.8;
    }

    #main-screen .service-block.active-mb .srv-back {
        /*background-size: 100% auto !important;*/
        background-position: center center
    }

    #main-screen.active-hover .service-block:hover {
        width: 100% !important;
        margin-left: 0 !important;
    }

    #main-screen .service-block .service-block-name {
        top: 30px;
        margin-top: 0;
    }

    #main-screen .service-block .service-block-in {
        height: auto !important;
    }

    #main-screen .service-block .service-block-bottom {
        position: relative;
        float: left;
        width: 100%;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }

    #main-screen .service-block.active-mb .service-block-prev {
        margin-top: 140px;
        margin-bottom: 21px;
    }

    #main-screen .service-block.active-mb:before {
        opacity: 0.6;
    }

    #main-screen .service-block .service-block-bottom {
        padding-left: 52px;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico .top-ico {
        position: absolute;
        top: 0;
        left: 0;
    }

    #main-screen .service-block .service-block-bottom .service-block-ico {
        width: 100%;
        margin-bottom: 21px;
        padding-left: 62px;
    }

    .contacts-block ~ .page-control.page-control--gallery {
        position: static;
    }
}

@media (max-width: 1040px) {
    #main-screen .service-block.active-mb .srv-back {
        /*background-size: auto 100% !important;*/
        background-position: center center
    }

    #main-screen .service-block:after,
    .product-list:after {
        position: relative;
        content: '.';
        display: block;
        clear: both;
        visibility: hidden;
        height: 0;
    }
	
	.preview-text {
		max-width: 100%;
	}
}

@media (max-width: 1040px) {
    #main-screen.active-hover .service-block .service-block-name {
        margin-top: -115px;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        position: relative;
        float: left;
        margin-top: 12px;
        top: auto;
        left: auto;
        right: auto;
    }

    #main-screen.active-hover .service-block {
        padding-right: 12px;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        padding: 22px 29px;
    }

    #main-screen .service-block .service-block-bottom {
        min-width: auto;
    }

    #main-screen.active-hover .service-block .service-block-name {
        left: 30px;
    }

    #main-screen .service-block .service-block-prev, #main-screen .service-block .service-block-bottom {
        padding-left: 30px;
    }

    #main-screen .service-block.active-mb .service-block-prev {
        margin-top: 50px;
    }

}

@media (max-width: 560px) {
    #main-screen .service-block .service-block-prev .service-block-prev-text {
        width: 100%;
        line-height: 21px;
    }

    #main-screen .service-block .service-block-prev .service-block-link {
        margin-top: 17px;
    }
}


.preview-block {
    position: relative;
    padding-top: 82px;
    height: 100vh;
    display: flex;
    color: #fff;
}

.preview-block .title-block {
    text-transform: uppercase;
    background-image: linear-gradient(-188deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 140px;
    line-height: 104px;
    position: absolute;
    left: 0;
    top: -45px;
    z-index: 2;
}

.preview-block .title-block.short_title {
    line-height: 0.75;
}

.preview-block > .title-block {
    top: 82px;
    left: -2px;
    z-index: 100;
    word-spacing: 9999999px;
}

.preview-block .slide .border:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

.preview-block .slide .border:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to top, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}


.preview-block .slide {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    min-width: 110px;
    background-color: #1f2a34;
    width: 110px;
    transition: 1.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-block .slide-active {
    width: 100%;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-block .slide .bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    transition: transform 1s cubic-bezier(.645, .045, .355, 1), -webkit-transform 1s cubic-bezier(.645, .045, .355, 1);
}

.preview-block .slide-active .bg {
    width: 115%;
    -webkit-transform: translateZ(0) scale(1.28);
    transform: translateZ(0) scale(1.28);
}


.preview-block .slide:not(.slide-active):before {
    content: '';
    display: block;
    background: url(../i/arrow.png);
    width: 21px;
    height: 29px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 55;
    transition: .3s;
}

.preview-block .slide:not(.slide-active):hover:before {
    height: 39px;
}

.preview-block .slide:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .7;
    transition: .3s;
    z-index: 20;
}

.preview-block .slide:not(.slide-active):hover:after {
    opacity: .15;
}

.preview-block .slide:not(.slide-active) {
    cursor: pointer;
}

.preview-block .slide .inside {
    position: relative;
    z-index: 10;
    transition: .6s;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.preview-block .slide-active .inside {
    transition-delay: 1s;
    opacity: 1;
    max-width: 100%;
    height: auto;
    /*z-index: 40;*/
    z-index: 100;
}

.preview-block .slide-active .inside.a-center {
    height: 100vh;
    flex-direction: row;
}

.preview-block .inside.a-center .inside-container {
    padding-top: 110px;
}


.preview-block .title {
    z-index: 30;
    position: absolute;
    width: 400px;
    left: -146px;
    bottom: 315px;
    transform: rotate(-90deg);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Open Sans Condensed', sans-serif;
}

.preview-block .title .sep {
    margin: 0 3px;
}

.preview-block .slide-active .title {
    display: none;
}

.preview-block .inside-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 50px 0 130px;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.preview-block .inside-container.v2 {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100%;
    flex: 1 0 auto;
}

.preview-block .slide .inside {
    align-items: center;
    /*flex-direction: row;*/
}


.preview-block .inside .title-block {
    font-size: 140px;
    line-height: 104px;
    left: -4px;
    top: 0px;
}

.preview-block .inside .title-block:not(.short_title) {
    font-size: 103px;
    top: -12px;
}

.preview-block .inside-container > .d-flex {
    width: 100%;
}


.preview-block .selection {
    position: absolute;
    z-index: 2;
    top: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 580px;
    text-align: center;
    right: 50px;
    justify-content: center;
}

.preview-block .selection .subhead {
    width: 100%;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
}

.preview-block .selection .bt {
    margin: 15px 5px 0;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    height: 62px;
    border: 2px solid #008bea;
    border-radius: 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
}

.preview-block .selection .bt.disable {
    border: solid 1px #fff;
    cursor: default;
}

.preview-block .selection .bt:not(.disable):hover {
    background: #008bea;
}

.preview-block .content {
    width: calc(100% - 580px);
}

.preview-block .gallery {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 580px;

    /*
    min-height: 100%;
    display: flex;
    align-items: center;*/
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    display: flex;
}

.gallery-slider .item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76vh;
    padding: 70px 0;
}

.gallery-slider.slick-slider .item {
    min-width: auto;
}

.preview-block .gallery img {
    max-height: 100%;
    object-fit: cover;
}


.preview-block H2 {
    font-size: 44px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.preview-block H2 .sep {
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    background: #41b1ff;
    height: 82px;
    margin: 0 16px;
}

.preview-block p {
    margin-top: 30px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.733;
}

.top-buttons {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.top-buttons > * {
    margin: 0 20px 20px 0;
}

.top-buttons .bt-str-blue.disable {
    border-color: transparent;
    cursor: default;
    box-shadow: 0 0 0 1px #fff;
    background: none;
}

.preview-text {
    max-width: 730px;
}

.preview-block .buttons {
    display: flex;
    margin-top: 60px;
}

.preview-block .buttons .bt-str-blue {
    margin-right: 15px;
}

.preview-block .social-wrapper {
    margin-top: 70px;
}

.preview-block .social {
    margin-top: 25px;
    justify-content: flex-start;
}

.preview-block .social a {
    margin: 0 16px 0 0;
}

.preview-block .padding-0 {
    padding: 0;
}

.gallery-list {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    height: 100%;
}

.gallery-list a {
    width: 50%;
    height: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.gallery-list a img {
    max-width: 1000%;
    width: 100%;
    height: 100%;
    transition: 0.2s all ease-in-out;
    object-fit: cover;
}

.gallery-list a:hover {
    z-index: 2;
}

.gallery-list a:hover img {
    transform: scale(1.05);
}

.gallery-list a:after {
    content: '';
    display: block;
    background-color: rgba(40, 50, 60, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.gallery-list a:hover:after {
    opacity: 0;
}

.gallery-list a span {
    display: block;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 35px;
    transition: .3s;
}

.gallery-list a:hover span {
    background: rgba(40, 50, 60, 0.6);
}


.advantage-list .item {
    display: flex;
    align-items: flex-start;
    width: 33.333%;
    margin: 50px 0;
}

.advantage-list .icon {
    width: 91px;
    height: 81px;
    display: flex;
    align-items: center;
    border-right: 1px solid #41b1ff;
}

.advantage-list .text {
    width: calc(100% - 91px);
    padding: 0 28px;
}

.advantage-list .subhead {
    min-height: 81px;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.advantage-list p {
    margin-top: 15px;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
}

.advantage-list .label {
    display: inline-block;
    margin-top: 22px;
    border: solid 1px #fff;
    padding: 3px 5px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 100;
}


.crt-list {
    margin: 0 -2%;
}

.crt-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16%;
    margin: 20px 2%;
}

.crt-list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.requisites-block .col {
    width: 50%;
}

.requisites-block .item {
    position: relative;
    padding: 0 9px;
    margin-top: 35px;
}

.requisites-block .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 1px;
    background: #008bea;
}

.requisites-block .item .subhead {
    font-size: 13px;
}

.requisites-block .item .info {
    height: 54px;
    display: flex;
    align-items: flex-end;
    font-size: 16px;
    font-weight: 700;
}


.preview-block .about-wrapper {
    max-width: 720px;
}

.preview-block .about-wrapper p {
    margin-top: 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}


.service-block {
    position: relative;
    height: 100vh;
}

.service-item {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
    width: 33.333%;
    display: flex;
    align-items: center;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 50px;
    color: #fff;
    transition: 1s;
}

.service-item.item-2 {
    left: 33.333%;
}

.service-item.item-3 {
    left: auto;
    right: 0;
}

.service-item:not(:last-child):before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

.service-item:not(:last-child):after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to top, rgba(182, 184, 185, 0.1) 25%, rgba(182, 184, 185, 1) 40%);
    z-index: 1;
}

.service-item:not(.active):hover {
    cursor: pointer;
}

.service-item .overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: .5;
    transition: .3s;
    z-index: 2;
}

.service-item:not(.active):hover .overlay {
    opacity: .35;
}


.service-item.active {
    width: 100%;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item .bg {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
    transition: transform 1s cubic-bezier(.645, .045, .355, 1), -webkit-transform 1s cubic-bezier(.645, .045, .355, 1);
}

.service-item.active .bg {
    width: 115%;
    -webkit-transform: translateZ(0) scale(1.28);
    transform: translateZ(0) scale(1.28);
}


.service-block.open .service-item.active {
    width: calc(100% - 300px);
    z-index: 80;
    overflow: hidden;
}

.service-block.open .service-item:not(.active) {
    width: 150px;
}

.service-block.open .item-2:not(.active) {
    left: calc(100% - 300px);
}

.service-block.open .item-2.active {
    left: 150px;
}


.service-item .title {
    position: relative;
    z-index: 20;
    font-size: 48px;
    word-wrap: break-word;
    display: block;
    padding-right: 20px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.service-item .title:after {
    content: '';
    display: block;
    margin-top: 2px;
    background: #008bea;
    width: 94px;
    height: 6px;
    transition: .3s;
}

.service-block .service-item:hover .title::after {
    width: 180px;
}


.service-item .wrapper {
    opacity: 0;
}


.page-control a {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 16px;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
}

.page-control a:hover {
    color: #008bea;
}

.page-control a .arrow {
    display: inline-block;
    width: 27px;
    height: 75px;
    transform: rotate(90deg);
}

.page-control a .arrow:before {
    content: '';
    display: block;
    background: url(../i/arrow2.png) 50% 100% no-repeat;
    width: 27px;
    height: 75px;
    transition: .3s;
    position: absolute;
}

.page-control a:hover .arrow:before {
    height: 90px;
}

.page-control .prev .arrow {
    margin-right: 80px;
    order: -1;
}

.page-control .next .arrow {
    transform: rotate(-90deg);
    order: 2;
    margin-left: 80px;
}


.page-control {
    position: absolute;
    /*z-index: 50;*/
    z-index: 100;
    left: 0px;
    top: 50%;
    transform: translateY(-40%);
    display: flex;
    height: 400px;
    width: 60px;
}

.page-control.page-control--gallery {
    left: 0 !important;
    right: 0;
    background: rgba(0, 0, 0, .5);
    padding: 10px 20px;
    transform: translate(0, 0);
    justify-content: center;
}

.page-control .prev {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(90deg);
    width: 260px;
    height: 30px;
}

.page-control .next {
    transform: rotate(90deg);
    position: absolute;
    bottom: 0;
    width: 260px;
    height: 30px;
}

.page-control .prev,
.page-control .next {
    left: -76px;
}


.categorie-block {
    position: relative;
}

.categorie-block .list {
    padding-top: 82px;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    overflow-y: scroll;
}

.categorie-block .list::-webkit-scrollbar {
    width: 5px;
    background: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}

.categorie-block .list::-webkit-scrollbar-thumb {
    width: 5px;
    background: #454545;
    border-radius: 5px;
}

.categorie-block .list::-webkit-scrollbar-track {
    width: 5px;
    background: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}


.categorie-block .mCustomScrollbar {
    display: block;
    padding: 0;
}

.categorie-block .mCSB_container {
    display: flex;
    flex-wrap: wrap;
}


.categorie-item {
    width: 33.333%;
    height: 50%;
    position: relative;
    z-index: 2;
    display: block;
    color: #fff;
    overflow: hidden;
}

.categorie-item img {
    width: 100%;
    height: 100%;
    transition: 0.2s all ease-in-out;
    object-fit: cover;
}

.categorie-item .inside {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.categorie-item:hover {
    z-index: 2;
}

.categorie-item:hover img {
    transform: scale(1.05);
}

.categorie-item .inside:after {
    content: '';
    display: block;
    background-color: rgba(40, 50, 60, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .3s;
}

.categorie-item .inside:hover:after {
    opacity: 0;
}

.categorie-item .caption {
    display: block;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 35px;
    transition: .3s;
}

.categorie-item:hover .caption {
    background: rgba(40, 50, 60, 0.6);
}


.contacts-block {
    position: relative;
    background: url(../i/bg1.jpg) 50% 50% no-repeat;
    min-height: 100vh;
    background-size: cover;
    padding-top: 150px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.contacts-block:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    z-index: -1;
}

.contacts-block .mCSB_scrollTools {
    right: 10px;
}

.contacts-block H2 {

    color: #ffffff;
    font-family: "Roboto Condensed";
    text-transform: uppercase;
    font-size: 120px;
    text-align: center;
}

.contacts-block .bt-center {
    display: flex;
    justify-content: center;
    margin-top: 65px;
}

.contacts-block .bt-str-blue {
    padding: 0 45px;
}

.contact-line {
    max-width: 1232px;
    margin: 60px auto 50px;
    color: #ffffff;
    align-items: flex-start;
}

.contact-line .head {
    width: 225px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
}

.contact-line .list {
    width: calc(100% - 225px);
    display: flex;
    flex-wrap: wrap;
}

.contact-line .item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 8px;
}

.contact-line .item:not(:last-child) {
    margin-right: 70px;
}

.contact-line .item .subhead {
    margin-right: 20px;
    font-size: 13px;
    color: #7ea2b6;
    text-transform: uppercase;
}

.contact-line .item .value {
    font-size: 16px;

    font-weight: 500;
}

.contact-line .item a {
    color: #fff;
}

.contact-line .item .underline {
    text-decoration: underline;
}


.contacts-tab {
    padding-top: auto;
    height: 50vh;
    margin-top: auto;
    display: flex;
}

.contacts-tab .map {
    position: relative;
    z-index: 20;
    width: 50%;
    height: 100%;
    display: flex;
}

/*.contacts-tab .map:before {
	content: '';
	display: block;
	width: 90px;
	height: 100%;
	position: absolute;
	z-index: 20;
	left: 0;
	top: 0;
	background-color: rgba(31, 36, 40, 0.6);
}*/
.contacts-tab .tab-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-tab .tab-content > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts-tab .tab-content img {
    width: 100%;
}

.contacts-tab .list {
    position: relative;
    z-index: 2;
    width: 50%;
    color: #fff;
    height: 100%;
    overflow: auto;
}

.contacts-tab .list::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}

.contacts-tab .list::-webkit-scrollbar-thumb {
    width: 5px;
    background: #454545;
    border-radius: 5px;
}

.contacts-tab .list::-webkit-scrollbar-track {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}

.contacts-tab .list .item {
    position: relative;
    z-index: 2;
    padding: 25px 30px 30px 80px;
    background-color: #00345d;
    font-family: 'Roboto', sans-serif;
}

.contacts-tab .list .item:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #19486d;
    transition: .3s;
    z-index: -1;
    opacity: 0;
}

.contacts-tab .list .item:hover:before,
.contacts-tab .list .item.active:before {
    opacity: 1;
}

.contacts-tab .list .item a {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.contacts-tab .list .metro {
    margin-top: 22px;
    background: url(../i/metro.png) 0 50% no-repeat;
    padding: 2px 0 2px 28px;
    color: #7ea2b6;
    font-size: 13px;
}

.contacts-tab .list .work-time {
    margin-top: 22px;
    background: url(../i/clock.png) 0 50% no-repeat;
    padding: 2px 0 2px 28px;
    color: #7ea2b6;
    font-size: 13px;
}


.group-block {
    position: relative;
}

.group-block .bg {
    position: relative;
    background: url(../i/bg2.jpg) 50% 50% no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
    color: #fff;
}

.group-block .bg:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../i/bg5.jpg) no-repeat;
    background-size: cover;
    z-index: -1;
}

.group-block .bg .container {
    min-height: 100vh;
    padding-bottom: 180px;
}

.group-block .content {
    width: 50%;
    padding: 260px 160px 0 120px;
}

.group-block .content .wrapper {
    max-width: 620px;
}

.group-block .form {
    width: 50%;
    padding: 200px 190px 0 190px;
}


.group-block .content H2 {
    font-size: 36px;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
}

.group-block .content p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 30px;
}

.group-block .form form {
    max-width: 490px;
}

.form-item:not(:first-child) {
    margin-top: 32px;
}

.form-item input, .form-item textarea {
    width: 100%;
    font-size: 18px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid #bfbfbf;
    background: transparent;
    text-transform: uppercase;
    height: 46px;
}

.form-item textarea {
    height: 90px;
    resize: none;
}

.form-item ::-moz-placeholder {
    color: #fff;
}

.form-item ::-webkit-input-placeholder {
    color: #fff;
}

.form-item ::-ms-placeholder {
    color: #fff;
}

.form-item ::placeholder {
    color: #fff;
}


.file-item {
    position: relative;
    margin-top: 40px;
    background: url(../i/clip.png) no-repeat;
    height: 31px;
    display: inline-flex;
    padding-left: 40px;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
}

.file-item input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.group-block .form .bt-str-blue {
    background: transparent;
    margin-top: 45px;
    transition: .3s;
}

.group-block .form .bt-str-blue:hover {
    background: #008bea;
}


.footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    z-index: 50;
    color: #fff;
}

.footer .col-left {
    width: 355px;
}

.footer-logo {
    display: inline-block;
    margin-right: 68px;
    width: 122px;
}

.footer-copy {
    line-height: 30px;
}

.footer-social {
    text-align: center;
    margin: 0 110px;
}

.social {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: solid 2px #388de7;
    width: 37px;
    height: 37px;
    margin: 18px 10px 0;
}

.social a svg {
    fill: #388de7;
    width: 50%;
    height: 50%;
    transition: .3s;
}

.social a:hover {
    border-color: #fff;
}

.social a:hover svg {
    fill: #fff;
}

.footer-phone {
    width: 355px;
}

.footer-phone .tel {
    display: inline-block;
    margin-top: 26px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}


block:before {
    content: '';
    display: block;
    background: url(../i/);
    width: px;
    height: px;
    background-size: 100% 100%;
}


.checkbox-item {
    position: relative;
}

.checkbox-item label {
    position: relative;
    display: inline-block;
    padding-left: 24px;
}

.checkbox-item input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    width: 22px;
    height: 22px;

}

.checkbox-custom:before {
    content: '';
    display: block;
    transition: .3s;
    opacity: 0;
    box-sizing: border-box;
    width: 6px;
    height: 12px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
}

input:checked + .checkbox-custom:before {
    opacity: 1;
}


.agree {
    position: relative;
    margin-top: 38px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

.agree label {
    position: relative;
    display: inline-block;
    padding-left: 40px;
}

.agree input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}


.slick-slider {
    display: block;
    height: auto;
}

.slick-track {
    display: flex;
}

.slick-arrow {
    font-size: 0;
    color: transparent;
    background: transparent;
    text-indent: -9999px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 68px;
    overflow: hidden;
}

.slick-arrow:after {
    content: '';
    display: block;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    top: 10px;
    left: 18px;
    width: 46px;
    height: 46px;
}

.slick-prev {
    left: -100px;
}

.slick-next {
    right: -100px;
}

.slick-next:after {
    transform: rotate(-45deg);
    left: -18px;
}

.slick-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    bottom: 45px;
    display: flex;
    justify-content: center;
}

.slick-dots li * {
    display: none;
}

.slick-dots li {
    cursor: pointer;
    width: 17px;
    height: 17px;
    margin: 0 5px;
    border: 3px solid #41b1ff;
    border-radius: 50%;
    transition: all .3s;
}

.slick-dots li:hover,
.slick-dots li.slick-active {
    background: #fff;
    border-color: #fff;
}


.modal-gallery {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    max-height: 80vh;
    color: #fff;
}

.modal-gallery.modal-gallery--full {
    max-width: 100%;
    display: inline-block;
    width: auto;
    text-align: left;
}

.modal-gallery.modal-gallery--full .modal-gallery-image img {
    max-height: 100%;
}

.mfp-auto-cursor .mfp-content.center {
    text-align: center;
}

.modal-gallery__slider .slick-list {
    overflow: hidden;
    max-height: 80vh;
}

.modal-gallery__slider.slick-slider {
    overflow: visible;
}

.modal-gallery__slider .slick-list {
    overflow: hidden;
}

.modal-gallery__slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery__slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.modal-gallery .title {
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.modal-gallery p {
    margin-top: 25px;
    font-size: 14px;
}


.modal-comparison.active .modal-close,
.modal-parameter.active .modal-close {
    opacity: 1;
    visibility: visible;
}

.modal-parameter {
    position: relative;
    z-index: 120;
    width: 0;
    background-color: #bec5ca;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    height: 100vh;
}

.modal-parameter .modal-wrapper {
    min-height: 100vh;
    max-width: 1900px;
    /*padding-bottom: 245px;*/
}


.modal-parameter__slider {
    padding: 0 80px;
    /*width: 42%;*/
    width: 46%;
    position: relative;
    overflow: hidden;
}

.modal-parameter__slider .list {
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.modal-parameter__content {
    padding: 188px 55px 0 146px;
    /*width: 58%;*/
    width: 54%;
}

.modal-parameter .title {
    padding: 13px 0 15px 22px;
    border-left: 1px solid #fff;
    text-transform: uppercase;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
}


.parameter-list {
    margin-top: 55px;
    padding-right: 30px;
    height: 420px;
    overflow: auto;
    color: #414141;
}

.parameter-list::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}

.parameter-list::-webkit-scrollbar-thumb {
    width: 5px;
    background: #454545;
    border-radius: 5px;
}

.parameter-list::-webkit-scrollbar-track {
    width: 5px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #454545;
    border-radius: 5px;
}


.parameter-list .col {
    width: 50%;
    max-width: 360px;
}

.parameter-list .item {
    position: relative;
    padding: 0 9px;
}

.parameter-list .item:not(:first-child) {
    margin-top: 35px;
}

.parameter-list .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 1px;
    background: #008bea;
}

.parameter-list .item .val {
    font-size: 13px;
}

.parameter-list .item .lev {
    margin-top: 35px;
    font-size: 16px;
    font-weight: 700;
}


.modal-parameter .d-flex {
    flex: 1 0 auto;
}

.modal-parameter .df_modal-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 50px);
}

.modal-parameter .lg-title {
    /*position: absolute;
    left: 0;
    bottom: -28px;*/
    order: 2;
    flex: 0 0 auto;
    text-transform: uppercase;
    font-size: 200px;
    line-height: 100%;
    color: #fff;
    font-weight: 900;
    line-height: 0.75;
    margin-top: 15px;
}

.modal-parameter button.mfp-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    background: url(../i/triangle2.png);
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    padding-top: 58px;
    cursor: pointer;
    transition: .3s;
    overflow: hidden;
    font-size: 0;
    color: transparent;
    opacity: 1;
}

.modal-parameter button.mfp-close:before {
    content: '';
    display: block;
    background: url(../i/close.png);
    width: 24px;
    height: 24px;
}

.modal-parameter button.mfp-close:hover {
    top: -32px;
    opacity: 1;
}


.modal-comparison {
    position: relative;
    z-index: 120;
    width: 0;
    overflow: hidden;
    background-color: #bec5ca;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    height: 100vh;
    height: 100% !important;
}

.modal-comparison.active {
    height: 100% !important;
}

.modal-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    opacity: 0;
}

.modal-close {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    background: url(../i/triangle2.png);
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    padding-top: 58px;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.modal-close:before {
    content: '';
    display: block;
    background: url(../i/close.png);
    width: 24px;
    height: 24px;
}

.modal-close:hover {
    top: -32px;
}


.modal-comparison .modal-wrapper {
    padding: 100px 130px 245px;
    height: 100vh;
}

.modal-comparison .logo {
    position: absolute;
    left: 130px;
    top: 10px;
    width: 173px;
}

.modal-comparison .logo img {
    width: 100%;
}

.modal-comparison .lg-title {
    /*font-size: 140px;*/
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
    opacity: .5;
    text-align: center;
}

/*.modal-comparison .wrapper {
	margin-top: 40px;
}*/
.modal-comparison .title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /*height: 202px;*/
    height: 170px;
    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.modal-comparison .title span {
    padding: 20px 24px 20px 0;
    border-right: 1px solid #fff;
}

.modal-comparison .side {
    width: 290px;
}

.modal-comparison .content {
    width: calc(100% - 290px);
    overflow: hidden;
}

.modal-comparison .list {
    display: flex;
    overflow: auto;

}

.modal-comparison .list .mCSB_container {
    display: flex;
    padding-bottom: 90px;
    padding-bottom: 40px;
}

.modal-comparison .mCSB_scrollTools .mCSB_draggerContainer {
    width: 100%;
    border: 1px solid #454545;
    border-radius: 6px;
}

.modal-comparison .mCSB_scrollTools.mCSB_scrollTools_horizontal {
    height: 5px;
}

.modal-comparison .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 5px;
    margin: 0;
    background: #454545;
    border-radius: 6px;
}


/*.modal-comparison .list::-webkit-scrollbar {
  height: 5px;
  background-color: transparent;
  margin: 0;
  border: 1px solid #454545;
  border-radius: 5px;
}
.modal-comparison .list::-webkit-scrollbar-thumb {
  height: 5px;
  background: #454545;
  border-radius: 5px;
}
.modal-comparison .list::-webkit-scrollbar-track {
  height: 5px;
  background-color: transparent;
  margin: 0;
  border: 1px solid #454545;
  border-radius: 5px;
}*/


.modal-comparison .sort-item {
    padding-right: 20px;
    margin-bottom: 16px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-right: 1px solid #008cee;
    font-size: 13px;
    color: #414141;
    text-align: right;
}

.modal-comparison .sort-item a {
    color: #414141;
}


.modal-comparison button.mfp-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    background: url(../i/triangle2.png);
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    padding-top: 58px;
    cursor: pointer;
    transition: .3s;
    overflow: hidden;
    font-size: 0;
    color: transparent;
    opacity: 1;
}

.modal-comparison button.mfp-close:before {
    content: '';
    display: block;
    background: url(../i/close.png);
    width: 24px;
    height: 24px;
}

.modal-comparison button.mfp-close:hover {
    top: -32px;
    opacity: 1;
}


.prod-item {
    min-width: 200px;
    width: 200px;
    text-align: center;
    padding: 0 10px;
    color: #414141;
    order: 2;
}

.prod-item .img {
    display: flex;
    align-items: center;
    justify-content: center;
    /*height: 202px;*/
    height: 170px;
}

.prod-item .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.prod-item .bt {
    margin: 5px 0 16px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    min-width: 105px;
    height: 29px;
    border: 2px solid #008bea;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 20px;
    color: #414141;
}

.prod-item .bt:hover {
    background: #008bea;
    color: #fff;
}

.prod-item .bt img {
    height: 14px;
    object-fit: cover;
}

.prod-item .parameter {
    font-size: 18px;
    font-weight: 700;
}

.prod-item .parameter .cell {
    margin-bottom: 16px;
    display: flex;
    height: 34px;
    justify-content: center;
    align-items: center;
}

.prod-item .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.prod-item .stars i {
    position: relative;
    background: url(../i/star1.png);
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

.prod-item .stars .active {
    background: url(../i/star2.png);
}

.prod-item.current {
    color: #fff;
    order: 1;
}

.prod-item.current.non_order {
    order: 2;
}

.prod-item.current .bt {
    border-color: #fff;
    border-width: 1px;
    color: #fff;
}

.prod-item.current .bt:hover {
    background: transparent;
    color: #fff;
}


.window-fade {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #000;
    opacity: 0.5;
    display: none;
    z-index: 300;
}

.window-fb {
    display: none;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    /*margin-left: -380px;
    margin-top: -240px;
    width: 760px;*/
    width: 92vw;
    max-width: 760px;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 301;
}

.window-fb .window-fb-back {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #03385b;
    opacity: 0.9;
    width: 100%;
}

.window-fb .window-fb-in {
    height: 480px;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.window-fb .window-fb-in .x {
    position: absolute;
    top: 41px;
    right: 41px;
    width: 20px;
    height: 20px;
    background: url(../svg/close_white.svg) center center no-repeat;
    background-size: 100% auto;
    cursor: pointer;
    z-index: 5;
}

.window-fb .window-fb-in .window-fb-form {
    max-width: 484px;
}

.window-fb .window-fb-in .window-fb-title {
    font-family: 'Roboto Condensed';
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    margin-top: 53px;
    font-size: 39px;
    margin-bottom: 35px;
}

.window-fb .window-fb-in .window-fb-line {
    margin-bottom: 35px;
}

.window-fb .window-fb-in .window-fb-line.window-fb-prnt {
    display: flex;
    justify-content: center;
    margin-top: 21px;
}

.window-fb .window-fb-in .window-input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #bebebe;
    background: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Roboto Condensed';
    font-size: 18px;
    color: #fff;
    padding: 9px 0;
}


.window-fb .window-fb-in .window-input.warning {
    border-color: red;
}

.window-fb .window-fb-in .window-input::-webkit-input-placeholder {
    color: #fff;
}

.window-fb .window-fb-in .window-input::-moz-placeholder {
    color: #fff;
}

.window-fb .window-fb-in .window-input:-moz-placeholder {
    color: #fff;
}

.window-fb .window-fb-in .window-input:-ms-input-placeholder {
    color: #fff;
}

.window-fb .window-fb-in .window-submit {
    border: 3px solid #008bea;
    color: #fff;
    padding: 11px 40px 12px 44px;
    font-size: 14px;
    background: none;
    text-transform: uppercase;
    border-radius: 19px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}


.window-fb .window-fb-in .window-submit:hover {
    background: #008bea;
}

.feedback-sended {
    display: none;
    opacity: 0;
    z-index: 1002;
    position: fixed;
    top: 50%;
    margin-top: -159px;
    left: 50%;
    margin-left: -260px;
    width: 100%;
    height: 305px;
    max-width: 520px;
    background: #fff;
}

.feedback-sended .x {
    z-index: 151;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.feedback-sended .feedback-sended-text {
    text-align: center;
    font-weight: bold;
    font-size: 38px;
    padding-top: 64px;
    line-height: 39px;
    padding-bottom: 29px;
    color: #3c3c3c;
}

.feedback-sended .feedback-sended-text:after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -54px;
    width: 108px;
    height: 1px;
    background: #d5d5d5;
}

.feedback-sended .feedback-sended-after {
    text-align: center;
    color: #5a4017;
    font-size: 15px;
    line-height: 22px;
    padding-top: 22px;
}

.feedback-sended .x {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/img/close.svg) center center no-repeat;
    background-size: 100%;
    cursor: pointer;
    z-index: 3;
}

/*page-control New position*/

.page-control {
    position: absolute;
    /* z-index: 50; */
    z-index: 100;
    left: 40% !important;
    top: auto;
    bottom: 7%;
    transform: translate(-50%, -50%);
    display: flex;
    height: auto !important;
    width: auto;
}

.page-control--mobile {
    display: none;
}

.page-control .prev {
    position: static;
    left: 0;
    top: 0;
    transform: rotate(0);
    width: auto;
    height: auto;
    margin-right: 40px;
}

.page-control .next {
    transform: rotate(0);
    position: static;
    bottom: 0;
    width: auto;
    height: auto;
}

.page-control a {
    border: 2px solid #008bea;
    border-radius: 20px;
    padding: 13px 15px;
    transition: background-color .3s, color .3s, ease .3s;
}

.page-control a .arrow {
    height: 14px;
    transform: rotate(0);
}

.page-control .next .arrow {
    transform: rotate(180deg);
    margin-left: 10px !important;
}

.page-control .prev .arrow {
    margin-right: 10px !important;
}

.page-control a .arrow:before {
    height: 14px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30.22 16.35' style='enable-background:new 0 0 30.22 16.35;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23008BEA;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='0,15.11 1.24,16.35 15.11,2.48 28.98,16.35 30.22,15.11 15.11,0 15.11,0 15.11,0 '/%3E%3C/svg%3E%0A");
    transition: background .3s;
    background-repeat: no-repeat;
    background-position: 0 0;
}

.page-control a:hover {
    color: #fff;
    background-color: #008bea;
}

.page-control a:hover .arrow:before {
    height: 14px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30.22 16.35' style='enable-background:new 0 0 30.22 16.35;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23fff;%7D%0A%3C/style%3E%3Cpolygon class='st0' points='0,15.11 1.24,16.35 15.11,2.48 28.98,16.35 30.22,15.11 15.11,0 15.11,0 15.11,0 '/%3E%3C/svg%3E%0A");
}

.mobile-box-for-preview-text {
    display: none;
}

@media (max-width: 1600px) {
    .page-control {
        bottom: 0;
    }
}

@media (max-width: 1300px) and (min-width: 1024px) {
    .top-buttons > * {
        margin: 0 10px 20px 0;
    }

    .top-buttons > .bt-str-blue {
        height: 34px;
        font-size: 9px;
        padding: 0 8px;
    }
}

@media (max-width: 1023px) {
    .mobile-box-for-preview-text {
        display: block;
        margin-bottom: 30px;
    }

    .preview-block .content .buttons,
    .preview-block .content .preview-text p {
        display: none;
    }

    .preview-text {
        margin: 0 auto;
    }
}

/*page-control New position END*/
@media (max-width: 600px) {
    .feedback-sended {
        left: 5%;
        margin-left: 0;
        width: 90%;
    }

    .feedback-sended .feedback-sended-text {
        font-size: 32px;
        padding-top: 54px;
        line-height: 35px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .window-fb .window-fb-in .window-fb-form {
        padding-left: 35px;
        padding-right: 35px;
    }
}

.scale-screen-in {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.scale-screen.scale-screen-win > .scale-screen-in {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transform: scale(0.85);
}

@media (max-width: 374px) {
    .window-fb .window-fb-in .window-fb-title {
        font-size: 34px;
    }

    .window-fb .window-fb-in .x {
        top: 25px;
    }
}

@media (min-width: 1200px) {
    .modal-gallery.modal-gallery--full .mfp-close {
        width: 80px;
        height: 80px;
        margin-right: -80px;
        color: #fff;
        font-size: 0;
        opacity: 1;
    }

    .modal-gallery.modal-gallery--full .mfp-close:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 2px;
        margin: -1px 0 0 -50px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .modal-gallery.modal-gallery--full .mfp-close:after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100px;
        height: 2px;
        margin: -1px 0 0 -50px;
        background: #fff;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}


@media (max-width: 1040px) {
	
	.preview-text {
		max-width: 100%;
	}
}
