/**
 * Swiper 4.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 1, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, fr om(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, fr om(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, fr om(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, fr om(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    left: 0;
    top: 0;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

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

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

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-input-placeholder {
    color: #000;
    opacity: 1;
}

*:-moz-placeholder {
    color: #000;
    opacity: 1;
}

*::-moz-placeholder {
    color: #000;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #000;
    opacity: 1;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100%;
}

body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    min-height: 100%;
    font-family: 'AvenirNextCyrRegular', sans-serif;
    padding: 0;
    line-height: 1.3;
}

main {
    position: relative;
}

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

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

input {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal !important;
}

hr {
    margin: 0;
}

video {
    max-width: 100%;
}

img {
    max-width: 100%;
}

b {
    font-family: 'AvenirNextCyrBold', sans-serif;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .mb-30-sm {
        margin-bottom: 30px !important;
    }
}

.color-brand {
    color: #990099;
}

.color-white {
    color: #fff !important;
}

.btn {
    text-transform: uppercase;
    border: none;
    outline: none !important;
    font-family: 'AvenirNextCyrDemi', sans-serif;
    font-size: 22px;
    font-weight: normal;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: 55px;
    padding-left: 30px;
    padding-right: 30px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 3.5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 1200px) {
    .btn {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .btn {
        font-size: 15px;
        height: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .btn {
        height: 45px;
        padding-left: 20px;
        padding-right: 20px;
        width: 245px !important;
    }
}

.btn:hover {
    color: #fff;
    background: rgba(153, 0, 153, 0.8);
}

.btn-primary {
    background: #990099;
    color: #fff;
}

.btn-border {
    border: 2px solid #990099;
    color: #990099;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

@media (max-width: 1023px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}

.nav-toggle {
    display: none;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    padding: 0;
    position: relative;
}

@media (max-width: 767px) {
    .nav-toggle {
        display: block;
    }
}

.nav-toggle span {
    display: block;
    width: 36px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #fff;
    -webkit-transform-origin: 4px 0px;
    -ms-transform-origin: 4px 0px;
    transform-origin: 4px 0px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-toggle span:first-child {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    margin-top: 5px;
}

.nav-toggle span:nth-last-child(2) {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

.nav-toggle.on span {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 1;
}

.nav-toggle.on span:nth-last-child(1) {
    -webkit-transform: rotate(45deg) translate(-10px, -14px);
    -ms-transform: rotate(45deg) translate(-10px, -14px);
    transform: rotate(45deg) translate(-10px, -14px);
}

.nav-toggle.on span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg) translate(-6px, 11px);
    -ms-transform: rotate(-45deg) translate(-6px, 11px);
    transform: rotate(-45deg) translate(-6px, 11px);
}

.nav-toggle.on span:nth-last-child(3) {
    opacity: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.header {
    padding-top: 65px;
    height: 175px;
}

@media (max-width: 1023px) {
    .header {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .header {
        height: 80px;
        padding: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header-scrolled {
    height: 80px;
    z-index: 100;
    background: rgba(2, 3, 7, 0.9);
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-scrolled .header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-scrolled .header__inner__body {
    margin-bottom: 0;
}

.header-scrolled .header__logo {
    margin-bottom: 0;
    width: 130px;
}

.header-scrolled .header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: auto;
}

@media (max-width: 1200px) {
    .header-scrolled .header-nav {
        width: auto;
    }
}

.header-scrolled .header__contact {
    margin-bottom: 0;
    margin-right: 0px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

@media (max-width: 1200px) {
    .header-scrolled .header__contact {
        margin-right: 30px;
    }
}

.header-scrolled .header__contact__link {
    font-size: 14px;
    margin-left: 30px;
}

.header-scrolled .header__contact__link img {
    margin-right: 15px;
}

.header-scrolled .header__contact__link--phone img {
    width: 11px;
}

.header-scrolled .header__contact__link--mail img {
    width: 15px;
}

.header-scrolled .header-nav__menu {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 50px;
}

@media (max-width: 1200px) {
    .header-scrolled .header-nav__menu {
        display: none;
    }
}

.header-scrolled .header-nav__menu li a {
    font-size: 14px;
}

.header-scrolled .nav-toggle {
    display: none;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
}

@media (max-width: 1200px) {
    .header-scrolled .nav-toggle {
        display: block;
    }
}

.header__inner {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .header__inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

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

@media (max-width: 1023px) {
    .header__inner__body {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .header__inner__body {
        margin-bottom: 0px;
    }
}

.header__logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .header__logo {
        margin-bottom: 0;
        width: 130px;
    }
}

.header__logo .logo-brand {
    top: -8px;
    position: relative;
}

@media (max-width: 1200px) {
    .header__logo .logo-brand {
        width: 130px;
    }
}

@media (max-width: 767px) {
    .header__logo .logo-brand {
        top: -5px;
    }
}

.header__contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .header__contact {
        display: none;
    }
}

.header__contact__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 65px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    white-space: nowrap;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 1200px) {
    .header__contact__link {
        font-size: 18px;
    }
}

@media (max-width: 1023px) {
    .header__contact__link {
        margin-left: 30px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .header__contact__link {
        font-size: 13px;
    }
}

.header__contact__link:first-child {
    margin-left: 0;
}

.header__contact__link:hover {
    opacity: 0.8;
    color: #fff;
}

.header__contact__link img {
    display: block;
    margin-right: 25px;
}

@media (max-width: 1200px) {
    .header__contact__link img {
        margin-right: 20px;
    }
}

@media (max-width: 1023px) {
    .header__contact__link img {
        margin-right: 15px;
    }
}

@media (max-width: 1023px) {
    .header__contact__link--phone img {
        width: 11px;
    }
}

@media (max-width: 1023px) {
    .header__contact__link--mail img {
        width: 15px;
    }
}

@media (max-width: 767px) {
    .header-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.header-nav__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 80%;
}

@media (max-width: 767px) {
    .header-nav__menu {
        display: none;
    }
}

.header-nav__menu li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px;
}

.header-nav__menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .header-nav__menu a {
        font-size: 13px;
    }
}

.header-nav__menu a:hover {
    opacity: 0.8;
    color: #fff;
}

.header-nav a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.sidebar-nav {
    position: fixed;
    background: rgba(2, 3, 7, 0.9);
    z-index: 100;
    right: 0;
    width: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 0;
    top: 80px;
    overflow: hidden;
    display: none;
}

@media (max-width: 1200px) {
    .sidebar-nav {
        display: block;
    }
}

.sidebar-nav.show {
    height: auto;
    display: none;
}

@media (max-width: 1200px) {
    .sidebar-nav.show {
        display: block;
    }
}

.sidebar-nav__menu__list {
    list-style-type: none;
    padding: 0;
    padding: 20px;
    margin: 0;
}

.sidebar-nav__menu__list li {
    margin-top: 20px;
}

.sidebar-nav__menu__list li:first-child {
    margin-top: 0;
}

.sidebar-nav__menu__list li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

.sputnik {
    background: url(../img/sputnik.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    width: 456px;
    height: 249px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -195px;
    max-width: 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .sputnik {
        margin-top: -webkit-calc(-195px + 80px);
        margin-top: calc(-195px + 80px);
        max-width: 40%;
    }
}

.section-first {
    background: #020307 url(../img/bg-main.jpg) no-repeat 0 60px;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    min-height: 589px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 350px;
    padding-bottom: 105px;
    font-size: 22px;
}

@media (max-width: 1200px) {
    .section-first {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .section-first {
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-top: 300px;
        padding-bottom: 65px;
    }
}

@media (max-width: 767px) {
    .section-first {
        padding-bottom: 30px;
        background-position: 0 70px;
        padding-top: 200px;
        font-size: 16px;
    }
}

.section-first__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 70px;
    position: relative;
}

@media (max-width: 1023px) {
    .section-first__inner {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-first__inner {
        display: block;
    }
}

.section-first__body {
    position: relative;
}

@media (max-width: 767px) {
    .section-first__body {
        margin-bottom: 30px;
    }
}

.section-first__cat {
    font-size: 22px;
    font-family: 'AvenirNextCyrDemi', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .section-first__cat {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .section-first__cat {
        font-size: 15px;
    }
}

.section-first__title {
    font-size: 50px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .section-first__title {
        font-size: 45px;
    }
}

@media (max-width: 1023px) {
    .section-first__title {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .section-first__title {
        font-size: 28px;
    }
}

.section-first__info {
    margin-left: 87px;
    max-width: 289px;
    position: relative;
    top: 52px;
}

@media (max-width: 767px) {
    .section-first__info {
        margin-left: 0;
        max-width: 100%;
        top: auto;
    }
}

.section-first__info__date {
    font-size: 22px;
    font-family: 'AvenirNextCyrDemi', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .section-first__info__date {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .section-first__info__date {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-first__info__date {
        font-size: 12px;
        text-align: left;
    }
}

.section-first__info__date--krasnoyarsk {
    letter-spacing: 6.5px;
}

.section-first__info__title {
    font-size: 41px;
    text-transform: uppercase;
    letter-spacing: 9px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: 40px;
    line-height: 1;
    text-align: center;
}

@media (max-width: 1200px) {
    .section-first__info__title {
        font-size: 36px;
    }
}

@media (max-width: 1023px) {
    .section-first__info__title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-first__info__title {
        font-size: 23px;
        text-align: left;
    }
}

.section-first__info__title--krasnoyarsk {
    font-size: 29px;
    letter-spacing: 5px;
}

@media (max-width: 1200px) {
    .section-first__info__title--krasnoyarsk {
        font-size: 27px;
    }
}

@media (max-width: 1023px) {
    .section-first__info__title--krasnoyarsk {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .section-first__info__title--krasnoyarsk {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .section-first__info .btn {
        margin-left: auto;
        margin-right: auto;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.section-first__btn {
    width: 100%;
}

.section-first__item {
    padding-left: 45px;
    padding-right: 45px;
}

@media (max-width: 767px) {
    .section-first__item {
        padding-left: 0;
        padding-right: 0;
    }
}

.section-first__item__title {
    color: #e211e2cf;
    line-height: 1;
    margin-bottom: 30px;
    font-size: 30px;
    font-family: 'AvenirNextCyrBold', sans-serif;
}

@media (max-width: 1200px) {
    .section-first__item__title {
        font-size: 28px;
    }
}

@media (max-width: 1023px) {
    .section-first__item__title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .section-first__item__title {
        font-size: 17px;
    }
}

.section-first__item__text {
    padding-right: 400px;
}

@media (max-width: 1200px) {
    .section-first__item__text {
        padding-right: 270px;
    }
}

@media (max-width: 767px) {
    .section-first__item__text {
        padding-right: 0;
    }
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 1200px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.section__title {
    font-family: 'AvenirNextCyrBold', sans-serif;
    font-size: 36px;
    color: #990099;
    margin-bottom: 42px;
}

@media (max-width: 1200px) {
    .section__title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section__title {
        font-size: 28px;
    }
}

.section--about-service {
    position: relative;
}

@media (max-width: 767px) {
    .section--about-service {
        padding-bottom: 75px;
    }
}

.about-service-inner {
    padding-right: 550px;
}

@media (max-width: 1200px) {
    .about-service-inner {
        padding-right: 370px;
    }
}

@media (max-width: 1023px) {
    .about-service-inner {
        padding-right: 270px;
    }
}

@media (max-width: 767px) {
    .about-service-inner {
        padding-right: 0;
    }
}

.about-service-text {
    padding-left: 45px;
    font-size: 22px;
    margin-bottom: 100px;
}

@media (max-width: 1200px) {
    .about-service-text {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-service-text {
        padding-left: 0;
        margin-bottom: 45px;
        font-size: 16px;
    }
}

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

.about-list {
    position: relative;
}

.about-list:before {
    content: '';
    display: none;
    width: 1250px;
    height: 746px;
    background: url(../img/bg-about.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    top: -35px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .about-list:before {
        display: block;
        background: url(../img/bg-about-s.png) no-repeat 0 0;
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
        top: -90px;
    }
}

.about-list__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 105px;
    position: relative;
}

@media (max-width: 767px) {
    .about-list__inner {
        display: block;
        margin-bottom: 40px;
    }
}

.about-list__inner:before {
    content: '';
    display: block;
    width: 1250px;
    height: 746px;
    background: url(../img/bg-about.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    top: -35px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .about-list__inner:before {
        display: none;
    }
}

.about-list__item {
    position: relative;
}

@media (max-width: 767px) {
    .about-list__item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-top: 30px;
    }
}

.about-list__item__ico {
    margin-bottom: 20px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 767px) {
    .about-list__item__ico {
        width: 138px;
        margin-bottom: 0;
    }
}

.about-list__item:hover .about-list__item__ico {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.about-list__item__title {
    font-size: 22px;
    line-height: 130%;
    color: #010613;
    font-family: 'AvenirNextCyrDemi', sans-serif;
}

@media (max-width: 1023px) {
    .about-list__item__title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-list__item__title {
        margin-left: 10px;
    }
}

.about-list__item:first-child {
    margin-top: 0;
}

.about-list__item:nth-last-child(2) {
    margin-top: 190px;
}

@media (max-width: 767px) {
    .about-list__item:nth-last-child(2) {
        margin-top: 30px;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {
    .about-list__item:nth-last-child(2) .about-list__item__ico {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}

.about-list__item:nth-last-child(2) .about-list__item__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .about-list__item:nth-last-child(2) .about-list__item__title {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        text-align: right;
        margin-left: 0;
    }
}

.about-list__item:last-child {
    text-align: right;
}

@media (max-width: 767px) {
    .about-list__item:last-child {
        text-align: left;
    }
}

.get-booklet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.about-service-shape {
    content: '';
    display: block;
    background: url(../img/shape-1.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    width: 640px;
    max-width: 45%;
    height: 632px;
    position: absolute;
    right: 0;
    top: -180px;
}

@media (max-width: 1200px) {
    .about-service-shape {
        max-width: 40%;
    }
}

@media (max-width: 1023px) {
    .about-service-shape {
        width: 270px;
        height: 269px;
        top: -60px;
    }
}

@media (max-width: 767px) {
    .about-service-shape {
        max-width: 50%;
    }
}

.section--wh ere {
    padding-bottom: 0;
    padding-top: 0;
    overflow: hidden;
}

.where__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .where__row {
        display: block;
    }
}

.where__item {
    position: relative;
}

.where__item__title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(175, 1, 173, 0.8);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
    font-size: 40px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
}

.where__item__title:hover {
    opacity: 0;
}

.where__item__title h3 {
    margin: 0;
}

.slider-wh ere-needed {
    overflow: hidden;
    position: relative;
}

.slider-wh ere-needed__slide {
    position: relative;
}

.slider-wh ere-needed__slide img {
    width: 100%;
}

.slider-where-needed__title {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    width: 100%;
    height: 100%;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(175, 1, 173, 0.8);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .slider-where-needed__title {
        left: 0;
        height: auto;
        bottom: 0;
        top: auto;
        margin: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background: rgba(2, 3, 7, 0.6);
        padding: 10px 20px;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.slider-where-needed__title h3 {
    color: #fff;
    font-size: 40px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    margin: 0;
    max-width: 285px;
}

@media (max-width: 1200px) {
    .slider-where-needed__title h3 {
        font-size: 30px;
    }
}

@media (max-width: 1023px) {
    .slider-where-needed__title h3 {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .slider-where-needed__title h3 {
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .slider-where-needed .swiper-pagination {
        display: none;
    }
}

.swiper-slide-active .slider-where-needed__title {
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    width: 31px;
    height: 31px;
    background: url(../img/slider-arrow.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    margin-top: -15px;
}

.swiper-button-prev {
    left: 17px;
}

.swiper-button-next {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    right: 17px;
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.section--about-event {
    background: #03081c url(../img/bg-about-event.png) no-repeat 0 0;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    color: #fff;
    padding-bottom: 75px;
}

@media (max-width: 767px) {
    .section--about-event {
        padding-bottom: 30px;
        margin-bottom: -30px;
    }
}

.slider-about-event {
    position: relative;
    overflow: hidden;
}

.slider-about-event .swiper-slide img {
    width: 100%;
}

.round-table {
    margin-top: 44px;
    margin-bottom: 250px;
    font-size: 22px;
    position: relative;
}

@media (max-width: 1200px) {
    .round-table {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .round-table {
        font-size: 16px;
        margin-bottom: 150px;
    }
}

.round-table__body {
    margin-bottom: 45px;
    position: relative;
}

.round-table__title {
    color: #e211e2cf;
    font-size: 30px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: 22px;
}

@media (max-width: 1200px) {
    .round-table__title {
        margin-bottom: 20px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .round-table__title {
        font-size: 24px;
    }
}

.round-table__questions {
    padding-left: 45px;
    padding-right: 45px;
    font-size: 22px;
    position: relative;
}

@media (max-width: 1200px) {
    .round-table__questions {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .round-table__questions {
        font-size: 16px;
        padding-left: 0;
        padding-right: 0;
    }
}

.round-table__questions__title {
    color: #e211e2cf;
    font-size: 30px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: 22px;
}

@media (max-width: 1200px) {
    .round-table__questions__title {
        margin-bottom: 20px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .round-table__questions__title {
        font-size: 24px;
    }
}

.round-table__questions__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .round-table__questions__list {
        display: block;
    }
}

.round-table__questions__list__col {
    margin-left: 120px;
    width: 100%;
}

@media (max-width: 767px) {
    .round-table__questions__list__col {
        margin-left: 0;
    }
}

.round-table__questions__list__col:first-child {
    margin-left: 0;
}

.round-table__questions__list__item {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .round-table__questions__list__item {
        margin-bottom: 13px;
    }
}

.round-table__questions__list__item:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .round-table__questions__list__item:last-child {
        margin-bottom: 13px;
    }
}

.round-table__questions__list__item__number {
    color: #e211e2cf;
    font-size: 45px;
    margin-right: 25px;
    line-height: 1;
}

@media (max-width: 767px) {
    .round-table__questions__list__item__number {
        font-size: 30px;
        margin-right: 20px;
    }
}

.round-table__questions__list__item__text {
    padding-top: 2px;
}

.round-table:before {
    content: '';
    display: block;
    background: url(../img/bg-about-event-2.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    width: 1709px;
    height: 963px;
    position: absolute;
    right: -120px;
    top: 300px;
    position: absolute;
}

@media (max-width: 1200px) {
    .round-table:before {
        width: 1209px;
        height: 682px;
        right: 0;
        top: 400px;
    }
}

@media (max-width: 767px) {
    .round-table:before {
        width: 455px;
        height: 257px;
        top: 675px;
    }
}

.program {
    position: relative;
}

.program__title {
    font-size: 50px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: 135px;
}

@media (max-width: 1200px) {
    .program__title {
        font-size: 40px;
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .program__title {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

.program__list-wrapper {
    position: relative;
}

.program__list {
    margin-bottom: 80px;
}

@media (max-width: 1023px) {
    .program__list {
        margin-bottom: 50px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.program__list__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 1023px) {
    .program__list__row {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
}

.program__list__row--line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 0;
    display: block;
    width: 100%;
    height: 5px;
    background: url(../img/line.png) repeat-x 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 1023px) {
    .program__list__row--line:before {
        background: url(../img/line-v.png) repeat-y 0 0;
        -webkit-background-size: contain;
        background-size: contain;
        height: 100%;
        width: 5px;
        left: 50%;
        margin-left: -2px;
    }
}

.program__list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 1023px) {
    .program__list__item {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.program__list__point {
    border: 5px solid #990099;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #fff;
    width: 11px;
    height: 11px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
}

@media (max-width: 1023px) {
    .program__list__point {
        margin: 0 25px;
    }
}

@media (max-width: 374px) {
    .program__list__point {
        margin: 0 10px;
    }
}

.program__list__point .gift {
    position: absolute;
    background: url(../img/gift.png) repeat-x 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    width: 47px;
    height: 38px;
    top: -19px;
    left: -23px;
}

@media (max-width: 767px) {
    .program__list__point .gift {
        display: none;
        width: 28px;
        height: 23px;
        top: -5px;
        left: -6px;
    }
}

.program__list__time {
    font-size: 45px;
    color: #e211e2cf;
}

@media (max-width: 767px) {
    .program__list__time {
        font-size: 30px;
    }
}

@media (max-width: 374px) {
    .program__list__time {
        font-size: 28px;
    }
}

.program__list__title {
    font-size: 18px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 1023px) {
    .program__list__title {
        padding: 0;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .program__list__title {
        font-size: 16px;
        height: 45px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 374px) {
    .program__list__title {
        font-size: 14px;
    }
}

.program__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 75px;
}

@media (max-width: 767px) {
    .program__btn {
        margin-bottom: 50px;
    }
}

.auditory__title {
    margin-bottom: 55px;
    font-size: 36px;
    font-family: 'AvenirNextCyrBold', sans-serif;
}

@media (max-width: 1200px) {
    .auditory__title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .auditory__title {
        font-size: 26px;
    }
}

.auditory__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    padding-left: 45px;
    padding-right: 45px;
}

@media (max-width: 1200px) {
    .auditory__list {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .auditory__list {
        padding-left: 0;
        padding-right: 0;
        display: block;
        font-size: 18px;
    }
}

.auditory__list__col {
    margin-left: 120px;
    width: 100%;
}

@media (max-width: 1200px) {
    .auditory__list__col {
        margin-left: 100px;
    }
}

@media (max-width: 1023px) {
    .auditory__list__col {
        margin-left: 70px;
    }
}

@media (max-width: 767px) {
    .auditory__list__col {
        margin-left: 0;
    }
}

.auditory__list__col:first-child {
    margin-left: 0;
}

.auditory__list__item {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .auditory__list__item {
        font-size: 16px;
    }
}

.auditory__list__item__first-letter {
    color: #990099;
    font-size: 35px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    line-height: 1;
    position: relative;
    margin-top: -8px;
    display: contents;
}

@media (max-width: 1200px) {
    .auditory__list__item__first-letter {
        font-size: 33px;
    }
}

@media (max-width: 767px) {
    .auditory__list__item__first-letter {
        font-size: 24px;
    }
}

.section--speakers {
    background: #e8e8e8;
    color: #000;
    position: relative;
}

.section--speakers:before {
    content: '';
    display: block;
    width: 909px;
    height: 1759px;
    max-width: 50%;
    background: url(../img/bg-speakers.png) no-repeat 0 0;
    -webkit-background-size: contain;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -270px;
}

@media (max-width: 1023px) {
    .section--speakers:before {
        margin-top: -200px;
    }
}

@media (max-width: 767px) {
    .section--speakers:before {
        width: 235px;
        height: 455px;
        margin-top: -140px;
        max-width: 60%;
    }
}

.list-type-square {
    font-size: 22px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 45px;
    padding-right: 45px;
}

@media (max-width: 1200px) {
    .list-type-square {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .list-type-square {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .list-type-square {
        padding-left: 0;
        padding-right: 0;
        display: block;
        font-size: 16px;
    }
}

.list-type-square__col {
    margin-left: 120px;
    width: 100%;
}

@media (max-width: 1200px) {
    .list-type-square__col {
        margin-left: 100px;
    }
}

@media (max-width: 1023px) {
    .list-type-square__col {
        margin-left: 80px;
    }
}

@media (max-width: 767px) {
    .list-type-square__col {
        margin-left: 0;
    }
}

.list-type-square__col:first-child {
    margin-left: 0;
}

.list-type-square__item {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.list-type-square__item:before {
    width: 10px;
    min-width: 10px;
    height: 10px;
    content: '';
    display: block;
    background: #990099;
    margin-right: 26px;
    margin-top: 9px;
}

@media (max-width: 1023px) {
    .list-type-square__item:before {
        margin-top: 7px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .list-type-square__item:before {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .list-type-square__item:last-child {
        margin-bottom: 0;
    }
}

.section--starring {
    padding-bottom: 0;
}

.participate-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 65px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .participate-link {
        margin-top: 50px;
    }
}

.clients-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .clients-list {
        margin-left: -7px;
        margin-right: -7px;
    }
}

.clients-list__item {
    width: 25%;
}

.clients-list__item img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section--location {
    padding-bottom: 0;
    padding-top: 0;
}

.map {
    position: relative;
}

@media (max-width: 767px) {
    .map {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .map .map-body-m {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}

.map-body {
    height: 630px;
    width: 100%;
}

@media (max-width: 767px) {
    .map-body {
        display: none;
    }
}

.map-body-m {
    height: 300px;
    width: 100%;
    display: none;
}

@media (max-width: 767px) {
    .map-body-m {
        display: block;
    }
}

.map-box-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -40px;
}

@media (max-width: 767px) {
    .map-box-wrapper {
        position: relative;
        top: 0;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media (max-width: 767px) {
    .map-box-wrapper .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.map-box {
    background: #990099;
    color: #fff;
    width: 388px;
    text-align: center;
    margin-left: auto;
    padding: 40px 0 35px;
    position: relative;
    z-index: 100;
}

@media (max-width: 1200px) {
    .map-box {
        width: 300px;
        padding: 35px 0 30px;
    }
}

@media (max-width: 1023px) {
    .map-box {
        width: 250px;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .map-box {
        width: 100%;
    }
}

.map-box__date {
    font-family: 'AvenirNextCyrDemi', sans-serif;
    font-size: 19px;
    margin-bottom: 18px;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1200px) {
    .map-box__date {
        font-size: 17px;
    }
}

@media (max-width: 1023px) {
    .map-box__date {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

.map-box__time {
    font-family: 'AvenirNextCyrDemi', sans-serif;
    font-size: 62px;
    margin-bottom: 18px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .map-box__time {
        font-size: 50px;
    }
}

@media (max-width: 1023px) {
    .map-box__time {
        font-size: 36px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .map-box__time {
        font-size: 28px;
    }
}

.map-box__hotel {
    font-size: 20px;
    margin-bottom: 18px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 1200px) {
    .map-box__hotel {
        font-size: 18px;
    }
}

@media (max-width: 1023px) {
    .map-box__hotel {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .map-box__hotel {
        font-size: 11px;
    }
}

.map-box__name {
    color: #e8c435;
    font-size: 30px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-bottom: -10px;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    margin-top: -5px;
}

@media (max-width: 1200px) {
    .map-box__name {
        font-size: 27px;
    }
}

@media (max-width: 1023px) {
    .map-box__name {
        font-size: 24px;
        margin-bottom: 20px;
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .map-box__name {
        font-size: 20px;
        max-width: 100%;
    }
}

.map-box__name--krasnoyarsk {
    max-width: 85%;
}

@media (max-width: 1023px) {
    .map-box__name--krasnoyarsk {
        font-size: 28px;
    }
}

.map-box__title {
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 33px;
}

@media (max-width: 1200px) {
    .map-box__title {
        font-size: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 1023px) {
    .map-box__title {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.map-box__address {
    font-size: 22px;
    line-height: 1.2;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .map-box__address {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .map-box__address {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .map-box__address {
        font-size: 11px;
    }
}

.map-box__address--krasnoyarsk {
    font-size: 20px;
    max-width: 85%;
}

@media (max-width: 1023px) {
    .map-box__address--krasnoyarsk {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .map-box__address--krasnoyarsk {
        font-size: 11px;
    }
}

.section--contacts {
    padding-bottom: 170px;
    background: url(../img/bg-contacts.jpg) no-repeat 0 0;
    -webkit-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1023px) {
    .section--contacts {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .section--contacts {
        padding-bottom: 50px;
    }
}

.contacts {
    text-align: center;
    color: #fff;
}

.contacts__title {
    font-size: 36px;
    font-family: 'AvenirNextCyrBold', sans-serif;
}

@media (max-width: 1200px) {
    .contacts__title {
        font-size: 30px;
    }
}

@media (max-width: 1023px) {
    .contacts__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .contacts__title {
        font-size: 22px;
    }
}

.contacts__subtitle {
    font-size: 36px;
    font-family: 'AvenirNextCyrBold', sans-serif;
    margin-top: 120px;
    margin-bottom: 38px;
}

@media (max-width: 1200px) {
    .contacts__subtitle {
        font-size: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 1023px) {
    .contacts__subtitle {
        font-size: 28px;
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .contacts__subtitle {
        font-size: 22px;
        margin-top: 40px;
    }
}

.contacts__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .contacts__list {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.contacts__list__link {
    position: relative;
    font-size: 25px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 60px;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .contacts__list__link {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .contacts__list__link {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .contacts__list__link {
        margin-left: 0;
        font-size: 16px;
    }
}

.contacts__list__link:before {
    margin-right: 22px;
    content: '';
    width: 44px;
    height: 44px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: #fff;
    display: block;
}

@media (max-width: 1200px) {
    .contacts__list__link:before {
        width: 34px;
        height: 34px;
        margin-right: 15px;
    }
}

.contacts__list__link--phone:before {
    background: #fff url(../img/ico-phone.png) no-repeat 50% 50%;
    -webkit-background-size: 16px auto;
    background-size: 16px auto;
}

@media (max-width: 767px) {
    .contacts__list__link--mail {
        margin-top: 20px;
    }
}

.contacts__list__link--mail:before {
    background: #fff url(../img/ico-mail.png) no-repeat 50% 50%;
    -webkit-background-size: 19px auto;
    background-size: 19px auto;
}

.contacts__list__link:first-child {
    margin-left: 0;
}

.contacts__list__link:hover {
    color: #fff;
    opacity: 0.8;
}

.submit-application {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -25px;
    z-index: 100;
    width: 100%;
}

.submit-application__btn {
    background: #990099;
    color: #fff;
    border: 2px solid #fff;
}

.footer {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding-top: 104px;
    padding-bottom: 37px;
}

@media (max-width: 1023px) {
    .footer {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .footer {
        font-size: 12px;
        padding-top: 70px;
        padding-bottom: 30px;
    }
}

.modal-reg-content {
    max-width: 450px;
    width: 100%;
    background: #F2F3F2;
    padding: 50px 30px 40px;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .modal-reg-content {
        padding: 30px 20px;
    }
}

.modal-reg-content .close {
    background: url(../img/close.png) no-repeat 50% 50%;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    width: 50px;
    height: 50px;
    opacity: 1;
    right: 0;
    position: absolute;
    top: 0;
    outline: 0 !important;
}

.modal-reg-content__title {
    font-family: 'AvenirNextCyrBold', sans-serif;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #212529;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .modal-reg-content__title {
        margin-bottom: 20px;
    }
}

.modal-reg-content__date {
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    text-transform: uppercase;
    color: #212529;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .modal-reg-content__date {
        margin-bottom: 30px;
        font-size: 16px;
    }
}

.modal-reg-content__form {
    margin: 0 auto;
    max-width: 312px;
    width: 100%;
}

.modal-reg-content__form .form-row {
    margin-bottom: 32px;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.modal-reg-content__form .form-control {
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 18px;
    color: #6C757D;
    padding: 0;
    background: none !important;
    border: 0;
    border-bottom: 1px solid #1A1A1A !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: auto;
}

@media (max-width: 767px) {
    .modal-reg-content__form .form-control {
        font-size: 16px;
    }
}

.modal-reg-content__form .invalid-feedback {
    position: absolute;
    bottom: -20px;
}

.modal-reg-content__form__btn {
    width: 200px;
    height: 60px;
    background: #990099;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0;
    outline: 0 !important;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .modal-reg-content__form__btn {
        height: 50px;
        width: 160px;
        margin-top: 30px;
    }
}

.modal-reg-content__form__btn:hover {
    color: #fff;
    background: rgba(153, 0, 153, 0.8);
}

.form-check {
    color: #6C757D !important;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.form-check a {
    text-decoration: none;
    color: #990099;
}

.form-check .checkbox-custom {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check .checkbox-custom input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-check .checkbox-custom input:checked ~ .checkmark {
    background-color: #C2C2C2;
}

.form-check .checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}

.form-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #C2C2C2;
}

.form-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.request-call {
    position: fixed;
    right: 20px;
    height: 60px;
    bottom: 208px;
    z-index: 10000;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .request-call {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        right: 10px;
    }
}

.request-call.on {
    display: none;
}

.request-call__btn {
    background: rgba(226, 17, 226, 0.8) url(../img/ico-phone-wh.png) no-repeat 50% 50%;
    -webkit-background-size: 21px 21px;
    background-size: 21px 21px;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 0;
    outline: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.request-call__btn:hover {
    background-color: #E211E2;
}

.request-call-box {
    position: fixed;
    right: -532px;
    bottom: 75px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .request-call-box {
        right: -100%;
        width: 100%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        top: 50%;
        bottom: auto;
    }
}

.request-call-box.show {
    right: 0;
}

.request-call-box__close {
    display: block;
    width: 58px;
    /* height: 100%;
    height: 320px; */
    cursor: pointer;
    background: #990099 url(../img/arr-r.png) no-repeat 50% 50%;
    -webkit-background-size: 24px 16px;
    background-size: 24px 16px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

