/*==============================RESET==============================*/
*,
:before,
:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clr:after {
    content: '';
    display: block;
    clear: both;
}

html, body, div,
dl, dt, dd, ol, ul, li,
h1, h2, h3, h4, h5, h6, p, hr,
img, a, em, span, strong,
form, label, input, button, select,
table, thead, tbody, tfoot, tr, th, td, textarea {
    border: 0;
    outline: none;
    background: none;
    vertical-align: baseline;
    font: inherit;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

input,
select,
textarea,
button {
    color: rgba(51, 51, 51, 0.3);
    outline: none;
}

a:hover,
a:focus,
a.active {
    text-decoration: none;
    outline: none;
}

a[href^=tel] {
    color: inherit;
}

button {
    cursor: pointer;
}

input::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

input::-moz-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

input:-moz-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

input:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

input:focus::-webkit-input-placeholder {
    color: transparent !important;
}

input:focus::-moz-placeholder {
    color: transparent !important;
}

input:focus:-moz-placeholder {
    color: transparent !important;
}

input:focus:-ms-input-placeholder {
    color: transparent !important;
}

textarea::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

textarea::-moz-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

textarea:-moz-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

textarea:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.3);
}

textarea:focus::-webkit-input-placeholder {
    color: transparent !important;
}

textarea:focus::-moz-placeholder {
    color: transparent !important;
}

textarea:focus:-moz-placeholder {
    color: transparent !important;
}

textarea:focus:-ms-input-placeholder {
    color: transparent !important;
}

/*==============================PLUGINS==============================*/
/*-----------------slick-slider---------------------*/
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-loading .slick-list {
    background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

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

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -28px;
    width: 16px;
    height: 56px;
    font-size: 0;
    background: transparent;
    z-index: 20;
}

.slick-arrow.slick-disabled {
    opacity: 0.3;
}

.slick-prev {
    left: 0;
    background-image: url(../images/icon-arrow-prev.png);
}

.slick-next {
    right: 0;
    background-image: url(../images/icon-arrow-next.png);
}

.slick-dots {
    bottom: 20px;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 0;
    z-index: 20;
}

.slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.slick-dots li.slick-active button {
    background-color: transparent;
    border: 1px solid #fff;
}

.slick-dots li.slick-active button:after {
    display: none;
}

.slick-dots li button {
    position: relative;
    width: 10px;
    height: 10px;
    border: 1px solid transparent;
    border-radius: 100%;
}

.slick-dots li button:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2px;
    margin-left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    z-index: 10;
}

/*---------------------fancybox------------------------*/
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
    -o-transition: opacity .25s ease, visibility 0s ease .25s;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

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

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

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

/* Loading indicator */
.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Transition effects */
.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

/*!
 * fullPage 3.0.5
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box;
    /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    overflow: hidden;
    position: relative;
}

.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    border: 0 !important;
}

.fp-notransition {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
}

#fp-nav.fp-right {
    right: 17px;
}

#fp-nav.fp-left {
    left: 17px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}

.fp-slidesNav.fp-bottom {
    bottom: 17px;
}

.fp-slidesNav.fp-top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

/*Only display content to screen readers*/
.fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*==============================GENERAL==============================*/

html, body {
    position: relative;
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Muller';
    line-height: 1;
    background: #f5f5f5;
}

body.index-page {
    background: #fff;
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

.center-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1220px;
}

.center-wrapper_big {
    max-width: 1600px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
    line-height: 36px;
    color: #333333;
}

h2 {
    position: relative;
    margin-bottom: 50px;
    font-size: 38px;
    line-height: 46px;
    color: #333;
}

h2:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 76px;
    height: 2px;
    background-color: #e40046;
}

p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

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

ul, ol {
    list-style: none;
}

strong {
    font-weight: 500;
}

.custom-object-fit {
    background-size: cover;
    background-position: 50% 50%;
}

.custom-object-fit img {
    opacity: 0;
}

.img-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*==============================FORM ELEMENTS==============================*/
.btn-red {
    display: inline-block;
    width: 220px;
    line-height: 44px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    font-size: 15px;
    background-color: #e40046;
    color: #fff;
    -webkit-box-shadow: 0 0 3.8px 0.2px rgba(0, 0, 0, 0.01);
    box-shadow: 0 0 3.8px 0.2px rgba(0, 0, 0, 0.01);
}

.btn-red:hover {
    background: #001f6b;
}

.btn-white {
    display: inline-block;
    width: 233px;
    line-height: 40px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
    background-color: white;
    color: #e40046;
}

.btn-white:hover {
    background: #e40046;
    color: #fff;
}

.btn-load {
    display: block;
    padding: 14px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #e40046;
    cursor: pointer;
    border: 1px solid #e40046;
}

.btn-load i {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 3px;
    margin-right: 5px;
    width: 13px;
    height: 16px;
    background-image: url(../images/icon-load.svg);
    background-size: 13px 16px;
}

.field {
    padding: 0 20px;
    width: 100%;
    height: 50px;
    color: #333;
    background-color: white;
    border: 1px solid #dadada;
}

.area {
    padding: 20px;
    width: 100%;
    height: 165px;
    color: #333;
    background-color: white;
    border: 1px solid #dadada;
}

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

.checkbox label {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    padding-left: 25px;
    color: #333333;
    cursor: pointer;
}

.checkbox label:before {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #cfcfcf;
    z-index: 1;
}

.checkbox input[type="checkbox"]:checked + label:before {
    background: #e40046;
    border-color: #e40046;
    background-image: url(../images/icon-checkbox.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 9px 9px;
}

.select {
    position: relative;
    cursor: pointer;
}

.select-title {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: #fff;
    border: 1px solid #dadada;
    -webkit-box-shadow: 0 0 3.8px 0.2px rgba(0, 0, 0, 0.01);
    box-shadow: 0 0 3.8px 0.2px rgba(0, 0, 0, 0.01);
    z-index: 1;
}

.select-title__arrow {
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 17px;
    width: 8px;
    height: 5px;
    background-image: url(../images/icon-arrow-select.png);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.select-title__value {
    display: block;
    padding: 0 40px 0 20px;
    font-size: 14px;
    color: #333;
    line-height: 42px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}

.select-options {
    display: none;
    position: absolute;
    top: 38px;
    min-width: 100%;
    border: 1px solid #dadada;
    border-top: 0;
    -webkit-box-shadow: 0 2px 3.8px 0.2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 3.8px 0.2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: auto;
    z-index: 10;
}

.select-options__value {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.select-options__value:hover {
    background-color: #e40046;
    color: #fff;
}

.select-options__value:active {
    color: red;
}

.select.active .select-title__arrow {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fP_lines {
    padding: 10px 0 7px 30px;
    /*	padding: 10px 0 10px 30px; */
    background: url(/local/templates/asahi/images/popup_ics.png) 0 11px no-repeat
}

.fp_lines__time {
    background-position: 0 -58px
}

.fp_lines__addr {
    background-position: 0 -126px;
    font-weight: bold
}

.fp_lines__addr span {
    padding: 0 15px 0 5px;
    font-weight: 400
}

.fp_lines__Street {
    background-position: 0 -192px
}

.fp_lines__website {
    background: url(/local/templates/asahi/images/icon-website.svg) 0 0 no-repeat;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 15px;
    margin-bottom: 10px;
}

.fp_lines__get_cost_btn {
    display: none;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: right;
    margin-right: -35px;
    cursor: pointer;
}

#filia_form .fp_lines__get_cost_btn {
    margin-top: 45px;
    margin-right: 0;
    float: right;
}

.fp_lines__website a {
    border-bottom: 1px dashed transparent;
    color: #656565;
}

.fp_lines__website a:hover {
    border-bottom: 1px dashed #656565;
}

/*==============================MODALS==============================*/
.city__toggle {
    position: absolute;
    right: 0;
    top: -34px;
    display: inline-block;
    width: 28px;
    cursor: pointer;
    height: 40px;
}

.city__toggle img {
    max-width: 100%;
}

.city {
    right: 0;
    position: absolute;
}

.city-modal {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    padding: 18px 0 0 25px;
    background: #fff;
    z-index: 150;
}

.city-modal.city-start {
    padding: 18px 25px;
}

.city-modal .popup_window_Close {
    width: 15px;
    height: 15px;
    top: 15px;
    right: 15px;
    background-size: 100%;
}

.city-modal .popup_window_Close span {
    width: 15px;
    height: 15px;
    top: 15px;
    right: 15px;
    background-size: 100%;
}


.header-body {
    padding-right: 50px;
}

.city-modal:after {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    right: 7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #fff transparent;
}

.city-start__title {
    margin-bottom: 15px;
    font-size: 17px;
    white-space: nowrap;
}

.city-start-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -4px;
}

.city-start__btn {
    margin: 0 4px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    line-height: 33px;
    text-align: center;
    font-size: 15px;
    background: #e4e4e4;
    color: #333;
}

.city-start__btn.active {
    background: #e40046;
    color: #fff;
}

.city-choose__title {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

#choose_city_filter {
    border: 1px solid #dadada;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 3px 10px;
    width: 90%;
}

.city-choose {
    width: 250px;
    padding-bottom: 0;
}

.city-choose-list {
    max-height: 60vh;
    overflow: auto;
    padding: 5px 0 25px;
    /*
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
*/
}

.city-choose-item {
    /*
  -webkit-box-flex: 1;
  -ms-flex: 1 1 33.333%;
  flex: 1 1 33.333%;
  max-width: 33.333%;
*/
    margin-bottom: 15px;
    padding-right: 20px;
}

/*==============================INDEX==============================*/
/*---------------------header------------------------*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 20px;
    width: 100%;
    z-index: 100;
}

.header-body {
	height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .city {
	top: 40px;
}
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;

}

.header-logo__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 148px;
    flex: 0 0 148px;
}

.header-logo__image img {
    max-width: 100%;
    height: auto;
}

.header-logo__title {
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding-left: 15px;
    font-size: 14px;
    color: #fff;
}

.header-menu__open {
    display: none;
    width: 20px;
    height: 18px;
    background-image: url(../images/icon-menu.svg);
    background-size: 20px 18px;
    cursor: pointer;
}

.header-menu__close {
    display: none;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 18px;
    height: 18px;
    background-image: url(../images/icon-menu-close.svg);
    background-size: 18px 18px;
    cursor: pointer;
}

.header-menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.header-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header-menu-list li {
    position: relative;
    padding: 15px 20px 13px;
}

.header-menu-list li:hover {
    background: #e40046;
}

.header-menu-list li a {
    position: relative;
    color: #fff;
}

/*
.header-menu-list li:hover>a:after {
  width: 100%;
}

.header-menu-list li a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: white;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
*/

.header-menu-list ul.inner {
    display: none;
    position: absolute;
    left: 0;
    top: 44px;
    background: #f5f5f5;
}

.header-menu-list li:hover ul.inner {
    display: block;
}

.header-menu-list li:hover ul.inner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 70px;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #e40046 transparent transparent transparent;
}

.header-menu-list ul.inner li {
    width: 400px;
    padding: 10px 0 10px 20px;
}

.header-menu-list ul.inner li:first-child {
    padding-top: 18px;
}

.header-menu-list ul.inner li:last-child {
    padding-bottom: 14px;
}

.header-menu-list ul.inner li a {
    font-size: 16px;
    color: #333;
}

.header-menu-list ul.inner li:hover a {
    color: #fff;
}


.header-menu__logo {
    display: none;
    text-align: center;
    padding-left: 0;
	width: 100%;
}
.header-menu__logo img {
	display: block;
    width: 110px;
    margin: 0 0 0 auto;
}

.index-page .header-menu-list li a {
    font-size: 18px;
}

.totop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: block;
    display: none;
    width: 50px;
    height: 50px;
    background: url(../images/top.png);
    z-index: 10;
    background-size: 100%;
}