@media (max-width: 767px) {
    .request-call-box__close {
        display: none;
    }
}

.request-call-box__close:hover {
    background-color: rgba(153, 0, 153, 0.8);
}

.request-call-form {
    width: 474px;
    padding-bottom: 40px;
    padding-top: 40px;
    min-height: 480px;
}

@media (max-width: 767px) {
    .request-call-form {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.request-call-form__title {
    font-family: 'AvenirNextCyrDemi', sans-serif;
    font-size: 22px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #990099;
    margin-bottom: 30px;
    text-align: center;
}

.request-call-form__btn {
    background: #990099 url(../img/ico-phone-wh.png) no-repeat 50% 50%;
    -webkit-background-size: 21px 21px;
    background-size: 21px 21px;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 0;
    outline: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.request-call-form__btn:hover {
    background-color: rgba(153, 0, 153, 0.8);
}

.request-call-form .close {
    background: url(../img/close.png) no-repeat 50% 50%;
    -webkit-background-size: 20px 20px;
    background-size: 20px 20px;
    width: 50px;
    height: 50px;
    opacity: 1;
    right: 0;
    position: absolute;
    top: 0;
    outline: 0 !important;
}

.request-call-form-content {
    max-width: 450px;
    width: 100%;
    background: #F2F3F2;
    padding: 50px 30px 40px;
    border: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .request-call-form-content {
        padding: 30px 20px;
    }
}

.request-call-form-content__form {
    margin: 0 auto;
    width: 100%;
    max-width: 312px;
}

@media (max-width: 767px) {
    .request-call-form-content__form {
        max-width: 100%;
    }
}

.request-call-form-content__form .form-row {
    margin-bottom: 32px;
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.request-call-form-content__form .form-control {
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 18px;
    color: #6C757D;
    padding: 0;
    background: none !important;
    border: 0;
    border-bottom: 1px solid #1A1A1A !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    height: auto;
}

@media (max-width: 767px) {
    .request-call-form-content__form .form-control {
        font-size: 16px;
    }
}

.request-call-form-content__form .invalid-feedback {
    position: absolute;
    bottom: -20px;
}

.select-question-title {
    color: #6C757D;
    font-family: 'AvenirNextCyrMedium', sans-serif;
    font-size: 18px;
}

.select-question {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.select-question input {
    width: 15px;
    margin-right: 10px;
    margin-top: 3px;
}

.select-question label {
    font-size: 14px;
}

/*--- Start Section Available ---*/
.section--available {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 100vw;
    overflow-x: hidden;
}

.available__wrap {

}

.available__top {
    background-color: #970094;
    position: relative;
    z-index: 1;
    padding: clamp(30px, 3.906vw, 50px) 0 0;
    text-align: center;
    color: #fff;
}

.available__top::before,
.available__top::after {
    content: '';
    background-color: #970094;
    min-width: 50vw;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    right: calc(100% - 1px);;
}

.available__top::after {
    right: auto;
    left: calc(100% - 1px);
}

.available__top strong {
    font-family: 'AvenirNextCyrBold', sans-serif;

}

.available__top .available-mobile strong {
    text-transform: lowercase;
}

.available__top--title {
    padding: 0 0 11px;
    margin: 0;
    font-size: clamp(27px, 2.813vw, 36px);
    line-height: 1.22;
}

.available__top--figure {
    margin: 0;
    padding: 0;
}

.available__top--img {
    width: 100%;
    max-width: 100px;
}

.available__top--desc {
    padding: 0;
    margin: 0;
    font-size: clamp(18px, 1.563vw, 20px);
    line-height: 1.25;
}

.available__box {
    display: none;
}

.available-mobile {

}

.available-mobile__item {

}

.available-mobile {
    padding: 30px 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

.available-mobile__item {
    border-left: 2px dashed #D8D8D8;
    padding: 6px 15px;
    text-align: left !important;
}

.available-mobile__tittle {
    padding: 0 0 5px;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    z-index: 1;
}

.available-mobile__tittle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border: 5px solid rgb(0, 204, 255);
    background: rgb(255, 255, 255);
    border-radius: 50%;
    position: absolute;
    z-index: 5;
    left: -24px;
    top: 3px;
}

.available-mobile__desc {
    padding: 0;
    margin: 0;
    font-size: clamp(14px, 1.25vw, 16px);
    line-height: 1.4;
}

.available__info {
    padding: 0 0 clamp(30px, 3.906vw, 50px);
}

.available__info--figure {
    margin: 0;
    /*width: 100%;*/
    padding: 0;
    text-align: center;
}

.available__info--img {
    width: 100%;
}

.available-mob {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.available-mob__item {
    flex: 0 0 calc(50% - 10px);
    width: calc(50% - 20px);
    border: 1px solid rgb(0, 204, 255);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: lowercase;
    font-size: 15px;
}

.available-mob__big {
    flex: 0 0 100%;
    width: 100%;
    padding-left: 70px;
    background-image: url("../img/antena.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 40px auto;
    display: block;
    border-color: transparent;
    text-transform: none;
    text-align: left;
}

@media (max-width: 767px) {
    .available__top--inner {
        border: 1px solid rgb(0, 204, 255);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 30px 20px;
        margin-top: 80px;
    }

    .available__top--figure {
        background: #970094;
        padding: 10px 20px;
        max-width: 140px;
        margin: -30px auto -80px;
        transform: translateY(-50%);
    }

    .available__top--img {
        max-width: 100px;
    }

    .available__top--desc strong {
        font-family: 'AvenirNextCyrRegular', sans-serif;
    }
}

@media (min-width: 768px) {
    .available__top {
        text-align: left;
    }

    .available__top--inner {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 15px;
        align-items: center;
    }

    .available__top--figure {
        padding-bottom: 0;
    }

    .available__top--img {
        max-width: 140px;
    }
}

@media (min-width: 1024px) {
    .available-mobile {
        display: none;
    }

    .available__box {
        overflow: hidden;
        margin: 0 -40px;
        display: block;
    }

    .available {
        display: flex;
        text-align: center;
        vertical-align: middle;
        justify-content: center;
        align-items: center;
        height: clamp(240px, 38vw, 440px);
    }

    .available__item {
        width: 100%;
        aspect-ratio: .98;
        background: rgba(217, 217, 217, 0.1);
        border-radius: 50%;
        position: relative;
        z-index: 1;
        display: inline-flex;
        margin: auto;
        padding: 50px;
    }

    .available__item--1 {
        max-width: 1050px;
        background: transparent;
        transform: rotate(-30deg);
    }

    .available__item--2 {
        max-width: 980px;
        transform: rotate(-3deg);
    }

    .available__item--3 {
        max-width: 791px;
        transform: rotate(1deg);
    }

    .available__item--more {
        position: absolute;
        z-index: 10;
        text-align: left;
    }

    .available__item--more::before {
        content: '';
        display: block;
        width: 36px;
        height: 36px;
        background: #00CCFF;
        border-radius: 50%;
        position: absolute;
        z-index: 15;
        top: 100%;
        right: 100%;
    }

    .available__item--more1 {
        transform: rotate(30deg);
        right: -130px;
        top: 290px;
    }

    .available__item--more2 {
        transform: rotate(33deg);
        right: -155px;
        top: 390px;
    }

    .available__last {
        max-width: 452px;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(32deg);
    }

    .available__inner {
        position: absolute;
        z-index: 5;
        display: block;
        text-align: center;
        width: 100%;
        transform: rotate(7deg);
        font-size: 15px;
    }

    .available__inner > div > span {
        letter-spacing: -0.4em;
    }

    #available__inner--1 {
        top: 33px;
        transform: rotate(7deg);
    }

    #available__inner--2 {
        top: 66px;
        transform: rotate(8deg);
    }

    #available__inner--3 {
        top: 110px;
        transform: rotate(11deg);
    }

    .available__inner--last {
        transform: rotate(0deg);
        top: 60px;
        left: 0;
    }

    .available__inner--last a {
        color: white;
    }
}

@media (min-width: 1440px) {
    .available__info--figure {
        margin: 0 -59px;
    }

    .available__info--img {
        max-width: 1609px;
        margin-left: -38px;
    }
}

/*---  End Section Available  ---*/

/*--- Start Section Available ---*/
.section--territories {
    background-image: url("../img/bg--section--territories2-mobile.jpg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

.territories__desctiption {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 180%;
    font-family: 'AvenirNextCyrBold', sans-serif;
    max-width: 760px;

}

.territories__desctiption--decore {
    display: inline-block;
    border: 1px solid rgb(151, 0, 148);
    /*border-radius: 20px;*/
    background: rgb(151, 0, 148);
    padding: 0 15px;
    margin-bottom: 2px;
}

.territories {
    display: none;
}

.section--territories .available-mobile__tittle strong {
    color: rgb(255, 255, 255);
}

@media (max-width: 1023px) {
    .section--territories {
        padding-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .section--territories {
        background-image: url("../img/bg--section--territories2.jpg");
        aspect-ratio: 1920 / 968;
        position: relative;
        z-index: 1;
    }

    .territories {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .territories__item {
        aspect-ratio: 1920 / 968;
        position: absolute;
        z-index: 5;
    }

    .territories__item--1 {
        top: 44%;
        left: 32.3%;
    }

    .territories__item--2 {
        top: 38%;
        left: 49%;
    }

    .territories__item--3 {
        top: 65.1%;
        left: 40.2%;
    }

    .territories__item--4 {
        top: 26.5%;
        left: 60.5%;
    }

    .territories__item--5 {
        top: 58%;
        left: 56.4%;
    }

    .territories__title {
        color: rgb(255, 255, 255);
        font-size: 15px;
        font-weight: 700;
        line-height: 18px;
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        gap: 10px;
        font-family: 'AvenirNextCyrBold', sans-serif;
    }

    .territories__title::before {
        content: '';
        display: block;
        width: 36px;
        height: 36px;
        background: #970094;
        border-radius: 50%;
    }

    .territories__item--2 .territories__title::before,
    .territories__item--5 .territories__title::before {
        width: 24px;
        height: 24px;
        background: #00CCFF;
    }

    .territories__desctiption--decore {
        margin-bottom: 0;
    }
}

@media (min-width: 1600px) {
    .territories__item--1 {
        top: 43.3%;
        left: 33.3%;
    }

    .territories__item--2 {
        top: 38%;
        left: 50%;
    }

    .territories__item--3 {
        top: 65.1%;
        left: 41.2%;
    }

    .territories__item--4 {
        top: 26.5%;
        left: 61.5%;
    }

    .territories__item--5 {
        top: 58%;
        left: 57.4%;;
    }
}

/*---  End Section Available  ---*/

#captcha-container-r{
    border-radius: 11px;
    border: 1px solid transparent;
}
#captcha-container-r.captcha-error{
    border-color: #BD1010;
}
.modal-reg-content__form__btn:disabled{
    background: gray;
    opacity: .6;
}

.request-call-form__btn:disabled{
    background: gray url(../img/ico-phone-wh.png) no-repeat 50% 50%;
    opacity: .6;
    -webkit-background-size: 21px 21px;
    background-size: 21px 21px;
}
@media (max-width: 991px) {
    .section--where {
        overflow-x: hidden;
    }
}