/*---------------------promo------------------------*/
.promo-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -20px;
    z-index: 200;
    transition: bottom 0.5s linear;
}

.promo {
    position: relative;
    padding: 220px 0 50px 0;
    background: #000;
    min-height: 100vh;
}

.promo .center-wrapper {
    position: relative;
    z-index: 10;
}

.promo-glass {
    transition: all 1s ease;
    display: none;
}

.promo-glass.active {
    display: block;
}

.promo-glass-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.promo-glass-bg__item {
    transition: all 1s ease;
    /*  display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
}

.promo-glass-bg__item.active {
    opacity: 1;
    visibility: visible;
    /*  display: block; */
}

.promo-top {
    position: relative;
    min-height: 300px;
    padding-bottom: 20px;
    z-index: 10;
}

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

.promo-top-column_2 .promo-logo {
    padding-left: 35px;
}

.promo-top-column_2 .promo-description {
    padding-left: 35px;
}

.promo-description_1 {
    max-width: 410px;
}

.promo-description_1 span {
    display: inline !important;
}

.promo-logo {
    height: 100px;
}

.promo-logo-mobile-click {
    display: none;
    position: absolute;
    left: 0;
}

.promo-logo-mobile-click .promo-switch-mouse {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.promo-top-column_2 .promo-logo-mobile-click {
    left: auto;
    right: 0;
}

.promo-logo__type {
    margin-bottom: 10px;
    color: white;
    font-size: 13px;
    line-height: 18px;
    text-transform: uppercase;
}

.promo-logo__title {
    font-size: 23px;
    line-height: 18px;
    color: white;
}

.promo-logo__title span {
    padding-right: 10px;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
}

.promo-tech {
    position: relative;
    display: inline-block;
    padding-right: 35px;
    line-height: 57px;
    height: 57px;
    letter-spacing: 0.05em;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background: rgba(228, 0, 70, 0.6);
}

.promo-tech i {
    display: none;
    position: absolute;
    left: 40px;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: rgba(228, 0, 70, 0.6) transparent transparent transparent;
}

.promo-tech:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    width: 10000px;
    background: rgba(228, 0, 70, 0.6);
}

.promo-tech:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 57px 0 0 20px;
    border-color: transparent transparent transparent rgba(228, 0, 70, 0.6);
}

.promo-description {
    padding-top: 20px;
    font-size: 15px;
    line-height: 20px;
    color: white;
    opacity: 0;
}

.promo-description.visible {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.promo-description span {
    display: block;
}

.promo-top-column.active .promo-tech i {
    display: inline-block;
}

.promo-top-column.active .promo-description {
    opacity: 1 !important;
}

.promo-tech_2 {
    padding: 0 0 0 35px;
    background: rgba(0, 31, 107, 0.6);
}

.promo-tech_2:before {
    left: 100%;
    right: auto;
    background: rgba(0, 31, 107, 0.6);
}

.promo-tech_2:after {
    right: auto;
    left: -20px;
    border-color: rgba(0, 31, 107, 0.6) transparent transparent transparent;
}

.promo-tech_2 i {
    left: auto;
    right: 40px;
    border-color: rgba(0, 31, 107, 0.6) transparent transparent transparent;
}

.promo-feature-big {
    margin-bottom: 28px;
}

.promo-feature-big-item {
    display: none;
}

.promo-feature-big-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.promo-feature-big-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 35px;
    height: 92px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 3.8px rgba(0, 0, 0, 0.1);
}

.promo-feature-big-item__title span:first-child {
    margin-right: 30px;
}

.promo-feature-big-item__btn {
    margin-left: 35px;
    width: 168px;
    height: 46px;
    background-color: white;
    text-align: center;
    line-height: 46px;
    color: #e40046;
    font-size: 16px;
    font-weight: 500;
}

.promo-feature-big-item__btn:hover {
    background: #e40046;
    color: #fff;
}

.promo-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 35px;
}

.promo-feature-item {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    max-width: 160px;
    text-align: center;
    min-height: 90px;
    padding: 20px 10px 7px;
    background: #001f6b;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 1s ease-out 0s;
}

.promo-feature-item:last-child {
    border-right: 0;
}

.promo-feature-item.active {
    background: #e40046;
    transition: none;
}

.promo-feature-item.active:before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: 50%;
    margin-left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #e40046 transparent;
}

.promo-feature-item-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    background: #c30146;
    padding: 7px 7px 7px 0;
}

.promo-feature-item-mobile .btn-white {
    width: 110px;
    height: 100%;
    line-height: 32px;
    font-size: 14px;
}

.promo-feature-item__icon {
    height: 33px;
}

.promo-feature-item__title {
    font-size: 14px;
    line-height: 14px;
    color: white;
}

.promo-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.promo-actions__btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 12px;
    text-shadow: 0 0 27px rgba(255, 255, 255, 0.61);
    color: white;
    min-width: 158px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.promo-actions__btn i {
    line-height: 1;
    margin-left: 12px;
}

.promo-actions__btn:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#e40046), to(transparent));
    background-image: -webkit-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: -o-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: linear-gradient(to right, #e40046 0%, transparent 100%);
}

.promo-switch-bor {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: skew(18deg, 0);
    -ms-transform: skew(18deg, 0);
    transform: skew(18deg, 0);
    z-index: 50;
    cursor: pointer;
}

.promo-switch-bor:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 500px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 50;
}

.promo-switch-agc {
    position: absolute;
    top: 0;
    left: 0;
    width: 36%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: skew(18deg, 0);
    -ms-transform: skew(18deg, 0);
    transform: skew(18deg, 0);
    z-index: 50;
    cursor: pointer;
}

.promo-switch-agc:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 100%;
    width: 500px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 50;
}

.promo-switch-mouse {
    position: absolute;
    top: 55%;
    left: 50%;
    margin-left: -40px;
    text-align: center;
    -webkit-transform: skew(-18deg, 0);
    -ms-transform: skew(-18deg, 0);
    transform: skew(-18deg, 0);
}

.promo-switch-mouse__title {
    position: relative;
    top: -10px;
    left: 5px;
    text-shadow: 0 0 27px rgba(255, 255, 255, 0.61);
    color: white;
    font-size: 14px;
    line-height: 20px;
}

.promo-glass-content-inner_right .promo-feature {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.promo-glass-content-inner_right .promo-feature-big-item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.promo-glass-content-inner_right .promo-actions {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.promo-glass-content-inner_right .promo-actions__btn {
    margin: 0 0 0 12px;
}

/*---------------------smartglass------------------------*/
.smartglass {
    position: relative;
    padding: 80px 0 50px 0;
    background-color: #f5f5f5;
}

.smartglass .center-wrapper {
    z-index: 15;
}

.smartglass__video video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*.smartglass:before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #161920;
  opacity: 0.5;
  z-index: 10;
}*/

.smartglass__video {
    position: absolute;
    z-index: -1;
}

.smartglass-top {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.smartglass__title {
    margin-bottom: 0;
    color: #333;
}

.smartglass__title:after {
    display: none;
}

.smartglass-top-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 30px;
}

#second .smartglass-top__text {
    color: #fff;
}

#second .smartglass__title {
    color: #fff;
}

.smartglass-top-row:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 124px;
    height: 2px;
    background-color: #e40046;
}

.smartglass-top__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    font-size: 18px;
    padding-right: 50px;
    line-height: 21px;
    color: #333;
}

.smartglass-top__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 233px;
    flex: 0 0 233px;
}

.smartglass-body {
    padding: 43px 0;
}

.smartglass-carousel-wrap {
    padding: 0 95px;
}

.smartglass-carousel {
    margin: 0 -15px;
}

.smartglass-carousel .slick-dots {
    bottom: -45px;
}

.smartglass-carousel .slick-prev {
    left: -80px;
}

.smartglass-carousel .slick-next {
    right: -80px;
}

.smartglass-carousel-slide {
    padding: 0 15px;
}

.smartglass-item {
    position: relative;
    border: 3px solid #fff;
    height: 360px;
    background: #fff;
    overflow: hidden;
}

.smartglass-item:hover .smartglass-item__more {
    left: 0;
}

.smartglass-item:hover .smartglass-item-content,
.smartglass-item:hover .smartglass-item__type {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.smartglass-item:hover .smartglass-item__type {
    background-color: rgba(228, 0, 70, 0.9);
}

.smartglass-item:hover .smartglass-item__type:after {
    border-color: rgba(228, 0, 70, 0.9) transparent transparent transparent;
}

.smartglass-item__image {
    width: 100%;
    height: 250px;
}

.smartglass-item-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.smartglass-item__type {
    position: relative;
    display: inline-block;
    padding: 15px 25px;
    font-size: 14px;
    background: rgba(0, 31, 107, 0.8);
    text-transform: uppercase;
    color: white;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 5;
}

.smartglass-item__type:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6.5px 0 6.5px;
    border-color: rgba(0, 31, 107, 0.85) transparent transparent transparent;
}

.smartglass-item-content {
    position: relative;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.smartglass-item-content-inner {
    min-height: 104px;
}

.smartglass-item__text {
    padding: 20px 20px 15px 30px;
    font-size: 16px;
    line-height: 20px;
    color: #333;
}

.smartglass-item__more {
    display: inline-block;
    position: absolute;
    bottom: -5px;
    left: -100%;
    margin-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #e40046;
    background-image: url(../images/icon-more-arrow.png);
    background-repeat: no-repeat;
    background-position: right 35%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*---------------------maincatalog------------------------*/
.maincatalog {
    padding: 90px 0 85px 0;
    background: #f5f5f5;
}

.maincatalog .results__text {
    margin: 20px 0;
    padding: 0 15px;
    text-align: right;
    font-family: 'Muller';
    display: none;
}

.maincatalog__title {
    position: absolute;
    text-align: center;
    left: 0;
    top: -20px;
    width: 100%;
}

.maincatalog__title:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.maincatalog-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 52px;
}

.maincatalog-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    max-width: 350px;
}

.maincatalog-column_center {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    padding: 75px 30px 0;
    text-align: center;
}

.maincatalog-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.maincatalog-images__item {
    position: relative;
    margin-right: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 170px;
    flex: 1 1 170px;
    max-width: 170px;
    height: 255px;
    border-bottom: 5px solid #e40046;
}

.maincatalog-images__item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 170px 24px 0;
    border-color: transparent #f5f5f5 transparent transparent;
}

.maincatalog-images__item:last-child {
    margin-right: 0;
}

.maincatalog-images__item_2 {
    margin: 0 0 0 10px;
}

.maincatalog-images__item_2:before {
    border-width: 24px 170px 0 0;
    border-color: #f5f5f5 transparent transparent transparent;
}

.maincatalog-images__item_2:first-child {
    margin-left: 0;
}

.maincatalog__text {
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-weight: 300;
}

.maincatalog-search-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -7.5px;
}

.maincatalog-search-column {
    padding: 0 7.5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.maincatalog-search-select .select-title,
.maincatalog-search-select .select-options {
    border-color: transparent;
}

.maincatalog-search-column_last {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.maincatalog-result {
    padding: 40px 0 0;
    text-align: center;
}

.maincatalog-result__title {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
    color: #352f31;
}

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

.maincatalog-result-logo__item {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 35px;
}

.maincatalog-result-logo__item:nth-child(2),
.maincatalog-result-logo__item:nth-child(3) {
    border-left: 1px solid #d0d5e0;
}

.maincatalog-result__text {
    max-width: 380px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #333;
}

/*---------------------address------------------------*/
.address {
    padding: 70px 0 55px 0;
    background: #fff;
    position: relative;
}

.address-map__frame {
    height: 402px;
}

.address-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}

.address__title {
    margin: 0;
}

.address__title:after {
    bottom: -5px;
    width: 138px;
}

.address-selectors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.address-selectors__btn {
    white-space: nowrap;
    margin-left: 15px;
    color: #001f6b;
    width: 157px;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
    position: relative;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-selectors__btn:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #001f6b transparent transparent transparent;
}

.address-selectors__btn:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #001f6b;
}

.address-selectors__btn.active {
    background-color: #e40046;
    color: #fff;
}

.address-selectors__btn.active:before, .address-selectors__btn.active:after {
    display: none;
}

.address-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}

.address-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 575px;
}

.address-filter-column {
    padding-right: 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
}

.address-map {
    position: relative;
    margin-bottom: 25px;
}

.address-map__cursor {
    position: absolute;
    width: 42px;
    height: 67px;
    background-image: url(../images/map-location.png);
}

.address-map__cursor.active {
    background-image: url(../images/map-location-active.png);
}

.address-map-item {
    position: relative;
    position: absolute;
    width: 370px;
    padding: 25px;
    background: #FFF;
    -webkit-box-shadow: 5.7px 5.7px 16.9px 1.1px rgba(0, 0, 0, 0.2);
    box-shadow: 5.7px 5.7px 16.9px 1.1px rgba(0, 0, 0, 0.2);
}

.address-map-item:before {
    content: '';
    display: block;
    position: absolute;
    top: -12px;
    left: 50%;
    margin-left: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11.5px 12px 11.5px;
    border-color: transparent transparent #fff transparent;
}

.address-map-item__city {
    position: relative;
    margin-bottom: 5px;
    padding-left: 27px;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    color: #001f6b;
    background-image: url(../images/icon-address.svg);
    background-repeat: no-repeat;
    background-position: 0 30%;
    background-size: 15px 19px;
}

.address-map-item__text {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    color: #352f31;
}

.address-map-item__phone {
    padding-left: 25px;
    font-size: 16px;
    color: #656565;
    background-image: url(../images/icon-phone.svg);
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: 13px 13px;
}

.address-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.address-time__type {
    padding-right: 17px;
    padding-left: 30px;
    line-height: 20px;
    color: #656565;
    background-image: url(../images/icon-time.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    border-right: 1px solid #cecece;
}

.address-time__number {
    padding-left: 15px;
    color: #352f31;
}

.address-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.address-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.333%;
    flex: 1 1 33.333%;
    max-width: 33.333%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.address-item {
    position: relative;
    padding: 20px 55px 20px 25px;
    height: 100%;
    min-height: 185px;
    border: 1px solid #dadada;
    cursor: pointer;
}

.address-item.active {
    border-color: transparent;
    -webkit-box-shadow: 5.7px 5.7px 16.9px 1.1px rgba(0, 0, 0, 0.1);
    box-shadow: 5.7px 5.7px 16.9px 1.1px rgba(0, 0, 0, 0.1);
}

.address-item.active .address-item__number {
    background: #e40046;
    color: #fff;
}

.address-item__number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 27px;
    height: 27px;
    border: 1px solid #e40046;
    text-align: center;
    line-height: 27px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 14px;
    color: #e40046;
}

.address-item__city {
    position: relative;
    margin-bottom: 10px;
    padding-left: 27px;
    font-size: 20px;
    font-weight: 500;
    line-height: 29px;
    color: #001f6b;
    background-image: url(../images/icon-address.svg);
    background-repeat: no-repeat;
    background-position: 0 30%;
    background-size: 15px 19px;
}

.address-item__text {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 22px;
    color: #352f31;
}

.address-item__phone {
    padding-left: 25px;
    font-size: 16px;
    color: #656565;
    background-image: url(../images/icon-phone.svg);
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: 13px 13px;
}

.address-item .address-item__phone_more {
    padding-left: 25px;
    font-size: 16px;
    color: #656565;
    background-image: url(../images/icon-phone.svg);
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: 13px 13px;
}

.address-item .address-item__phone_more + .address-item__phone,
.fp_lines__phone .address-item__phone_more + a {
    display: none;
}

.fp_lines__phone .address-item__phone_more {
    font-weight: bold;
    color: #4e4e4e;
}

.address-item__phone_more span {
    border-bottom: 1px dashed #656565;
    cursor: pointer;
}

.address-item__phone_more span:hover {
    border-color: transparent;
}

.address-load {
    display: none;
}

.address-column:nth-child(n+7) {
    display: none;
}

.address-row.load-all .address-column:nth-child(n+7) {
    display: block;
}

.address-load {
    margin: 10px auto 0;
    width: 32%;
}

.address-selectors__btn {
    white-space: nowrap;
    margin-left: 15px;
    color: #fff;
    background: #001f6b;
    width: 157px;
    padding: 0 15px;
    text-align: center;
    font-size: 14px;
    position: relative;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.address-selectors__btn:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -5px;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #001f6b transparent transparent transparent;
}

.address-selectors__btn:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #001f6b;
}

.address-selectors__btn.active {
    background-color: #ffffff;
    color: #001f6b;
}

.address-selectors__btn:before,
.address-selectors__btn:after {
    display: none;
}

.address-selectors__btn.active:before,
.address-selectors__btn.active:after {
    display: block;
}

.address-selectors__btn.bitstop {
    background-color: #e40046;
    color: #fff;
}

.address-selectors__btn.bitstop:before {
    border-color: #e40046 transparent transparent transparent;
}

.address-selectors__btn.bitstop:after {
    background: #e40046;
}

.address-selectors__btn.bitstop.active {
    background-color: #ffffff;
    color: #e40046;
}

.address-selectors__btn.bitstop.active:before,
.address-selectors__btn.bitstop.active:after {
    display: block;
}

.address-column:nth-child(n+7) {
    display: none;
}

.address-row.load-all .address-column:nth-child(n+7) {
    display: block;
}

.address-load {
    display: none;
}

.address-load {
    margin: 10px auto 0;
    width: 32%;
}

.address-item .feedback-form {
    width: 112%;
    margin-top: 20px;
}

.address-item .feedback-form__btn {
    width: 100%;
}

.address-item .form-agreement {
    display: none;
}

.address-item .feedback-form__field {
    display: inline-block;
    width: 49%;
    margin-bottom: 10px;
}


/*---------------------mainnews------------------------*/
.mainnews {
    position: relative;
    padding: 70px 0 45px 0;
    background: #001f6b;
}

.mainnews:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(#e40046), to(transparent));
    background-image: -webkit-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: -o-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: linear-gradient(to right, #e40046 0%, transparent 100%);
    z-index: 10;
}

.mainnews-top {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mainnews-top-row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 30px;
}

.mainnews-top-row:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 124px;
    height: 2px;
    background-color: #e40046;
}

.mainnews__title {
    color: #fff;
    margin-bottom: 0;
}

.mainnews__title:after {
    display: none;
}

.mainnews-top__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    font-size: 18px;
    padding-right: 50px;
    line-height: 21px;
    color: white;
}

.mainnews-top__btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 233px;
    flex: 0 0 233px;
}

.mainnews-body {
    padding: 45px 0 0;
}

.mainnews-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mainnews-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.mainnews-item {
    position: relative;
    background: #fff;
}

.mainnews-item__date {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 85px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    background: #fff;
    color: #352f31;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 5;
}

.mainnews-item__date:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 33px 10px 0 0;
    border-color: #fff transparent transparent transparent;
}

.mainnews-item__image {
    height: 182px;
}

.mainnews-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 215px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 10px 20px 20px;
}

.mainnews-item__title {
    position: relative;
    margin-bottom: 30px;
    color: #001f6b;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.mainnews-item__title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 39px;
    height: 2px;
    background: #e50e50;
}

.mainnews-item__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #352f31;
    overflow: hidden;
    max-height: 80px;
}

.mainnews-item__more {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #e40046;
    background-image: url(../images/icon-arrow-right.svg);
    background-size: 5px 7px;
    background-position: right 40%;
    background-repeat: no-repeat;
}

/*---------------------partner------------------------*/
.partner {
    padding: 65px 0 100px 0;
    background: url(../images/bg-partner.jpg) 50% 50% no-repeat;
    background-size: cover;
    text-align: center;
}

.partner__title {
    margin-bottom: 45px;
    color: #fff;
}

.partner__title:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.partner__text {
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    color: white;
}

.partner__text span {
    display: block;
}

/*---------------------feedback------------------------*/
.feedback {
    padding: 65px 0 85px 0;
    background: #fff;
}

.feedback-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -38px;
}

.feedback-column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    max-width: 50%;
    padding: 0 38px;
}

.feedback-column__title {
    margin-bottom: 57px;
}

.feedback-form-select {
    margin-bottom: 20px;
}

.feedback-form-select .select-title {
    height: 50px;
}

.feedback-form-select .select-title__value {
    font-size: 15px;
    line-height: 48px;
}

.feedback-form__field {
    margin-bottom: 20px;
}

.feedback-form__area {
    margin-bottom: 20px;
}

.feedback-form__btn {
    width: 292px;
}

.feedback-offices {
    border: 1px solid #dadada;
}

.feedback-office-item {
    padding: 20px 30px 25px 25px;
    border-bottom: 1px solid #dadada;
}

.feedback-office-item:last-child {
    border-bottom: 0;
}

.feedback-office-item__title {
    margin-bottom: 10px;
    font-weight: 700;
    color: #352f31;
}

.feedback-office-item__address {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    color: #352f31;
}

.feedback-office-item__phone {
    padding-left: 25px;
    font-size: 16px;
    color: #656565;
    background-image: url(../images/icon-phone.svg);
    background-repeat: no-repeat;
    background-position: 0 10%;
    background-size: 13px 13px;
}

.feedback-office-item__mail {
    display: inline-block;
    padding-left: 25px;
    margin-top: 10px;
    font-size: 16px;
    color: #656565;
    background-image: url(../images/icon-mail.svg);
    background-repeat: no-repeat;
    background-position: 0 2px;
    background-size: 14px 12px;
}

.feedback-office-item__mail span {
    border-bottom: 1px solid #656565;
}

.feedback-office-item__mail:hover span {
    border-color: transparent;
}

.feedback-office-load {
    display: none;
}

/*
  .feedback-office-load {
    display: block;
    margin-top: 15px;
  }
  .feedback-office-item:nth-child(n+4) {
    display: none;
  }
  .feedback-offices.load-all .feedback-office-item:nth-child(n+4) {
    display: block;
  }
*/

/*---------------------footer------------------------*/
.footer {
    padding: 43px 0;
    background-color: #001f6b;
}

.footer-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-copyright {
    font-size: 15px;
    color: white;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.footer-form-link {
    color: #ffffff;
    cursor: pointer;
}

.footer-form-link:hover {
    text-decoration: underline;
}

#feedback_form {
    top: unset;
    bottom: 200px;
}

#catalog_section .feedback-column {
    text-align: left;
}

.footer-copyright a {
    color: #ffffff;
    font-size: 12px;
    display: inline-block;
    margin-top: 5px;
}

.footer-develop {
    font-size: 15px;
    color: white;
    text-align: right;
}

.footer-develop a {
    color: white;
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-social__btn {
    margin: 0 3px;
    background: #1b377b;
    -webkit-transform: skew(-17deg, 0);
    -ms-transform: skew(-17deg, 0);
    transform: skew(-17deg, 0);
}

.footer-social__btn:hover {
    background: #e40046;
}

.footer-social__btn span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    -webkit-transform: skew(17deg, 0);
    -ms-transform: skew(17deg, 0);
    transform: skew(17deg, 0);
}

/*==============================NEWS==============================*/
.header_static {
    position: static;
    padding: 0;
    background: #001f6b;
}

.header_static .header-body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_static .header-logo {
    padding-bottom: 10px;
}

.header_static .header-menu-list li a {
    display: block;
    padding: 36px 0;
}

.header_static .header-menu-list li a:after {
    display: none;
    width: 100%;
    background: #e40046;
}

.header_static .header-menu-list li a:hover, .header_static .header-menu-list li a.active {
    color: #e40046;
}

.header_static .header-menu-list li a:hover:after, .header_static .header-menu-list li a.active:after {
    display: block;
}

.main {
    padding: 25px 0 80px 0;
}

.main_npb {
    padding-bottom: 0;
}

.breadcrumbs {
    padding-bottom: 15px;
}

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

.breadcrumbs-list li {
    position: relative;
    margin: 0 35px 10px 0;
    font-size: 14px;
    font-weight: 300;
    color: #888888;
}

.breadcrumbs-list li:last-child:after {
    display: none;
}

.breadcrumbs-list li:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    right: -20px;
    width: 4px;
    height: 7px;
    background-image: url(../images/icon-arrow-breadcrumbs.svg);
}

.breadcrumbs-list li a {
    color: #e40046;
    line-height: 16px;
    font-weight: 500;
}

.breadcrumbs-list li a.home {
    display: inline-block;
    padding-left: 23px;
    background-image: url(../images/icon-home.svg);
    background-size: 15px 13px;
    background-repeat: no-repeat;
}

.main-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 295px;
    flex: 0 0 295px;
    max-width: 295px;
    background: #fff;
    position: relative;
}

.sidebar:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.sidebar-menu__title {
    position: relative;
    padding: 17px 25px 14px 45px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: #b2b2b2;
    color: #fff;
    background-image: url(../images/icon-menu-button.svg);
    background-repeat: no-repeat;
    background-position: 20px 48%;
    background-size: 14px 10px;
}

.sidebar-menu__title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4.5px 0 4.5px;
    border-color: #b2b2b2 transparent transparent transparent;
}

.sidebar-menu-list li {
    border-bottom: 1px solid #eeeeee;
}

.sidebar-menu-list li a {
    position: relative;
    display: block;
    padding: 19px 40px 19px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #352f31;
}

.sidebar-menu-list li a:before {
    content: '';
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: #e40046;
}

.sidebar-menu-list li a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 15px;
    width: 5px;
    height: 8px;
    background-image: url(../images/icon-menu-arrow.svg);
}

.sidebar-menu-list li a:hover, .sidebar-menu-list li a.active {
    color: #e40046;
}

.sidebar-menu-list li a:hover:before, .sidebar-menu-list li a.active:before {
    display: block;
}

.sidebar-menu-list li a:hover:after, .sidebar-menu-list li a.active:after {
    background-image: url(../images/icon-menu-arrow-active.svg);
}

.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-left: 30px;
}

.news-list {
    padding-bottom: 50px;
}

.news-item {
    position: relative;
    margin-bottom: 30px;
    background: #fff;
}

.news-item:hover {
    -webkit-box-shadow: 1px 4px 11.8272px 0.1728px rgba(0, 0, 0, 0.08);
    box-shadow: 1px 4px 11.8272px 0.1728px rgba(0, 0, 0, 0.08);
}

.news-item:hover .news-item__title {
    color: #e40046;
}

.news-item:hover .news-item__title:after {
    background: #e40046;
}

.news-item__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 100%;
}

.news-item-content {
    padding: 20px 25px 25px 290px;
}

.news-item__title {
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #001f6b;
}

.news-item__title:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #001f6b;
}

.news-item__text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 20px;
    color: #352f31;
}

.news-item__link {
    padding-right: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #e40046;
    background-image: url(../images/icon-arrow-right.svg);
    background-size: 5px 7px;
    background-position: right 40%;
    background-repeat: no-repeat;
}

/*==============================MARKING==============================*/
.content {
    padding-bottom: 80px;
}

.promoslider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.promoslider .slick-slide {
    height: inherit !important;
}

.promoslider-item {
    position: relative;
    height: 100%;
}

.promoslider-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
}

.promoslider-item__bg:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url(../images/promoslider-slide-shape.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 50%;
    z-index: 15;
}

.promoslider-item__bg:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.promoslider-item-body {
    position: relative;
    padding: 120px 0 95px 0;
    z-index: 10;
}

.promoslider-item__title {
    margin-bottom: 10px;
    font-size: 38px;
    line-height: 46px;
    font-weight: 700;
    color: #fff;
}

.promoslider-item__text {
    margin-bottom: 25px;
    max-width: 650px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #fff;
}

.promoslider-item__btn {
    width: 168px;
    font-size: 16px;
    line-height: 46px;
}

.content-text {
    padding-bottom: 15px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text_2 p {
    margin: 0;
}

.marking-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.marking-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.marking-info-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.marking-info-column_1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 165px;
    flex: 0 0 165px;
    max-width: 165px;
}

.marking-info-column_1 .marking-info-item {
    margin: 20px 0;
}

.marking-info-column_2 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding-right: 53px;
}

.marking-info-column_3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 185px;
    flex: 0 0 185px;
    max-width: 185px;
}

.marking-info-column_3 .marking-info-item {
    margin: 30px 0;
}

.marking-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.marking-info-item__title {
    position: relative;
    line-height: 35px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    background: #001f6b;
}

.marking-info-item__title:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 33px;
    height: 1px;
    background: #001f6b;
}

.marking-info-item__title:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -33px;
    width: 5px;
    height: 5px;
    background: #001f6b;
    border-radius: 50%;
    z-index: 10;
}

.marking-info-item_1 .marking-info-item__title:before {
    left: auto;
    right: 100%;
}

.marking-info-item_1 .marking-info-item__title:after {
    right: auto;
    left: -33px;
}

.marking-info-item_2 .marking-info-item__title:after {
    display: none;
}

.marking-info-item_2 .marking-info-item__title:before {
    right: auto;
    top: -10px;
    left: -33px;
    width: 33px;
    height: 29px;
    background: transparent;
    background-image: url(../images/icon-marking-arrow1.png);
    background-size: 33px 29px;
}

.marking-info-item_3 .marking-info-item__title:after {
    display: none;
}

.marking-info-item_3 .marking-info-item__title:before {
    right: auto;
    top: -31px;
    left: -33px;
    width: 33px;
    height: 50px;
    background: transparent;
    background-image: url(../images/icon-marking-arrow2.png);
    background-size: 33px 50px;
}

.marking-info-item__value {
    display: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 37px;
    color: #333;
    white-space: nowrap;
}

.marking-info-item__value i {
    vertical-align: middle;
    display: inline-block;
}

.marking-info-item__value img {
    vertical-align: middle;
    display: inline-block;
}

.marking-info__image {
    margin-left: 40px;
}

.marking-info-item_notitle {
    margin: 0 !important;
}

.marking-info-titles {
    padding-top: 7px;
}

.marking-info-titles__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    height: 32px;
    font-weight: 500;
    text-align: right;
    color: #333;
}

.marking-info-titles__item i {
    position: relative;
    margin: 0 5px;
    vertical-align: middle;
}

.content-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding: 15px 0;
}

.content-images-column {
    margin-bottom: 30px;
    padding: 0 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 25%;
}

.content-images__image {
    height: 200px;
}

.marking-designations {
    position: relative;
    margin-top: 20px;
    margin-bottom: 50px;
    padding-top: 15px;
    padding-left: 230px;
}

.marking-designations__image1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
}

.marking-designations__image1 img {
    max-width: 100%;
}

.marking-designations__image2 {
    position: absolute;
    left: 0;
    top: 50%;
    width: 200px;
}

.marking-designations__image2 img {
    max-width: 100%;
}

.gallery {
    overflow: hidden;
}

.gallery__title {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.gallery__title:after {
    bottom: -2px;
}

.gallery-carousel-wrap {
    width: 895px;
}

.gallery-carousel {
    margin: 0 -15px;
}

.gallery-carousel .slick-arrow {
    top: -95px;
    width: 10px;
    height: 17px;
    left: auto;
    background-repeat: no-repeat;
    margin: 0;
    z-index: 15;
}

.gallery-carousel .slick-prev {
    right: 65px;
    background-image: url(../images/icon-prev-active.svg);
}

.gallery-carousel .slick-prev.slick-disabled {
    background-image: url(../images/icon-prev.svg);
    opacity: 1;
}

.gallery-carousel .slick-next {
    right: 15px;
    background-image: url(../images/icon-next-active.svg);
}

.gallery-carousel .slick-next.slick-disabled {
    background-image: url(../images/icon-next.svg);
    opacity: 1;
}

.gallery-carousel-slide {
    padding: 0 15px;
}

.gallery-item {
    display: block;
    height: 185px;
    overflow: hidden;
}

.gallery-item_video {
    position: relative;
}

.gallery-item_video:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    background-image: url(../images/icon-play.png);
}


.promo-switch-mouse__icon {
    transition: transform 0.5s ease;
}

.promo-switch-mouse__icon.toggle {
    transform: scale(1.2);
}

.form-agreement {
    display: flex;
    margin: 15px 0;
}

div.form-agreement input[type=checkbox] {
    margin: 0 5px 0 10px;
    display: inline-block;
    vertical-align: middle;
}

.form-agreement label {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

/*==============================ADAPTIVE==============================*/
@media only screen and (max-height: 899px) {
    .promo {
        padding-top: 150px;
    }
}

@media only screen and (max-width: 1799px) {
    .center-wrapper_big {
        max-width: 1420px;
    }

    .index-page .header-menu-list li a {
        font-size: 16px;
    }

    .header-menu-list ul.inner li a {
        font-size: 14px;
    }

    .promo-feature-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 133px;
        flex: 0 0 133px;
        max-width: 133px;
    }
}

@media only screen and (max-width: 1599px) {
    .promo-switch-bor {
        width: 37%;
    }

    .promo-switch-agc {
        width: 38%;
    }
}

@media only screen and (max-width: 1420px) {
    .center-wrapper {
        max-width: 1170px;
    }

    .header-menu-list li {
        padding: 15px 10px 13px;
    }

    .promo {
        padding-top: 130px;
    }

    .smartglass-carousel-wrap {
        padding: 0 70px;
    }

    .smartglass-carousel .slick-prev {
        left: -55px;
    }

    .smartglass-carousel .slick-next {
        right: -55px;
    }

    .gallery-carousel-wrap {
        width: 845px;
    }

    .marking-info__image {
        margin-left: 20px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
        flex: 0 0 210px;
    }

    .marking-info__image img {
        max-width: 100%;
    }

    .marking-info-column_2 {
        padding-right: 60px;
    }
}

@media only screen and (max-height: 759px) {
    .promo {
        padding: 80px 0 35px 0;
    }
}

@media only screen and (max-width: 1340px) {
    .promo-switch-bor {
        width: 36%;
    }
}

@media only screen and (min-width: 1260px) {
    .smartglass {
        background-image: none;
    }
}

@media only screen and (max-width: 1260px) {
    .smartglass__title {
        color: #fff;
    }

    .smartglass-top__text {
        color: #fff;
    }

    .smartglass-top__btn {
        display: inline-block;
        width: 233px;
        line-height: 40px;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
        font-size: 14px;
        background-color: white;
        color: #e40046;
    }

    .smartglass-top__btn:hover {
        background: #e40046;
        color: #fff;
    }

    .header-menu-list ul.inner {
        display: none !important;
    }

    .header-menu-list li:hover {
        background: initial;
    }

    .city {
        /* 	display: none; */
    }

    .header-body {
        padding-right: 0;
    }

    .smartglass {
        background-image: url(../images/bg-smartglass2.jpg?1);
        background-position: 50% 0;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .smartglass:before {
        display: none;
    }

    .smartglass__video {
        display: none;
    }

    .promo {
        height: auto;
        min-height: calc(100vh - 60px);
    }

    .center-wrapper {
        max-width: 960px;
    }

    .header-menu {
        position: fixed;
        top: 0;
        right: -100%;
        padding: 80px 30px 70px 0;
        background: #fff;
        -webkit-box-shadow: 6px 6px 23.4375px 1.5625px rgba(0, 0, 0, 0.25);
        box-shadow: 6px 6px 23.4375px 1.5625px rgba(0, 0, 0, 0.25);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 190;
    }

    .header-menu.active {
        right: 0;
    }

    .header-menu-list {
        display: block;
        margin-bottom: 70px;
    }

    .header-menu-list li {
        margin: 0 0 20px 0;
    }

    .header-menu-list li a {
        display: block;
        padding: 3px 0 3px 25px;
        font-size: 18px;
        font-weight: 500;
        text-align: right;
        color: #352f31;
        white-space: nowrap;
        border-left: 3px solid transparent;
    }

    .header-menu-list li a:hover {
        border-color: #c30146;
        color: #c30146;
    }

    .header-menu__open {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
        flex: 0 0 20px;
        display: flex;
        margin-right: 50px;
    }

    .header-menu__close {
        display: inline-block;
    }

    .header-menu__logo {
        display: block;
    }

    .promo-tech {
        opacity: 0;
    }

    .promo-top-column.active .promo-tech {
        opacity: 1;
    }

    .promo-description.visible {
        opacity: 0;
    }

    .promo-top-column_2 .promo-logo {
        padding-right: 40px;
        text-align: right;
    }

    .promo-switch-bor {
        width: 20%;
    }

    .promo-switch-bor .promo-switch-mouse {
        top: 300px;
        right: 50px;
        left: auto;
        margin: 0;
    }

    .promo-logo__title span {
        display: block;
    }

    .promo-switch-agc {
        width: 20%;
        -webkit-transform: skew(-18deg, 0);
        -ms-transform: skew(-18deg, 0);
        transform: skew(-18deg, 0);
    }

    .promo-switch-agc .promo-switch-mouse {
        -webkit-transform: skew(18deg, 0);
        -ms-transform: skew(18deg, 0);
        transform: skew(18deg, 0);
    }

    .promo-switch-mouse {
        top: 300px;
        left: 30px;
        margin: 0;
    }

    .promo-logo {
        height: 120px;
    }

    .smartglass-carousel-wrap {
        padding: 0;
    }

    .smartglass-carousel .slick-arrow {
        display: none !important;
    }

    .smartglass-item__more {
        position: static;
        margin-bottom: 15px;
    }

    .smartglass-item-content-inner {
        min-height: 90px;
    }

    .smartglass-item:hover .smartglass-item-content, .smartglass-item:hover .smartglass-item__type {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .smartglass-item__type {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .smartglass-item__type:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .maincatalog-images__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 150px;
        flex: 1 1 150px;
        max-width: 150px;
        height: 240px;
    }

    .maincatalog-column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 310px;
        flex: 0 0 310px;
        max-width: 310px;
    }

    .maincatalog-column_center {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .mainnews-row {
        margin: 0 -7.5px;
    }

    .mainnews-column {
        margin-bottom: 15px;
        padding: 0 7.5px;
    }

    .mainnews-item__title {
        font-size: 16px;
    }

    .feedback-row {
        margin: 0 -20px;
    }

    .feedback-column {
        padding: 0 20px;
    }

    .header_static {
        padding: 22px 0;
    }

    .header_static .header-menu-list li a {
        padding: 0;
        padding-left: 25px;
    }

    .header_static .header-menu-list li a:hover, .header_static .header-menu-list li a.active {
        color: #352f31;
    }

    .header_static .header-menu-list li a:hover:after, .header_static .header-menu-list li a.active:after {
        display: none;
    }

    .gallery-carousel-wrap {
        width: 635px;
    }

    .gallery-item {
        height: 135px;
    }

    .marking-info {
        display: block;
    }

    .marking-info__image {
        text-align: center;
        margin: 0;
        padding-left: 30px;
    }

    .content-images__image {
        height: 140px;
    }

    .marking-info-column_2 {
        padding-right: 72px;
    }
}

@media only screen and (max-height: 699px) {
    .promo-feature {
        padding-bottom: 5px;
    }

    .promo-feature-big {
        margin-bottom: 15px;
    }

    .promo-feature {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1010px) {
    .center-wrapper {
        max-width: 740px;
        padding: 0 15px;
    }

    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .btn-white {
        width: 200px;
    }

    .promo-tech {
        font-size: 14px;
    }

    .header-body {
    }

    .header-menu__open {
        margin-bottom: 6px;
    }

    .promo {
        padding: 90px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .promo-inner {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .promo-top-column_2 .promo-logo {
        padding-right: 20px;
    }

    .promo-feature-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
        flex: 0 0 110px;
        max-width: 110px;
        min-height: 85px;
        padding: 15px 5px 6px;
    }

    .promo-feature-item__title {
        font-size: 12px;
    }

    .promo-feature-big-item__title {
        font-size: 26px;
        line-height: 30px;
    }

    .promo-feature-big-item__title {
        padding-right: 25px;
    }

    .promo-feature-big-item__btn {
        margin-left: 25px;
    }

    .promo-feature-big-item__title span:first-child {
        margin-right: 20px;
    }

    .promo-switch-bor .promo-switch-mouse {
        top: 330px;
        right: 25px;
    }

    .promo-switch-agc .promo-switch-mouse {
        top: 330px;
        left: 10px;
    }

    .smartglass-item__more {
        margin-left: 15px;
    }

    .smartglass-top__btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
    }

    .smartglass-carousel-slide {
        padding: 0 10px;
    }

    .smartglass-carousel {
        margin: 0 -10px;
    }

    .smartglass-item__text {
        padding: 20px 10px 15px 15px;
        font-size: 13px;
        line-height: 16px;
    }

    .smartglass-item__type {
        display: block;
        padding: 15px;
        font-size: 12px;
    }

    .smartglass-item__more {
        margin-bottom: 10px;
    }

    .smartglass-item__image {
        height: 180px;
    }

    .smartglass-item {
        height: 344px;
    }

    .maincatalog-images__item:first-child {
        display: none;
    }

    .maincatalog-column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        max-width: 180px;
    }

    .maincatalog-images__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
        height: 280px;
    }

    .maincatalog-column_center {
        max-width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .maincatalog-images__item:before {
        border-width: 0 180px 24px 0;
    }

    .maincatalog-images__item_2:before {
        border-width: 24px 180px 0 0;
    }

    .maincatalog-search-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .maincatalog-row {
        margin-bottom: 30px;
    }

    .maincatalog-search-column {
        margin-bottom: 15px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 33.333%;
        flex: 1 1 33.333%;
        max-width: 33.333%;
    }

    .maincatalog-search-column:first-child, .maincatalog-search-column:nth-child(2) {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
    }

    .maincatalog {
        padding-bottom: 50px;
    }

    .address {
        padding-top: 50px;
    }

    .address-selectors__btn {
        width: 120px;
    }

    .address-filter {
        width: 490px;
    }

    .address-time__type {
        font-size: 14px;
        background-size: 16px 16px;
    }

    .address-time__number {
        font-size: 14px;
    }

    .address-column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
    }

    .mainnews-row {
        margin: 0 -15px;
    }

    .mainnews-column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .mainnews-item__title {
        font-size: 18px;
    }

    .mainnews-top__btn {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
    }

    .partner {
        padding: 60px 0;
    }

    .feedback-row {
        display: block;
    }

    .feedback-column {
        display: block;
        max-width: 100%;
    }

    .feedback-column:first-child {
        margin-bottom: 60px;
    }

    .footer-copyright {
        padding-right: 100px;
    }

    .promo-tech_2:after {
        border-width: 0 0 57px 20px;
        border-color: transparent transparent rgba(0, 31, 107, 0.6) transparent;
    }

    .main-body {
        display: block;
    }

    .sidebar {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .content {
        padding-left: 0;
    }

    .sidebar-menu-list {
        display: none;
    }

    .sidebar-menu-list.active {
        display: block;
    }

    .sidebar-menu__title:after {
        display: none;
    }

    .gallery-carousel-wrap {
        width: 100%;
    }

    .gallery-item {
        height: 150px;
    }

    .marking-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .marking-info-item__title {
        font-size: 12px;
    }

    .marking-info-column_1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
        flex: 0 0 150px;
        max-width: 150px;
    }

    .marking-info-column_3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 165px;
        flex: 0 0 165px;
        max-width: 165px;
    }

    .marking-info__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
        padding-left: 15px;
    }

    .marking-info-column_2 {
        padding-right: 45px;
    }

    .marking-info-titles__item {
        font-size: 14px;
    }

    .marking-info-titles__item {
        height: 28px;
    }

    .marking-info-column_3 .marking-info-item {
        margin: 15px 0;
    }

    .promoslider-item-body {
        padding-bottom: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .center-wrapper {
        max-width: 100%;
    }

    .header-menu {
        height: 100%;
    }

    .header-menu__open {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .promo {
        position: relative;
        padding: 80px 0;
        background: url(../images/bg-promo-tablet.jpg) 50% 0 no-repeat;
        background-size: cover;
    }

    .promo .center-wrapper {
        position: static;
    }

    .promo-top {
        position: relative;
        padding-bottom: 30px;
    }

    .promo-top-column {
        position: absolute;
        top: 0;
        left: 15px;
    }

    .promo-top-column_2 {
        right: 15px;
        left: auto;
    }

    .promo-feature-big {
        display: none;
    }

    .promo-feature {
        display: block;
        width: 220px;
        margin-bottom: 0;
    }

    .promo-glass-bg {
        display: none;
    }

    .promo-feature-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-height: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
        flex: 0 0 220px;
        max-width: 220px;
        height: 45px;
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #1c2b74;
    }

    .promo-feature-item:last-child {
        border: 0;
    }

    .promo-feature-item__icon {
        height: auto;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
        flex: 0 0 50px;
        max-width: 50px;
    }

    .promo-feature-item__title {
        padding-right: 25px;
        font-size: 14px;
        line-height: 16px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        text-align: left;
    }

    .promo-feature-item.active:before {
        top: 50%;
        left: -6px;
        margin: 0;
        margin-top: -6px;
        border-width: 6px 6px 6px 0;
        border-color: transparent #c30146 transparent transparent;
    }

    .promo-feature-item.active {
        background: #c30146;
    }

    .promo-scroll {
        display: none;
    }

    .promo-tech {
        line-height: 45px;
        height: 45px;
    }

    .promo-tech:after {
        border-width: 45px 0 0 20px;
    }

    .promo-tech_2:after {
        border-width: 0 0 45px 20px;
    }

    .promo-logo__title span {
        display: inline;
    }

    .promo-logo {
        height: 105px;
    }

    .promo-switch-agc .promo-switch-mouse {
        left: 20px;
    }

    .promo-switch-bor .promo-switch-mouse {
        right: 32px;
    }

    .promo-glass-content_right .promo-glass-content-inner .promo-feature {
        margin-right: 0;
        padding-right: 0;
    }

    .promo-glass-content-inner {
        min-height: 275px;
    }

    .promo-actions {
        position: absolute;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: 20px;
        left: 0;
        width: 100%;
    }

    .promo-actions__btn {
        font-size: 16px;
        margin: 0 7px !important;
    }

    .promo-switch-mouse__icon {
        margin: 0 auto;
        width: 50px;
        /*    transition:scale 0.5s ease; */
    }

    .promo-switch-mouse__icon img {
        max-width: 100%;
    }

    .promo-switch-mouse__title {
        top: -5px;
        padding-right: 5px;
        font-size: 12px;
    }

    .promo-switch-agc .promo-switch-mouse {
        top: 250px;
        left: 0;
    }

    .promo-switch-bor .promo-switch-mouse {
        top: 250px;
        right: 0;
    }

    .promo-logo__title {
        font-size: 18px;
        white-space: nowrap;
    }

    .promo-logo__title span {
        font-size: 50px;
    }

    .promo-tech {
        white-space: nowrap;
    }

    .maincatalog-search__btn {
        width: 100%;
    }

    .address-info {
        display: block;
    }

    .address-filter {
        margin-bottom: 15px;
        width: 100%;
    }

    .footer-copyright {
        padding-right: 55px;
    }

    .promo-feature-item.active .promo-feature-item-mobile {
        display: block;
    }

    .promo-glass_bor .promo-feature-item-mobile {
        left: auto;
        right: 100%;
        padding: 7px 0 7px 7px;
    }

    .promo-glass_bor .promo-feature-item.active:before {
        left: auto;
        right: -6px;
        border-width: 6px 0 6px 6px;
        border-color: transparent transparent transparent #c30146;
    }

    .promo-glass-content-inner_right:after {
        content: '';
        display: block;
        clear: both;
    }

    .promo-glass-content-inner_right .promo-feature {
        float: right;
    }

    .promo-glass-content-inner_right .promo-actions {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .marking-info__image {
        display: none;
    }

    .content-images-column {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
    }

    .content-images__image {
        height: 270px;
    }

    .gallery-item {
        height: 190px;
    }

    .marking-info-column_2 {
        display: none !important;
    }

    .marking-info-row {
        display: block;
    }

    .marking-info-column {
        display: block;
        max-width: 100%;
    }

    .marking-info-item {
        margin: 0 0 20px 0 !important;
    }

    .marking-info-item__title {
        font-size: 14px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
        width: auto;
    }

    .marking-info-item__value {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        padding-right: 50px;
        line-height: 35px;
        max-width: 50%;
        width: auto;
    }

    .marking-info-item__title:before {
        left: auto !important;
        top: 50% !important;
        right: 100% !important;
        width: 40px !important;
        height: 1px !important;
        background: #001f6b !important;
    }

    .marking-info-item__title:after {
        display: block !important;
        right: auto !important;
        left: -40px !important;
    }

    .city {
        margin-left: 15px;
        right: 25px;
    }

    .header-body {
        padding-right: 50px;
    }

    .header-menu__open {
        margin: 0;
    }

    .city-modal {
        top: 55px;
        right: 15px;
        left: 15px;
    }

    .city-modal.city-start {
        top: 55px;
        right: 15px;
        left: initial;
    }

    .header-body {
        -ms-align-items: center;
        align-items: center;
    }

    .city-choose {
        max-height: 70vh;
        overflow: auto;
        width: auto;
    }

    .city {
        position: static;
    }

    .city__toggle {
        position: static;
    }

    .header-body {
        padding-right: 0;
    }

    .promo-feature-item.active:before {
        display: none;
    }

    .promo-feature-item.active {
        background: #001f6b;
    }

    .promo-feature-item:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        background-image: url(../images/icon-arrow-right2.svg);
        width: 6px;
        margin-top: -4px;
        height: 8px;
        background-size: 6px 8px;
        z-index: 30;
    }

    .maincatalog-result-logo {
        display: flex;
        flex-direction: column;

    }

    .maincatalog-result-logo__item:nth-child(2),
    .maincatalog-result-logo__item:nth-child(3) {
        border-left: none;
    }
}

@media only screen and (max-width: 639px) {
    .promo-description {
        display: none !important;
    }

    .promo-top {
        padding-bottom: 0;
        min-height: auto;
        height: 140px;
    }

    .promo-logo {
        height: 75px;
    }

    .promo-logo__type {
        margin-bottom: 3px;
        font-size: 11px;
    }

    .promo-logo__title {
        font-size: 16px;
    }

    .promo-logo__title span {
        font-size: 42px;
    }

    .promo-top-column_2 .promo-logo__title {
        height: 45px;
    }

    .promo-top-column_2 .promo-logo__title img {
        max-height: 100%;
    }

    .promo-tech {
        padding-right: 15px;
        font-size: 13px;
    }

    .promo-tech_2 {
        padding-left: 15px;
    }

    .smartglass-top-row {
        display: block;
    }

    .smartglass__title {
        margin-bottom: 10px;
    }

    .smartglass-top__text {
        margin-bottom: 15px;
        padding-right: 0;
    }

    .maincatalog {
        padding: 40px 0 20px 0;
    }

    .maincatalog-images {
        display: none;
    }

    .maincatalog-row {
        display: block;
    }

    .maincatalog-column {
        padding: 0;
    }

    .maincatalog__title {
        position: relative;
        top: 0;
    }

    .maincatalog-search-row {
        display: block;
    }

    .maincatalog-search-column {
        max-width: 100%;
    }

    .maincatalog-search-column:first-child, .maincatalog-search-column:nth-child(2) {
        max-width: 100%;
    }

    .address-top {
        display: block;
        margin-bottom: 30px;
    }

    .address__title {
        margin-bottom: 45px;
        text-align: center;
    }

    .address__title:after {
        left: 50%;
        margin-left: -68px;
        bottom: -20px;
    }

    .address-selectors {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .address-selectors__btn {
        width: 160px;
        margin: 0 10px;
    }

    .address-row {
        display: block;
    }

    .address-column {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .mainnews {
        padding: 40px 0;
    }

    .mainnews-top-row {
        display: block;
    }

    .mainnews-top__text {
        margin-bottom: 15px;
        padding-right: 0;
    }

    .feedback-column__title {
        text-align: center;
    }

    .feedback-column__title:after {
        left: 50%;
        margin-left: -36px;
    }

    .feedback {
        padding: 50px 0;
    }

    .footer-row {
        display: block;
    }

    .footer-social {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-copyright {
        text-align: center;
        margin-bottom: 15px;
        padding: 0;
    }

    .footer-form-link {
        text-align: center;
        margin-bottom: 15px;
        font-size: 12px;
    }

    .footer-develop {
        text-align: center;
    }

    .footer {
        padding: 25px 0;
    }

    .smartglass {
        padding-top: 50px;
    }

    .news-item__image {
        position: static;
        width: 100%;
        height: 300px;
    }

    .news-item-content {
        padding: 20px;
    }

    .content-images {
        margin: 0 -8px;
    }

    .content-images-column {
        padding: 0 8px;
        margin-bottom: 16px;
    }

    .content-images__image {
        height: 208px;
    }

    .marking-designations__image1,
    .marking-designations__image2 {
        display: none;
    }

    .marking-designations {
        margin-top: 0;
        padding-left: 0;
    }

    .content {
        padding-bottom: 40px;
    }

    .gallery-item {
        height: 140px;
    }

    .city-choose-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media only screen and (max-width: 479px) {
    .promo {
        background-image: url(../images/bg-promo-mobile.jpg);
    }

    .header-logo__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
    }

    .header-logo__title {
        font-size: 13px;
    }

    .header-logo__title {
        max-width: 230px;
    }

    .header-menu__open {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20px;
        flex: 0 0 20px;
    }

    .promo-switch-bor {
        width: 11%;
        -webkit-transform: skew(25deg, 0);
        -ms-transform: skew(25deg, 0);
        transform: skew(25deg, 0);
    }

    .promo-switch-bor .promo-switch-mouse {
        right: -35px;
        top: 190px;
        -webkit-transform: skew(-25deg, 0);
        -ms-transform: skew(-25deg, 0);
        transform: skew(-25deg, 0);
    }

    .promo-switch-agc {
        width: 11%;
        -webkit-transform: skew(-25deg, 0);
        -ms-transform: skew(-25deg, 0);
        transform: skew(-25deg, 0);
    }

    .promo-switch-agc .promo-switch-mouse {
        left: -35px;
        top: 190px;
        -webkit-transform: skew(25deg, 0);
        -ms-transform: skew(25deg, 0);
        transform: skew(25deg, 0);
    }

    .smartglass-carousel .slick-dots li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 8px;
    }

    .smartglass-item__text {
        font-size: 15px;
        line-height: 19px;
    }

    .address-filter {
        display: block;
    }

    .address-filter-column {
        max-width: 100%;
        padding-right: 0;
    }

    .address-filter-column:first-child {
        margin-bottom: 15px;
    }

    .address-selectors {
        margin: 0 -8px;
    }

    .address-selectors__btn {
        width: 50%;
        margin: 0 8px;
    }

    .promo-switch-mouse {
        display: none;
    }

    .promo-logo-mobile-click {
        display: block;
    }

    .promo-logo-mobile-click .promo-switch-mouse {
        display: block;
    }

    .promo-top-column.active .promo-logo-mobile-click {
        display: none;
    }

    .promo-switch-mouse__icon {
        width: 45px;
    }

    .promo-top-column {
        width: 100%;
    }

    .promo-top-column_2 {
        width: auto;
    }

    .promo-tech {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        line-height: 1.4;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        max-width: 250px;
        white-space: normal;
    }

    .promo-tech {
        text-align: right;
    }

    .promo-logo-mobile-click {
        left: -5px;
    }

    .smartglass-item__type {
        background-color: rgba(228, 0, 70, 0.9);
    }

    .smartglass-item__type:after {
        border-color: rgba(228, 0, 70, 0.9) transparent transparent transparent;
    }

    .address-column:nth-child(n+4) {
        display: none;
    }

    .address-row.load-all .address-column:nth-child(n+4) {
        display: block;
    }

    .address-item.active {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #dadada;
    }

    .address-item.active .address-item__number {
        background: transparent;
        color: #e40046;
    }

    .partner {
        padding: 40px 0;
    }

    .partner__text {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 26px;
    }

    .feedback-form__btn {
        width: 100%;
    }

    .feedback-office-load {
        display: block;
        margin-top: 15px;
    }

    .feedback-office-item:nth-child(n+4) {
        display: none;
    }

    .feedback-offices.load-all .feedback-office-item:nth-child(n+4) {
        display: block;
    }

    .mainnews-mobile-carousel {
        margin-bottom: 15px;
    }

    .mainnews-mobile-carousel .slick-dots {
        bottom: -30px;
    }

    .mainnews-column {
        margin: 0;
        max-width: 100%;
    }

    .mainnews-item__image {
        height: 220px;
    }

    .news-item__image {
        height: 250px;
    }

    .header_static .header-logo {
        padding-bottom: 0;
    }

    .promoslider-item__text {
        font-size: 15px;
        line-height: 24px;
    }

    .promoslider-item__title {
        font-size: 26px;
        line-height: 28px;
    }

    .marking-info-item__value {
        padding-right: 35px;
    }

    .marking-info-item__title:before {
        width: 21px !important;
    }

    .marking-info-item__title:after {
        left: -23px !important;
    }

    .content-images__image {
        height: 170px;
    }

    .gallery-item_video:after {
        width: 60px;
        height: 60px;
        background-size: cover;
    }

    .gallery-carousel {
        margin: 0 -8px;
    }

    .gallery-carousel-slide {
        padding: 0 8px;
    }

    .city-choose-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
}


@media (max-width: 1023px) {
	.header {
		padding: 10px 16px;
	}
	.header-logo__image {
		flex: 0 0 120px;
	}
}

@media (max-width: 767px) {
	.header {
		padding: 0 10px;
	}
	.header .center-wrapper {
		padding: 0;
	}
	.header-logo__image {
		flex: 0 0 120px;
	}
	.header-body {
		height: 46px;
	}
	.header-logo__image {
		flex: 0 0 96px;
	}

	.header .city {
		position: absolute;
		right: 40px;
		top: 7px;
	}
	.header .city__toggle {
		width: 20px;
		height: auto;
	}
	.header .city__toggle img {
		width: 20px;
		height: auto;
	}
}

@media only screen and (max-width: 374px) {
    .promo-feature-item {
        height: 42px;
    }

    .header-logo__title {
        max-width: 160px;
    }

    .promo-tech {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 237px;
        flex: 0 0 237px;
        max-width: 237px;
        font-size: 12px;
        text-align: left;
    }

    .promo-top-column_2 .promo-tech {
        text-align: right;
    }

    .promo-top-column_2 .promo-logo {
        padding-right: 0;
    }

    .promo-top-column_2 .promo-tech {
        padding-right: 0;
    }

    .promo-switch-mouse__title {
        font-size: 11px;
    }

    .promo-glass-content-inner {
        min-height: 260px;
    }

    .marking-info-item__value {
        font-size: 13px;
    }

    .marking-info-item__title {
        font-size: 12px;
    }

    .marking-info-item__value {
        padding-right: 28px;
    }

    .content-images__image {
        height: 140px;
    }

    .gallery-item {
        height: 100px;
    }
}

@media only screen and (max-width: 359px) {
    .promo-feature-item {
        height: 42px;
    }

    .promo-actions__btn {
        min-width: 137px;
    }

    .promo-tech {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
        flex: 0 0 200px;
        max-width: 200px;
    }
}

.top_menu_background {
    height: 60px;
    width: 100%;
    background-color: #001f6b;
}

.brand_desc {
    opacity: 1;
    max-width: 700px;
}

.brand_desc ul {
    list-style: disc;
    padding-left: 30px;
}

.brand_cities_promo .promo-actions__btn i {
    transform: rotate(180deg);
    margin-top: -10px;
}

.brand_all_cities_link {
    margin-left: 45px;
}


/* ============== MAIN BLOCK ================== */

.main_block {
    flex: 1 0 auto;
    position: relative;
}

.main_block:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(#e40046), to(transparent));
    background-image: -webkit-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: -o-linear-gradient(left, #e40046 0%, transparent 100%);
    background-image: linear-gradient(to right, #e40046 0%, transparent 100%);
    z-index: 10;
}


.main_block .top-block {
	position: relative;
	height: 640px;
	background: #000;
}
.main_block .top-block:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90.00deg, rgb(228, 0, 70) 66.6%,rgba(0, 0, 0, 0) 100%);
	z-index: 3;
}
.main_block .top-block_img {
	position: absolute;
	top: 0;
	left: calc(100% / 3 - 1px);
	right: 0;
	height: 100%;
	max-width: 1280px;
	z-index: 1;
}
.main_block .top-block_img img {
	display: block;
	width: 100%;
	height: 100%;
    object-fit: cover;
    object-position: center;
}
.main_block .top-block_inner {
	position: relative;
	width: calc(100% / 3);
	height: 640px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 96px 16px 48px;
	background: #000;
	z-index: 2;
}
.main_block .top-block_logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.main_block .top-block_logo img {
	display: block;
	margin: auto;
	max-width: 100%;
}
.main_block .top-block_title {
	display: block;
	margin: 44px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: #fff;
	text-align: center;
}
.main_block .top-block_links {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 82px 0 0;
}
.main_block .top-block_link {
	position: relative;
	display: block;
	color: #fff;
	padding: 0 12px;
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0;
	text-align: center;
}
.main_block .top-block_link + .top-block_link {
	margin-left: 85px;
}
.main_block .top-block_link:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: rgba(228, 0, 70, 0.89);
}
.main_block .top-block_link:hover:before {
	background: transparent;
}
.main_block .top-block_btn {
	display: block;
	height: 40px;
	margin: 62px 0 0;
	padding: 0 36px;
	border: 1px solid #fff;
	background: transparent;
	line-height: 38px;
	color: #fff;
	font-family: 'Inter';
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	text-align: center;
}
.main_block .top-block_btn:hover {
    border: 1px solid #E40046;
}
.main_block .top-block_plus {
	display: block;
	position: relative;
	margin: 35px 0 0;
	padding: 0 0 0 28px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0;
	text-align: center;
}
.main_block .top-block_plus:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 21px;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='21' height='18' viewBox='0 0 21 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9281 7.49473L6.31641 14.1064L3.89648 11.6865L1.47656 9.2666L0.738281 10.0049C0.332227 10.4109 0 10.7596 0 10.7842C0 10.8047 1.41504 12.2402 3.15 13.9752L6.2959 17.1211L13.65 9.76699C17.69 5.72695 21 2.39649 21 2.37598C21 2.35137 20.6719 2.00684 20.2699 1.60488L19.5439 0.878906L12.9281 7.49473Z' fill='%23E40046'/%3E%3C/svg%3E%0A");
	background-position: left center;
	background-repeat: no-repeat;
}

@media (max-width: 1359px) {
	.main_block .top-block_plus {
		padding: 0;
		width: 230px;
	}
	.main_block .top-block_plus:before {
		top: 1px;
		height: 18px;
	}
}

@media (max-width: 1299px) {
	.main_block .top-block_btn {
		margin-top: 52px;
	}
	.main_block .top-block_links {
		margin: 70px 0 0;
	}
	.main_block .top-block_link + .top-block_link {
		margin-left: 64px;
	}
}

@media (max-width: 1023px) {
	.main_block .top-block_logo {
		padding: 0 14px;
	}
	.main_block .top-block_inner {
		padding-left: 16px;
		padding-right: 16px;
	}
	.main_block .top-block_title {
		margin-top: 34px;
	}
	.main_block .top-block_btn {
		margin-top: 40px;
	}
	.main_block .top-block_links {
		flex-direction: column;
		align-items: center;
		margin: 34px 0 0;
	}
	.main_block .top-block_link + .top-block_link {
		margin: 3px 0 0;
	}
}

@media (max-width: 767px) {
	.main_block .top-block {
		height: 230px;
	}
	.main_block .top-block_img {
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		max-width: 100%;
	}
	.main_block .top-block_inner {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
		padding: 7px 9px;
		background: transparent;
		z-index: 2;
	}
	.main_block .top-block_logo {
		height: 24px;
		padding: 0;
		display: block;
	}
	.main_block .top-block_logo img {
		margin: 0;
		max-height: 100%;
	}
	.main_block .top-block_title {
		font-size: 12px;
		line-height: 12px;
		margin: 5px 76px 0 0;
		text-align: left;
	}
	.main_block .top-block_links {
		display: none;
	}
	.main_block .top-block_btn {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		right: 9px;
		bottom: 7px;
		width: 60px;
		height: 60px;
		margin: 0;
		padding: 0;
		border: none;
		font-family: 'Muller';
		font-weight: 400;
		font-size: 10px;
		line-height: 12px;
		letter-spacing: -0.2px;
		text-align: center;
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.7);
	}
	.main_block .top-block_btn:hover {
		border: none;
	}
	.main_block .top-block_plus {
		display: none;
	}
}

.main_block .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 640px;
}

.main_block .items .item {
    position: relative;
    width: 33.3333333%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    color: #fff;
    padding: 20px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .main_block .items .item {
        width: 100%;

        justify-content: flex-start;
        text-align: left;
        padding: 9px;
        padding-bottom: 7px;
    }
}

.main_block .items .item-img {
    content: "";
    background-size: cover !important;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.5s;
}

.main_block .items .item .item-1-img {
    background: url(/upload/images/img1.png) bottom 25% center no-repeat;
}

.main_block .items .item .item-2-img {
    background: url(/upload/images/img2.png) bottom 28% center no-repeat;
}

.main_block .items .item .item-3-img {
    background: url(/upload/images/img3.png) bottom 20% center no-repeat;
}

@media (max-width: 1299px) {
	.main_block .items .item .item-1-img {
		background: url(/upload/images/img1.png) bottom 5% center no-repeat;
	}

	.main_block .items .item .item-2-img {
		background: url(/upload/images/img2.png) bottom 8% center no-repeat;
	}

	.main_block .items .item .item-3-img {
		background: url(/upload/images/img3.png) bottom 0% center no-repeat;
	}
}

.main_block .items .item:hover .item-3-img {
    /*filter: blur(5px);*/
}

.main_block .items .item > div:not(.item-img) {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.main_block .items .item .name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .main_block .items .item .name {
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 0;
    }
	.main_block .items .item .item-1-img {
		background-position: center center;
	}

	.main_block .items .item .item-2-img {
		background-position: center center;
	}

	.main_block .items .item .item-3-img {
		background-position: center center;
	}

	.main_block .items {
		height: auto;
	}
	.main_block .items .item {
		height: 230px;
	}
}

.main_block .items .item .logo {
    margin-bottom: 27px;
    height: 60px;
}

@media (max-width: 767px) {
    .main_block .items .item .logo {
        order: -1;
        transform: scale(0.3);
        transform-origin: left bottom;
        margin-bottom: 5px;
    }
}

.main_block .items .item .logo svg,
.main_block .items .item .logo img {
    max-width: 100%;
    max-height: 100%;
}

.main_block .items .item .hidden {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s;
    overflow: hidden;
}

@media (max-width: 767px) {
    .main_block .items .item .hidden {
        display: none;
    }
}

.main_block .items .item:hover .hidden {
    max-height: 500px;
    opacity: 1;
}

.main_block .items .item .hidden .text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.main_block .items .item .hidden .text {

}

.main_block .items .item .hidden .nav {
    margin-bottom: 38px;
}

.main_block .items .item .hidden .nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 991px) {
    .main_block .items .item .hidden .nav ul {
        flex-direction: column;
    }
}

.main_block .items .item .hidden .nav ul li {
    margin: 0 20px;
}

@media (max-width: 991px) {
    .main_block .items .item .hidden .nav ul li {
        margin-bottom: 14px;
    }
}

.main_block .items .item .hidden .nav ul li a {
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    border-bottom: 3px solid #E40046;
}

.main_block .items .item .hidden .nav ul li a:hover {
    border-bottom: 3px solid transparent;
}

.main_block .items .item .button {

}

@media (max-width: 767px) {
    .main_block .items .item .button {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.main_block .items .item .button a {
    display: table;
    margin: 0 auto;
    font-size: 16px;
    line-height: 30px;
    border: 1px solid #fff;
    color: #fff;
	font-family: 'Inter';
    text-decoration: none;
    padding: 4px 36px;
}

@media (max-width: 767px) {
    .main_block .items .item .button a {
        padding: 0px;
		font-family: 'Muller';
		font-weight: 400;
		font-size: 10px;
		letter-spacing: -0.2px;
		width: 60px;
		height: 60px;
		line-height: 20px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgb(0 0 0 / 50%);
        border: 0;
    }
}

.main_block .items .item .button a:hover {
    border: 1px solid #E40046;
}

@media (max-width: 767px) {
    .main_block .items .item .button a:hover {
        border: 0;
        background: rgb(0 0 0 / 100%);
    }
}

.main_block .items .item .button a svg {
    display: none;
}

@media (max-width: 767px) {
    .main_block .items .item .button a svg {
        display: block;
    }
}

/* ============== MAIN BLOCK [END] ================== */

/* ============== CITY SELECTOR IN FORM ================== */

.form-city-select.city-modal {
    top: 0;
}

.form-city-select .city-choose-list {
    max-height: 115px;
}

.form-city-select-block .select-title,
.form-branch-select-block .select-title {
    border: 1px solid #dadada;
}

/* ============== CITY SELECTOR IN FORM [END] ================== */

#faq {
    padding: 65px 0 85px 0;
    background: #fff;
}

@media only screen and (max-width: 639px) {
    #faq {
        padding: 50px 0;
    }
}


.history-video {
	position: relative;
	padding: 50px 0;
	background-color: #48494D;
}
	.history-video_inner {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		max-width: 1220px;
		margin: 0 auto;
		border: 4px solid #fff;
		background-color: #fff;
	}
	.history-video_info {
		flex: 0 1 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 0 20px 12px 52px;
	}
	.history-video_title {
		position: relative;
		display: block;
		margin: 0 0 50px;
		font-size: 40px;
		line-height: 56px;
		font-weight: 700;
		font-family: 'Inter';
		color: #333333;
	}
	.history-video_title:after {
		content: '';
		display: block;
		position: absolute;
		bottom: -31px;
		left: 0;
		width: 76px;
		height: 2px;
		background-color: #e40046;
	}
	.history-video_img {
		position: relative;
		flex: 0 0 611px;
		cursor: pointer;
	}
	.history-video_img iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 5;
	}
	.history-video_img img {
		display: block;
		max-width: 100%;
	}
	.history-video_img:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 60px;
		height: 84px;
		margin: -42px 0 0 -20px;
		background-image: url("data:image/svg+xml,%3Csvg width='60' height='84' viewBox='0 0 60 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.00001 2.34015L58.2441 42L1 81.6598L1.00001 2.34015Z' stroke='%23E40046' stroke-width='2'/%3E%3C/svg%3E%0A");
		background-position: center;
		background-repeat: no-repeat;
		z-index: 1;
	}

@media (max-width: 1299px) {
	.history-video {
		padding: 40px 0;
	}
	.history-video_inner {
		max-width: 915px;
		border: 3px solid #fff;
	}
	.history-video_info {
		padding: 0 20px 0 40px;
	}
	.history-video_title {
		font-size: 30px;
		line-height: 42px;
		margin: 0 0 44px;
	}
	.history-video_title:after {
		bottom: -24px;
		width: 58px;
		height: 2px;
	}
	.history-video_img {
		flex: 0 0 50%;
	}
	.history-video_img:before {
		width: 64px;
		height: 64px;
		margin: -32px 0 0 -22px;
		background-size: auto 64px;
	}
}
@media (max-width: 1023px) {
	.history-video_info {
		padding: 0 10px 0 30px;
	}
	.history-video_title {
		margin: 0 0 36px;
	}
}
@media (max-width: 767px) {
	.history-video {
		display: block;
		padding: 35px 0;
	}
	.history-video_inner {
		display: block;
		max-width: 100%;
		border: 4px solid #fff;
	}
	.history-video_info {
		padding: 22px 10px 22px 29px;
	}
	.history-video_title {
		font-size: 22px;
        line-height: 32px;
        font-weight: 700;
        margin: 0 0 13px;
        max-width: 300px;
	}
	.history-video_title:after {
		bottom: -13px;
		width: 48px;
		height: 2px;
	}
	.history-video_img:before {
		width: 40px;
		height: 54px;
		margin: -27px 0 0 -14px;
		background-size: auto 54px;
	}
}