/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
    margin-left: auto;
    margin-right: 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-slide-invisible-blank {
    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, from(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, from(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, from(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, from(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;
    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;
    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 {
    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);
    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%;
    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;
}


.carousel {
    position: relative;
    box-sizing: border-box
}

.carousel *, .carousel *:before, .carousel *:after {
    box-sizing: inherit
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(0.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity .15s ease
}

.carousel__button.is-prev, .carousel__button.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
    box-sizing: inherit
}

.fancybox__container :focus {
    outline: none
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(0.5rem + 22px)
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

.fancybox__slide::before, .fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto
}

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding: 64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container > .carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40
}

@media all and (min-width: 1024px) {
    .carousel__button.is-close {
        right: 40px
    }
}

.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff)
}

.fancybox__no-click, .fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor
}

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

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    animation: .15s ease backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
    animation: .15s ease both fancybox-fadeOut
}

.fancybox-fadeIn {
    animation: .15s ease both fancybox-fadeIn
}

.fancybox-fadeOut {
    animation: .1s ease both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s ease both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
    animation: .15s ease both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
    animation: .15s ease both fancybox-throwOutUp
}

.fancybox-throwOutDown {
    animation: .15s ease both fancybox-throwOutDown
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2)
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video, .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0px 3px;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    opacity: 0;
    transition: opacity .15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: .92
}

.fancybox__thumbs .carousel__slide > * {
    pointer-events: none;
    user-select: none
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, .1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

@media (max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-Regular.woff) format("woff"), url(assets/fonts/Inter-Regular.woff2) format("woff2"), url(assets/fonts/Inter-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-Medium.woff) format("woff"), url(assets/fonts/Inter-Medium.woff2) format("woff2"), url(assets/fonts/Inter-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-SemiBold.woff) format("woff"), url(assets/fonts/Inter-SemiBold.woff2) format("woff2"), url(assets/fonts/Inter-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-Bold.woff) format("woff"), url(assets/fonts/Inter-Bold.woff2) format("woff2"), url(assets/fonts/Inter-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal
}

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/Inter-Black.woff) format("woff"), url(assets/fonts/Inter-Black.woff2) format("woff2"), url(assets/fonts/Inter-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
    font-stretch: normal
}

.modal {
    display: none
}

.modal.is-open {
    display: block
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px 0;
    z-index: 10000;
    overflow-y: scroll
}

.modal__container {
    position: relative;
    background-color: #fff;
    padding: 25px;
    width: 100%;
    border-radius: 4px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

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

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.modal-center {
    padding: 0 15px;
    width: 100%;
    max-width: 550px;
    margin: 0 auto
}

.modal__close {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 0
}

.modal__header .modal__close:before {
    content: '×';
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 23px;
    color: #8B8F93;
    font-weight: normal;
    width: 14px;
    height: 15px;
    z-index: 30
}

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.8)
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0, 0, 0, 0.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    -webkit-transition: -webkit-transform .25s ease-out;
    -o-transition: transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff
}

@-webkit-keyframes mmfadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes mmfadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes mmfadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes mmslideIn {
    from {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

@keyframes mmslideOut {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

.micromodal-slide {
    display: none
}

.micromodal-slide.open {
    display: block
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1)
}

.micromodal-slide .modal__container, .micromodal-slide .modal__overlay {
    will-change: transform
}

.banner-slider {
    width: 100%;
    height: 100vh;
    max-height: 800px
}

.banner-slider img {
    width: 100%;
    height: auto
}

.banner-slider__navigation {
    position: absolute;
    top: 50%;
    left: 12%
}

@media screen and (max-width: 767px) {
    .banner-slider__navigation {
        top: auto;
        bottom: 50px;
        left: auto;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-width: 767px) {
    .banner-slider__navigation .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.banner-slider__navigation .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff
}

@media screen and (max-width: 767px) {
    .banner-slider__navigation .swiper-pagination-bullet:not(:last-child) {
        margin-right: 15px
    }
}

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

.banner-slider__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.banner-slider__blur-image {
    filter: blur(4px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.banner-slider__blur-image img {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 1279px) {
    .banner-slider__blur-image img {
        -o-object-fit: cover;
        object-fit: cover
    }
}

.banner-slider__image-title {
    position: relative;
    z-index: 10;
    max-width: 930px
}

@media screen and (max-width: 1279px) {
    .banner-slider__image-title {
        max-width: 700px
    }
}

@media screen and (max-width: 1023px) {
    .banner-slider__image-title {
        max-width: 510px
    }
}

@media screen and (max-width: 767px) {
    .banner-slider__image-title {
        max-width: 320px
    }
}

.banner-slider__image-title img {
    max-height: 480px;
    width: 100%;
    height: auto
}

@media screen and (max-width: 767px) {
    .banner-slider__image-title img {
        height: 245px;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.banner-slider__image-title .brand-title {
    position: absolute
}

.banner-slider__image-title .title-top {
    top: -20px;
    left: 0
}

@media screen and (max-width: 767px) {
    .banner-slider__image-title .title-top {
        top: -15px
    }
}

.banner-slider__image-title .title-bottom {
    bottom: -15px;
    right: 0
}

@media screen and (max-width: 767px) {
    .banner-slider__image-title .title-bottom {
        bottom: -10px
    }
}

.block-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.block-404__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px
}

.block-404__image-wrapper img {
    width: 100%;
    height: auto
}

.block-404__image-wrapper .icon {
    position: absolute;
    right: -130px;
    top: -80px;
    width: 145px;
    height: 145px
}

@media screen and (max-width: 1279px) {
    .block-404__image-wrapper .icon {
        width: 124px;
        height: 124px;
        right: -75px;
        top: -65px
    }
}

@media screen and (max-width: 1023px) {
    .block-404__image-wrapper .icon {
        width: 75px;
        height: 75px;
        right: -40px;
        top: -50px
    }
}

@media screen and (max-width: 767px) {
    .block-404__image-wrapper .icon {
        width: 60px;
        height: 60px;
        right: -10px;
        top: -50px
    }
}

.block-404__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #313131;
    margin-top: 50px;
    margin-bottom: 30px
}

@media screen and (max-width: 1023px) {
    .block-404__text {
        font-size: 16px;
        line-height: 24px
    }
}

@media screen and (max-width: 767px) {
    .block-404__text {
        font-size: 12px;
        line-height: 20px
    }
}

.block-404 .brand-button {
    max-width: 380px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px
}

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

.contacts__name {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #000
}

@media screen and (max-width: 1279px) {
    .contacts__name {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .contacts__name {
        font-size: 12px;
        line-height: 20px
    }
}

.contacts__description {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 400;
    margin-left: 10px
}

@media screen and (max-width: 1279px) {
    .contacts__description {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .contacts__description {
        font-size: 12px;
        line-height: 20px
    }
}

.contacts__socials {
    margin-top: 15px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 140px
}

.footer {
    background-color: #24305F;
    padding: 50px 0;
    border-top: 1px solid #fff
}

.footer__wrapper {
    margin: 0 auto
}

@media screen and (min-width: 1280px) {
    .footer__wrapper {
        max-width: 1510px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .footer__wrapper {
        max-width: 970px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footer__wrapper {
        max-width: 730px
    }
}

@media screen and (max-width: 767px) {
    .footer__wrapper {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .footer__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footer__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .footer__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) {
    .footer__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

.footer__up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 65px
}

@media screen and (max-width: 1023px) {
    .footer__up {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

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

@media screen and (max-width: 1023px) {
    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media screen and (max-width: 1023px) {
    .footer__links-wrapper {
        margin-top: 50px
    }
}

@media screen and (max-width: 767px) {
    .footer__links-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.footer__link {
    font-size: 16px;
    line-height: 24px;
    color: #fff
}

.footer__link:hover {
    color: #B7B7B7
}

.footer__link:not(:last-child) {
    margin-right: 40px
}

@media screen and (max-width: 1279px) {
    .footer__link {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .footer__link {
        margin-right: 0
    }

    .footer__link:not(:last-child) {
        margin-bottom: 20px
    }
}

.footer__link-developer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 24px
}

@media screen and (max-width: 767px) {
    .footer__link-developer {
        font-size: 12px;
        line-height: 20px
    }
}

@media screen and (max-width: 1023px) {
    .footer__social-wrapper {
        margin-top: 50px
    }
}

@media screen and (max-width: 767px) {
    .footer__social-wrapper {
        margin-top: 40px
    }
}

.footer__social-wrapper .footer__social-link svg {
    color: #fff;
    -webkit-transition: color 150ms ease-in;
    -o-transition: color 150ms ease-in;
    transition: color 150ms ease-in
}

.footer__social-wrapper .footer__social-link:hover svg {
    color: #E20D33
}

.footer__social-wrapper .footer__social-link:not(:last-child) {
    margin-right: 25px
}

.form {
    width: 100%;
    position: relative;
    padding: 120px 0
}

@media screen and (min-width: 768px) {
    .form {
        overflow: hidden
    }
}

@media screen and (max-width: 1023px) {
    .form {
        padding: 60px 0
    }
}

@media screen and (max-width: 767px) {
    .form {
        padding: 80px 0
    }
}

.form__wrapper.hidden {
    display: none
}

.form .icon {
    position: absolute
}

@media screen and (min-width: 768px) {
    .form .icon {
        display: none
    }
}

.form .icon_figure-3 {
    top: -10px;
    left: -15px;
    width: 77px;
    height: 47px;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg)
}

.form .icon_figure-4 {
    top: -10px;
    right: 0
}

.form .icon_figure-2 {
    bottom: 0
}

.form__fieldset {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

@media screen and (max-width: 1279px) {
    .form__fieldset {
        margin-top: 50px
    }
}

@media screen and (max-width: 1023px) {
    .form__fieldset {
        max-width: 360px;
        margin-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        align-items: flex-start
    }
}

.form__fieldset .input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 270px;
    margin-top: 20px
}

@media screen and (max-width: 1279px) {
    .form__fieldset .input {
        max-width: 225px
    }
}

@media screen and (max-width: 1023px) {
    .form__fieldset .input {
        max-width: 360px
    }
}

.form__error-text {
    color: #E20D33
}

.form__checkbox {
    margin-top: 20px
}

.form__image {
    position: absolute;
    top: -20px;
    right: 0;
    max-width: 350px
}

@media screen and (max-width: 1279px) {
    .form__image.to-md-none {
        width: 100%;
        max-width: 350px
    }
}

@media screen and (max-width: 1023px) {
    .form__image.to-md-none {
        display: none
    }
}

@media screen and (min-width: 1024px) {
    .form__image.from-md-none {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .form__image.from-md-none {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .form__image.from-sm-none {
        display: none
    }
}

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

@media screen and (max-width: 1023px) {
    .form .brand-button {
        max-width: 360px;
        margin-top: 35px
    }
}

@media screen and (max-width: 1023px) {
    .form .brand-button.to-md-none {
        display: none
    }
}

@media screen and (min-width: 1024px) {
    .form .brand-button.from-md-none {
        display: none
    }
}

.header {
    padding-top: 20px;
    z-index: 50;
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4)
}

.header__wrapper {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1280px) {
    .header__wrapper {
        max-width: 1510px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .header__wrapper {
        max-width: 970px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header__wrapper {
        max-width: 730px
    }
}

@media screen and (max-width: 767px) {
    .header__wrapper {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .header__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .header__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) {
    .header__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1279px) {
    .header__wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.header__burger {
    display: none;
    height: 25px
}

@media screen and (max-width: 1279px) {
    .header__burger {
        display: block
    }
}

.header__burger .close {
    position: fixed;
    z-index: 100;
    right: 2em;
    display: none
}

.header__burger svg {
    width: 25px;
    height: 25px
}

.header__nav {
    margin-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media screen and (max-width: 1279px) {
    .header__nav {
        max-width: 165px
    }
}

@media screen and (max-width: 767px) {
    .header__nav {
        max-width: 65px
    }
}

.header__nav .header__link {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 1279px) {
    .header__nav .header__link {
        font-size: 12px
    }
}

.header__nav .header__link.phone-link svg {
    margin-right: 10px
}

@media screen and (max-width: 767px) {
    .header__nav .header__link.phone-link span {
        display: none
    }
}

@media screen and (max-width: 1279px) {
    .header .to-lg-d-none {
        display: none
    }
}

.header__burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: #fff;
    color: white;
    list-style: none;
    padding-top: 4rem
}

.header__burger-menu.showMenu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.header__burger-menu .header__link {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 25px
}

.header__burger-menu .brand-button {
    margin-top: 20px;
    margin-bottom: 30px
}

.header__burger-menu .phone-link {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #4659A3
}

.header__burger-menu .phone-link .icon_phone {
    color: #4659A3
}

.header__burger-menu .phone-link svg {
    margin-right: 10px
}

.header .icon_phone {
    color: #fff
}

.header .icon_burger {
    color: #fff
}

.header .brand-button {
    background-color: transparent;
    border: 1px solid #fff
}

.header .brand-button:hover {
    background-color: #fff;
    color: #8A8A8A
}

.header .brand-button_theme-lilac {
    background-color: #4659A3;
    border: 0
}

.header .brand-button_theme-lilac:hover {
    background-color: #5D6BA3;
    color: #fff
}

.header_theme-grey-link .icon_phone {
    color: #313131
}

.header_theme-grey-link .icon_burger {
    color: #000
}

.header_theme-grey-link .brand-button {
    background-color: #4659A3
}

.header_theme-grey-link .header__link {
    color: #313131;
    font-weight: 500
}

.header_position-absolute {
    position: absolute
}

.image-text {
    margin-bottom: 80px;
    width: 100%
}

@media screen and (max-width: 1279px) {
    .image-text {
        margin-bottom: 60px
    }
}

@media screen and (max-width: 767px) {
    .image-text {
        margin-bottom: 40px
    }
}

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

@media screen and (max-width: 767px) {
    .image-text__content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.image-text__image {
    position: relative;
    max-height: 475px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: calc(49% - 16px)
}

@media screen and (max-width: 767px) {
    .image-text__image {
        width: auto;
        max-width: 100%;
        margin-bottom: 30px
    }
}

.image-text__image img {
    max-width: 535px;
    width: 100%;
    height: auto
}

@media screen and (max-width: 1279px) {
    .image-text__image img {
        width: 450px
    }
}

@media screen and (max-width: 1023px) {
    .image-text__image img {
        width: 330px;
        height: 295px
    }
}

@media screen and (max-width: 767px) {
    .image-text__image img {
        width: 300px
    }
}

.image-text__image .icon {
    position: absolute;
    bottom: -15px;
    right: 15px
}

.image-text__text {
    padding: 37px;
    background: #24305F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(51% - 16px);
    margin: auto 0
}

@media screen and (max-width: 767px) {
    .image-text__text {
        width: 100%
    }
}

.image-text_reverse .image-text__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

@media screen and (max-width: 767px) {
    .image-text_reverse .image-text__content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.image-text_reverse .image-text__content .image-text__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media screen and (max-width: 767px) {
    .image-text_reverse .image-text__content .image-text__image {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.middle-banner {
    position: relative;
    background: #24305F;
    padding: 70px 0 70px 130px
}

@media screen and (max-width: 1279px) {
    .middle-banner {
        padding: 70px 0 70px 0
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner {
        padding-bottom: 120px;
        margin-bottom: 160px
    }
}

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

@media screen and (max-width: 1279px) {
    .middle-banner__wrapper {
        margin: 0 auto
    }
}

@media screen and (max-width: 1279px) and (min-width: 1280px) {
    .middle-banner__wrapper {
        max-width: 1210px
    }
}

@media screen and (max-width: 1279px) and (min-width: 1024px) and (max-width: 1279px) {
    .middle-banner__wrapper {
        max-width: 970px
    }
}

@media screen and (max-width: 1279px) and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner__wrapper {
        max-width: 730px
    }
}

@media screen and (max-width: 1279px) and (max-width: 767px) {
    .middle-banner__wrapper {
        max-width: 100%
    }
}

@media screen and (max-width: 1279px) and (max-width: 767px) {
    .middle-banner__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1279px) and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1279px) and (min-width: 1024px) and (max-width: 1279px) {
    .middle-banner__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1279px) and (min-width: 1280px) {
    .middle-banner__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.middle-banner__image-wrapper {
    position: absolute;
    right: -100px;
    width: 635px;
    height: 490px
}

@media screen and (max-width: 1279px) {
    .middle-banner__image-wrapper {
        width: 495px;
        height: 430px;
        right: 0
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner__image-wrapper {
        width: 100%;
        max-height: 285px;
        margin: 0 auto;
        left: 0;
        bottom: -155px
    }
}

@media screen and (max-width: 1023px) and (min-width: 1280px) {
    .middle-banner__image-wrapper {
        max-width: 1210px
    }
}

@media screen and (max-width: 1023px) and (min-width: 1024px) and (max-width: 1279px) {
    .middle-banner__image-wrapper {
        max-width: 970px
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner__image-wrapper {
        max-width: 730px
    }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
    .middle-banner__image-wrapper {
        max-width: 100%
    }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
    .middle-banner__image-wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner__image-wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1023px) and (min-width: 1024px) and (max-width: 1279px) {
    .middle-banner__image-wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 1023px) and (min-width: 1280px) {
    .middle-banner__image-wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

.middle-banner__image-wrapper .icon_figure-2, .middle-banner__image-wrapper .icon_figure-3, .middle-banner__image-wrapper .icon_figure-4 {
    position: absolute
}

.middle-banner__image-wrapper .icon_figure-3 {
    top: -15px;
    left: -30px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media screen and (max-width: 1023px) {
    .middle-banner__image-wrapper .icon_figure-3 {
        left: 5px
    }
}

.middle-banner__image-wrapper .icon_figure-4 {
    bottom: -30px;
    left: -45px
}

@media screen and (max-width: 1279px) {
    .middle-banner__image-wrapper .icon_figure-4 {
        bottom: 0;
        left: -30px
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner__image-wrapper .icon_figure-4 {
        right: 5px;
        left: auto;
        top: -29px;
        bottom: auto
    }
}

.middle-banner__image-wrapper img {
    width: 100%;
    height: auto
}

@media screen and (max-width: 1023px) {
    .middle-banner__image-wrapper img.from-md-visible {
        display: none
    }
}

.middle-banner__image-wrapper img.from-sm-visible {
    display: none
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner__image-wrapper img.from-sm-visible {
        display: block
    }
}

.middle-banner__image-wrapper img.from-xs-visible {
    display: none
}

@media screen and (max-width: 767px) {
    .middle-banner__image-wrapper img.from-xs-visible {
        display: block;
        max-height: 285px;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.middle-banner__text-content {
    max-width: 515px;
    width: 100%
}

@media screen and (max-width: 1279px) {
    .middle-banner__text-content {
        max-width: 405px
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner__text-content {
        max-width: 100%;
        margin-bottom: 70px
    }
}

@media screen and (max-width: 767px) {
    .middle-banner__text-content {
        margin-bottom: 55px
    }
}

.middle-banner__text-content .icon {
    display: none
}

.middle-banner_large-image {
    background-color: transparent;
    padding: 0
}

@media screen and (max-width: 1023px) {
    .middle-banner_large-image {
        margin-bottom: 0
    }
}

@media screen and (max-width: 767px) {
    .middle-banner_large-image {
        margin-bottom: 40px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .middle-banner_large-image .middle-banner__wrapper {
        padding: 0;
        margin: 0
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner_large-image .middle-banner__wrapper {
        padding: 0;
        margin: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.middle-banner_large-image .middle-banner__image-wrapper {
    position: absolute;
    right: -100px;
    width: 885px;
    height: 675px
}

@media screen and (max-width: 1279px) {
    .middle-banner_large-image .middle-banner__image-wrapper {
        width: 721px;
        height: 483px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .middle-banner_large-image .middle-banner__image-wrapper {
        width: 483px;
        height: 483px;
        max-height: 483px;
        max-width: 483px;
        bottom: auto;
        right: -12px;
        left: auto;
        margin: 0;
        padding: 0;
        top: -36px
    }
}

@media screen and (max-width: 767px) {
    .middle-banner_large-image .middle-banner__image-wrapper {
        width: 316px;
        height: 316px;
        padding: 0;
        right: 0;
        max-height: 316px;
        z-index: 1
    }
}

@media screen and (max-width: 1279px) {
    .middle-banner_large-image .middle-banner__image-wrapper img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner_large-image .middle-banner__image-wrapper img {
        height: auto
    }
}

.middle-banner_large-image .middle-banner__image-wrapper .icon {
    display: none
}

@media screen and (max-width: 767px) {
    .middle-banner_large-image .middle-banner__image-wrapper .icon {
        display: block
    }
}

.middle-banner_large-image .middle-banner__image-wrapper .icon_figure-2 {
    top: -20px;
    left: -15px
}

.middle-banner_large-image .middle-banner__text-content {
    height: 525px;
    max-width: 670px;
    position: relative;
    padding: 0 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: #026D7D;
    z-index: 1
}

@media screen and (max-width: 1279px) {
    .middle-banner_large-image .middle-banner__text-content {
        width: 490px;
        height: 450px
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner_large-image .middle-banner__text-content {
        width: 460px
    }
}

@media screen and (max-width: 767px) {
    .middle-banner_large-image .middle-banner__text-content {
        width: 100%;
        max-width: 100%;
        padding: 60px 20px 150px;
        height: auto
    }
}

.middle-banner_large-image .middle-banner__text-content .icon {
    display: block
}

@media screen and (max-width: 767px) {
    .middle-banner_large-image .middle-banner__text-content .icon {
        display: none
    }
}

.middle-banner_large-image .icon_figure-2, .middle-banner_large-image .icon_figure-3, .middle-banner_large-image .icon_figure-4 {
    position: absolute
}

.middle-banner_large-image .icon_figure-3 {
    top: -15px;
    width: 145px;
    height: 88px;
    right: -50px;
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg)
}

@media screen and (max-width: 1279px) {
    .middle-banner_large-image .icon_figure-3 {
        width: 75px;
        height: 45px;
        top: -10px;
        right: -30px
    }
}

.middle-banner_large-image .icon_figure-2 {
    top: -20px;
    right: 15px
}

.middle-banner_large-image .icon_figure-4-program {
    bottom: -30px;
    right: -20px
}

.middle-banner_large-image .icon_figure-1 {
    bottom: -25px;
    right: -20px
}

@media screen and (max-width: 1279px) {
    .middle-banner_large-image .icon_figure-1 {
        bottom: -44px;
        right: -30px
    }
}

@media screen and (max-width: 1023px) {
    .middle-banner_large-image .icon_figure-1 {
        right: -23px;
        bottom: -40px
    }
}

.middle-banner_theme-dark-blue-text-content .middle-banner__text-content {
    background-color: #24305F
}

.modal-form__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 20px
}

@media screen and (max-width: 1279px) {
    .modal-form__title {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .modal-form__title {
        font-size: 12px;
        line-height: 20px
    }
}

.modal-form__fieldset.hidden {
    display: none
}

.modal-form__checkbox {
    margin-top: 15px
}

.modal-form .brand-button {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto
}

.modal-form .input input {
    color: #000 !important
}

.section {
    padding-top: 120px
}

@media screen and (max-width: 1279px) {
    .section {
        padding-top: 100px
    }
}

@media screen and (max-width: 1023px) {
    .section {
        padding-top: 80px
    }
}

.section__wrapper {
    margin: 0 auto
}

@media screen and (min-width: 1280px) {
    .section__wrapper {
        max-width: 1210px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .section__wrapper {
        max-width: 970px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section__wrapper {
        max-width: 730px
    }
}

@media screen and (max-width: 767px) {
    .section__wrapper {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .section__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .section__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) {
    .section__wrapper {
        padding-left: 20px;
        padding-right: 20px
    }
}

.section_padding-top-130 {
    padding-top: 130px
}

@media screen and (max-width: 1279px) {
    .section_padding-top-130 {
        padding-top: 100px
    }
}

@media screen and (max-width: 1023px) {
    .section_padding-top-130 {
        padding-top: 80px
    }
}

.section_padding-top-0 {
    padding-top: 0
}

.section_padding-bottom-120 {
    padding-bottom: 120px
}

@media screen and (max-width: 1279px) {
    .section_padding-bottom-120 {
        padding-bottom: 100px
    }
}

@media screen and (max-width: 1023px) {
    .section_padding-bottom-120 {
        padding-bottom: 80px
    }
}

.section_padding-top-30 {
    padding-top: 30px
}

.section_theme-dark-blue {
    background: #24305F
}

.section_theme-turquoise {
    background: #026D7D
}

.section_custom-container {
    max-width: 1230px;
    margin: 0 auto
}

@media screen and (max-width: 1279px) {
    .section_custom-container {
        max-width: 100%
    }
}

@media screen and (max-width: 1023px) {
    .section_full-width-to-md .section__wrapper {
        padding: 0;
        margin: 0;
        max-width: 100%
    }
}

.section_padding-top-80 {
    padding-top: 80px
}

@media screen and (max-width: 1023px) {
    .section_padding-top-80 {
        padding-top: 40px
    }
}

.slider {
    width: 100%;
    height: auto;
    padding-bottom: 15px
}

.slider .slider__container {
    height: auto
}

.slider .slider__slider {
    height: auto
}

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

.slider__slider-slide .partners {
    max-width: 181px;
    width: 100%;
    max-height: 181px;
    height: 100%
}

.slider__slider-slide .details {
    max-width: 544px;
    width: 100%;
    max-height: 402px;
    height: 100%
}

.slider__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    width: 100px
}

@media screen and (max-width: 767px) {
    .slider__navigation {
        height: 35px;
        width: 70px
    }
}

.slider__navigation .slider__slider-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    width: 50%;
    height: 100%;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in
}

@media screen and (max-width: 767px) {
    .slider__navigation .slider__slider-button {
        padding: 0 5px
    }
}

.slider__navigation svg {
    width: 24px;
    height: 24px
}

.slider_without-container {
    margin: 0;
    margin-left: auto;
    width: calc((100% - 1170px) / 2 + 1170px)
}

@media screen and (max-width: 1279px) {
    .slider_without-container {
        width: calc((100% - 940px) / 2 + 930px)
    }
}

@media screen and (max-width: 1023px) {
    .slider_without-container {
        width: calc((100% - 680px) / 2 + 690px)
    }
}

@media screen and (max-width: 767px) {
    .slider_without-container {
        width: 100%;
        padding-left: 25px;
        padding-right: 25px
    }
}

.slider_without-container .slider__params {
    margin: 0 auto;
    margin: 0;
    padding-left: 0 !important
}

@media screen and (min-width: 1280px) {
    .slider_without-container .slider__params {
        max-width: 1210px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .slider_without-container .slider__params {
        max-width: 970px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .slider_without-container .slider__params {
        max-width: 730px
    }
}

@media screen and (max-width: 767px) {
    .slider_without-container .slider__params {
        max-width: 100%
    }
}

@media screen and (max-width: 767px) {
    .slider_without-container .slider__params {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .slider_without-container .slider__params {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .slider_without-container .slider__params {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (min-width: 1280px) {
    .slider_without-container .slider__params {
        padding-left: 20px;
        padding-right: 20px
    }
}

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

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

.task-program__subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px
}

@media screen and (max-width: 1279px) {
    .task-program__subtitle {
        font-size: 14px;
        line-height: 22px
    }
}

.task-program .brand-paragraph {
    margin-bottom: 25px
}

.task-program__text-content {
    width: calc(50% - 40px)
}

@media screen and (max-width: 1023px) {
    .task-program__text-content {
        width: calc(50% - 20px)
    }
}

@media screen and (max-width: 767px) {
    .task-program__text-content {
        width: 100%
    }
}

.task-program__image-wrapper {
    position: relative;
    width: calc(50% - 50px)
}

@media screen and (max-width: 1023px) {
    .task-program__image-wrapper {
        width: calc(50% - 20px)
    }
}

@media screen and (max-width: 767px) {
    .task-program__image-wrapper {
        display: none
    }
}

.task-program__image-wrapper img {
    width: 100%;
    height: auto
}

.task-program__image-wrapper .icon {
    position: absolute
}

.task-program__image-wrapper .icon_figure-4 {
    bottom: -20px;
    right: 20px
}

.task-program__image-wrapper .icon_figure-1 {
    top: -15px;
    left: -30px
}

.thumb-slider {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 40px
}

@media screen and (max-width: 1279px) {
    .thumb-slider {
        margin-top: 30px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 767px) {
    .thumb-slider {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.thumb-slider__swiper {
    margin: 0
}

.thumb-slider .mySwiper2 {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
    .thumb-slider .mySwiper2 {
        max-height: 400px
    }
}

@media screen and (max-width: 767px) {
    .thumb-slider .mySwiper2 {
        max-width: 100%;
    }
}

.thumb-slider .mySwiper {
    width: 100%;
    height: 250px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
    .thumb-slider .mySwiper {
        height: 150px;
        width: 100%;
        padding: 20px 0 0 0
    }
}

.thumb-slider .mySwiper .thumb-slider__slider-slide {
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: 100%;
}

@media (max-width: 1023px) {
    .thumb-slider .mySwiper .thumb-slider__slider-slide {
        max-width: 150px;
        max-height: 150px;
    }
}

.thumb-slider .mySwiper .thumb-slider__arrows {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.thumb-slider .mySwiper .thumb-slider__arrows .thumb-slider__slider-next, .thumb-slider .mySwiper .thumb-slider__arrows .thumb-slider__slider-prev {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 100%;
    opacity: 0.8;
    z-index: 5;
    cursor: pointer;
    transition: 0.2s opacity;
}

.thumb-slider .mySwiper .thumb-slider__arrows .thumb-slider__slider_disabled {
    opacity: 0.3
}

.thumb-slider .swiper-slide img {
    display: block;
    max-height: 800px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width: 1023px) {
    .thumb-slider .swiper-slide img {
        max-height: 350px;
    }
}

.wrapper-elements {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 1024px) {
    .wrapper-elements_flex-start {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

@media screen and (min-width: 1280px) {
    .wrapper-elements_flex-start .news-card {
        margin-right: 30px
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .wrapper-elements_flex-start .news-card {
        margin-right: 20px
    }
}

.brand-button {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
    line-height: 22px
}

@media screen and (max-width: 1279px) {
    .brand-button {
        font-size: 14px;
        line-height: 22px
    }
}

.brand-button_with-border {
    max-width: 210px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 26px;
    -webkit-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in
}

.brand-button_with-border:hover {
    background-color: #fff;
    color: #8A8A8A
}

.brand-button_theme-lilac {
    max-width: 210px;
    padding: 10px 20px;
    background-color: #24305F;
    border-radius: 26px;
    -webkit-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in
}

.brand-button_theme-lilac:hover {
    background-color: #4659A3
}

.brand-button_theme-white {
    background-color: #fff;
    color: #24305F;
    font-weight: 600;
    padding: 20px 45px;
    border-radius: 57px;
    -webkit-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in;
    text-transform: uppercase
}

.brand-button_theme-white:hover {
    background-color: #F0F0F0
}

.brand-button_theme-dark-blue {
    background-color: #24305F;
    color: #fff
}

.brand-button_theme-dark-blue:hover {
    background-color: #4659A3
}

.brand-button_color-black {
    color: #000
}

.brand-button_color-black:hover {
    color: #4F4F4F
}

.brand-button_with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.brand-button_with-icon svg {
    margin-right: 12px
}

.brand-button_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.brand-button_fw-500 {
    font-weight: 500
}

.brand-button_mt-40 {
    margin-top: 40px
}

@media screen and (max-width: 767px) {
    .brand-button_mt-40 {
        margin-top: 20px
    }
}

.brand-button_color-blue {
    color: #24305F
}

.brand-button_color-blue:hover {
    color: #fff
}

.brand-button_text-uppercase {
    text-transform: uppercase
}

.brand-button_fs-20 {
    font-size: 20px;
    line-height: 28px
}

@media screen and (max-width: 1279px) {
    .brand-button_fs-20 {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .brand-button_fs-20 {
        font-size: 12px;
        line-height: 20px
    }
}

.brand-button_fs-16 {
    font-size: 16px;
    line-height: 24px
}

@media screen and (max-width: 1279px) {
    .brand-button_fs-16 {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .brand-button_fs-16 {
        font-size: 12px;
        line-height: 22px
    }
}

.brand-button[disabled] {
    cursor: not-allowed;
    color: #fff;
    background-color: #4F4F4F
}

.brand-checkbox {
    min-width: 25px
}

.brand-checkbox__wrapper {
    display: inline-block
}

.brand-checkbox__wrapper input {
    opacity: 0
}

.brand-checkbox__wrapper input:checked + .brand-checkbox__label:before {
    background-color: transparent;
    border-color: #C4C4C4
}

.brand-checkbox__wrapper.brand-checkbox_theme-error .brand-checkbox__label {
    color: #D60A45
}

.brand-checkbox__wrapper.brand-checkbox_theme-error .brand-checkbox__label:before {
    border-color: #BB5F09
}

.brand-checkbox__label {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding-left: 25px;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    white-space: normal
}

.brand-checkbox__label span, .brand-checkbox__label a {
    display: inline !important;
    font-size: inherit;
    color: #fff;
    text-decoration: underline
}

.brand-checkbox__label:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 1px solid #C4C4C4;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear
}

.brand-checkbox__label:after {
    display: none;
    content: '';
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    top: 8px;
    width: 4px;
    height: 8px;
    left: 7px;
    -webkit-transform: rotate(35deg) skewX(7deg);
    -ms-transform: rotate(35deg) skewX(7deg);
    transform: rotate(35deg) skewX(7deg)
}

.brand-checkbox__field {
    position: absolute;
    z-index: -1
}

.brand-checkbox__field:checked + .brand-checkbox__label:after {
    display: block
}

.brand-checkbox.brand-checkbox_theme-dark .brand-checkbox__wrapper input:checked + .brand-checkbox__label:before {
    background-color: rgba(0, 0, 0, 0);
    border: solid 1px #fff;
    -webkit-box-shadow: none;
    box-shadow: none
}

.brand-checkbox.brand-checkbox_theme-dark .brand-checkbox__wrapper input:not(:checked) + .brand-checkbox__label:before {
    -webkit-box-shadow: none;
    box-shadow: none
}

.brand-checkbox.brand-checkbox_theme-dark .brand-checkbox__label {
    color: #fff;
    font-size: 16px
}

.brand-checkbox.brand-checkbox_theme-dark .brand-checkbox__label:before {
    width: 20px;
    height: 20px;
    border-radius: 0;
    border-color: #fff;
    background: none
}

.brand-checkbox.brand-checkbox_theme-dark .brand-checkbox__label:after {
    content: '+';
    top: 5px;
    left: 2px;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    -webkit-transform: rotate(0) skewX(0);
    -ms-transform: rotate(0) skewX(0);
    transform: rotate(0) skewX(0)
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__wrapper {
    width: 100%
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__label {
    width: 100%;
    padding-left: 30px;
    font-weight: normal;
    font-size: 16px
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__label span, .brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__label a {
    display: inline !important;
    font-size: inherit
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__label:before {
    top: 2px;
    left: 0;
    right: auto
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__label:after {
    top: 5px;
    left: 7px;
    right: auto
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__field {
    position: absolute;
    z-index: -1
}

.brand-checkbox.brand-checkbox_theme-large-field .brand-checkbox__field:checked + .brand-checkbox__label:after {
    display: block
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox {
    margin: 10px 10px 0 0;
    width: auto
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__wrapper {
    width: auto;
    -webkit-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__wrapper:hover input:checked + .brand-checkbox__label {
    background-color: #ffffff;
    color: #E8F1F2
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__wrapper:hover input:not(:checked) + .brand-checkbox__label {
    background-color: #ffffff;
    color: #E8F1F2
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__label {
    width: auto;
    padding: 10px 7px;
    background: #E8F1F2;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    height: auto;
    -webkit-transition: all 150ms ease-in;
    -o-transition: all 150ms ease-in;
    transition: all 150ms ease-in
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__label span, .brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__label a {
    display: inline !important;
    font-size: inherit
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__label:before {
    display: none
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__label:after {
    display: none
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__field {
    position: absolute;
    z-index: -1
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__field:checked + .brand-checkbox__label {
    background-color: #fff;
    color: #fff
}

.brand-checkbox.brand-checkbox_theme-tag-checkbox .brand-checkbox__field:checked + .brand-checkbox__label:after {
    display: none
}

.brand-checkbox_theme-black .brand-checkbox__label {
    font-weight: 500;
    font-size: 12px;
    line-height: 28px;
    color: #000
}

.brand-checkbox_theme-black .brand-checkbox__label span, .brand-checkbox_theme-black .brand-checkbox__label a {
    display: inline !important;
    font-size: inherit;
    color: #041A72;
    text-decoration: underline
}

.brand-checkbox_theme-black .brand-checkbox__label:before {
    border-color: #041A72
}

.brand-checkbox_theme-black .brand-checkbox__label:after {
    border-color: #041A72
}

.brand-checkbox_theme-black input:checked + .brand-checkbox__label:before {
    background-color: transparent;
    border-color: #041A72
}

.brand-checkbox_mb-35 {
    margin-bottom: 35px
}

.brand-checkbox_mt-20 {
    margin-top: 20px
}

.brand-checkbox_mb-50 {
    margin-bottom: 50px
}

.brand-paragraph {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400
}

@media screen and (max-width: 1279px) {
    .brand-paragraph {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .brand-paragraph {
        font-size: 12px;
        line-height: 22px
    }
}

.brand-paragraph_mb-40 {
    margin-bottom: 40px
}

@media screen and (max-width: 1023px) {
    .brand-paragraph_mb-40 {
        margin-bottom: 30px
    }
}

.brand-paragraph_fs-28 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 600
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_fs-28 {
        font-size: 20px;
        line-height: 26px
    }
}

@media screen and (max-width: 767px) {
    .brand-paragraph_fs-28 {
        font-size: 16px;
        line-height: 24px
    }
}

.brand-paragraph_fs-20 {
    font-size: 20px;
    line-height: 28px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_fs-20 {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .brand-paragraph_fs-20 {
        font-size: 12px;
        line-height: 20px
    }
}

.brand-paragraph_fs-16 {
    font-size: 16px;
    line-height: 24px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_fs-16 {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .brand-paragraph_fs-16 {
        font-size: 12px;
        line-height: 22px
    }
}

.brand-paragraph_fs-18 {
    font-size: 18px;
    line-height: 22px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_fs-18 {
        font-size: 14px;
        line-height: 22px
    }
}

.brand-paragraph_fs-16-12 {
    font-size: 18px;
    line-height: 22px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_fs-16-12 {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .brand-paragraph_fs-16-12 {
        font-size: 12px;
        line-height: 20px
    }
}

.brand-paragraph_color-grey {
    color: #4F4F4F
}

.brand-paragraph_mb-20 {
    margin-bottom: 20px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_mb-20 {
        margin-bottom: 15px
    }
}

.brand-paragraph_mb-30 {
    margin-bottom: 30px
}

@media screen and (max-width: 1279px) {
    .brand-paragraph_mb-30 {
        margin-bottom: 10px
    }
}

.brand-paragraph_color-black {
    color: #000
}

.brand-paragraph_color-light-lilac {
    color: #5D6BA3
}

.brand-paragraph_text-uppercase {
    text-transform: uppercase
}

.brand-paragraph_display-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.brand-paragraph_fw-600 {
    font-weight: 600
}

.brand-paragraph_with-figure {
    position: relative
}

.brand-paragraph_with-figure:before {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 45px;
    width: 100%;
    left: -15px;
    max-width: 145px;
    background: rgba(35, 47, 96, 0.2);
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    z-index: -1
}

@media screen and (max-width: 767px) {
    .brand-paragraph_with-figure:before {
        max-width: 105px;
        height: 30px;
        left: -5px;
        bottom: -5px
    }
}

.brand-paragraph .icon {
    margin-right: 12px
}

.brand-paragraph__icon {
    margin-right: 12px
}

.brand-step {
    background-color: #24305F;
    padding: 25px 30px 35px 20px;
    height: 205px;
    width: 100%
}

.brand-step__date {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
    z-index: 5
}

.brand-step__date::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 26px;
    width: 100%;
    left: -28px;
    max-width: 145px;
    background-color: #66AF55;
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg);
    z-index: -1
}

@media screen and (max-width: 1279px) {
    .brand-step__date {
        font-size: 12px;
        line-height: 18px
    }
}

.brand-step__text {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

@media screen and (max-width: 1279px) {
    .brand-step__text {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .brand-step__text {
        font-size: 12px;
        line-height: 22px
    }
}

.brand-title {
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700
}

@media screen and (max-width: 1279px) {
    .brand-title {
        margin-bottom: 30px
    }
}

.brand-link {
    margin-top: 20px;
    color: #68ae5c;
    transition: 0.3s color;
}

.brand-link:hover {
    color: #096d7c;
    text-decoration: underline;
}

.brand-title_theme-white {
    color: #fff
}

.brand-title_mb-15 {
    margin-bottom: 15px
}

.brand-title_mb-0 {
    margin-bottom: 0
}

h2 {
    font-size: 46px;
    line-height: 56px
}

@media screen and (max-width: 1279px) {
    h2 {
        font-size: 32px;
        line-height: 40px
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 24px;
        line-height: 32px
    }
}

h3 {
    font-size: 36px;
    line-height: 42px
}

@media screen and (max-width: 1279px) {
    h3 {
        font-size: 28px;
        line-height: 36px
    }
}

@media screen and (max-width: 767px) {
    h3 {
        font-size: 20px;
        line-height: 28px
    }
}

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

@media screen and (max-width: 1023px) {
    .breadcrumbs {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 767px) {
    .breadcrumbs {
        margin-bottom: 20px
    }
}

.breadcrumbs__wrapper-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.breadcrumbs__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
    color: #24305F;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    min-width: 50px
}

@media screen and (max-width: 1279px) {
    .breadcrumbs__text {
        font-size: 14px
    }
}

@media screen and (max-width: 1023px) {
    .breadcrumbs__text {
        font-size: 12px
    }
}

.breadcrumbs svg {
    width: 16px;
    height: 16px;
    color: #24305F;
    margin: 0 15px
}

@media screen and (max-width: 767px) {
    .breadcrumbs svg {
        color: #24305F
    }
}

.breadcrumbs_mb-30 {
    margin-bottom: 30px
}

@media screen and (max-width: 1023px) {
    .breadcrumbs_mb-30 {
        margin-bottom: 20px
    }
}

.breadcrumbs_mb-0 {
    margin-bottom: 0
}

.file-card {
    padding: 30px 40px 30px;
    height: 260px;
    max-width: 370px;
    width: 100%;
    position: relative;
    background-color: #E8EBF0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.file-card:hover {
    background-color: #026D7D
}

.file-card:hover .file-card__date {
    color: #fff
}

.file-card:hover .file-card__tag {
    color: #fff;
    border-color: #fff
}

.file-card:hover .file-card__name {
    color: #fff
}

.file-card:hover .file-card__brand-button {
    color: #fff
}

@media screen and (max-width: 1279px) {
    .file-card {
        max-width: 290px;
        height: 205px;
        padding: 15px 20px 20px
    }
}

.file-card__link {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

.file-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.file-card__date {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #24305F
}

@media screen and (max-width: 1279px) {
    .file-card__date {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .file-card__date {
        font-size: 12px;
        line-height: 22px
    }
}

.file-card__tag {
    padding: 9px 14px;
    color: #24305F;
    border: 1px solid #24305F;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px
}

.file-card__name {
    font-weight: 500;
    color: #000;
    margin-top: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.icon {
    width: 24px;
    height: 24px
}

.icon_logo {
    width: 280px;
    height: 60px
}

.icon_logo-header {
    width: 200px;
    height: 40px
}

.icon_socials {
    width: 29px;
    height: 29px
}

.icon_figure-3 {
    width: 105px;
    height: 64px
}

@media screen and (max-width: 767px) {
    .icon_figure-3 {
        width: 68px;
        height: 41px
    }
}

.icon_figure-4 {
    width: 97px;
    height: 90px
}

@media screen and (max-width: 767px) {
    .icon_figure-4 {
        width: 75px;
        height: 70px
    }
}

.icon_figure-1 {
    width: 170px;
    height: 50px
}

@media screen and (max-width: 1279px) {
    .icon_figure-1 {
        width: 125px;
        height: 40px
    }
}

.icon_figure-2 {
    width: 150px;
    height: 45px
}

@media screen and (max-width: 1279px) {
    .icon_figure-2 {
        width: 100px;
        height: 30px
    }
}

.input {
    height: 100%;
    width: 100%;
    border-bottom: 1px solid #C4C4C4;
    padding-top: 20px
}

@media screen and (max-width: 1279px) {
    .input {
        font-size: 16px;
        padding-top: 0
    }
}

.input__wrapper {
    position: relative;
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .input__wrapper {
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .input__wrapper {
        width: 100%
    }
}

.input__wrapper .input__label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #AAA;
    left: 10px;
    font-size: 16px;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    pointer-events: none;
    -webkit-transition: all .125s linear;
    -o-transition: all .125s linear;
    transition: all .125s linear
}

@media screen and (max-width: 1279px) {
    .input__wrapper .input__label {
        font-size: 16px
    }
}

.input__wrapper .input__label::before {
    content: "Ошибка:";
    display: none;
    padding-right: 5px
}

.input__wrapper .input__label_up {
    color: #28284B
}

.input__wrapper .input__inner {
    display: block;
    background-color: transparent;
    border: none;
    padding-left: 10px;
    height: 100%
}

.input__wrapper .input__inner .input__area {
    font-size: 12px;
    background-color: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 5px;
    width: calc(100% - 36px)
}

.input__wrapper .input__inner .input__area:focus {
    outline: none
}

.input__wrapper .input__inner .input__area:required {
    -webkit-box-shadow: none;
    box-shadow: none
}

@media screen and (max-width: 1279px) {
    .input__wrapper .input__inner .input__area {
        font-size: 16px
    }
}

@media screen and (min-width: 768px) {
    .input__wrapper .input__inner .input__area {
        padding-top: 18px;
        padding-bottom: 14px;
        height: 100%
    }
}

@media screen and (max-width: 767px) {
    .input__wrapper .input__inner .input__area {
        padding-top: 18px;
        padding-bottom: 14px;
        height: 100%
    }
}

.input__wrapper .input__inner .input__icon {
    width: 16px;
    height: 16px;
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.input__wrapper_filled .input__label {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75)
}

@media screen and (min-width: 768px) {
    .input__wrapper_filled .input__label {
        top: -5px !important
    }
}

@media screen and (max-width: 767px) {
    .input__wrapper_filled .input__label {
        top: -5px !important
    }
}

.input__wrapper_focus .input__label {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transition: all .125s linear;
    -o-transition: all .125s linear;
    transition: all .125s linear
}

@media screen and (min-width: 768px) {
    .input__wrapper_focus .input__label {
        top: -5px !important
    }
}

@media screen and (max-width: 767px) {
    .input__wrapper_focus .input__label {
        top: -5px !important
    }
}

.input__wrapper_error {
    border-bottom: 1px solid #FF0000
}

.input__wrapper_error input {
    color: #FF0000 !important
}

.input__wrapper_error .input__label {
    color: #FF0000
}

.input__wrapper_error .input__label::before {
    display: inline-block
}

.input__wrapper_error .input__inner .input__icon_fail {
    display: block
}

.input__wrapper_success .input__inner .input__icon_success {
    display: block
}

.input::after {
    display: none;
    position: absolute;
    margin-left: -20px
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .input::after {
        margin-left: -30px
    }
}

.input_full-width {
    width: 100%
}

.input_textarea {
    height: 100px
}

.input_textarea .input__label {
    top: 25px
}

.input_textarea .input__inner {
    height: 100%;
    max-height: 98px
}

.input_textarea .input__inner .input__area {
    width: 100%;
    resize: none
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .input_textarea .input__inner .input__area {
        padding-right: 25px
    }
}

@media screen and (max-width: 767px) {
    .input_textarea .input__inner .input__area {
        padding-right: 15px
    }
}

.input_alert {
    margin-bottom: 50px
}

@media screen and (max-width: 767px) {
    .input_alert {
        margin-bottom: 70px
    }
}

.input_alert-block::after {
    content: "Важная информация для пользователей, настолько важная, что может быть в две строки";
    display: block;
    margin-top: 120px;
    max-width: 350px
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .input_alert-block::after {
        margin-top: 140px;
        max-width: 250px
    }
}

@media screen and (max-width: 767px) {
    .input_alert-block::after {
        margin-top: 140px
    }
}

.input_popup-alert::after {
    display: block;
    content: "Внимание! В одну строчку!)";
    -webkit-clip-path: polygon(10% 19.61%, 15.78% -.11%, 21.38% 17.97%, 100% 17.97%, 100% 100%, 0px 100%, 0px 19.61%);
    clip-path: polygon(10% 19.61%, 15.78% -.11%, 21.38% 17.97%, 100% 17.97%, 100% 100%, 0px 100%, 0px 19.61%);
    height: 61px;
    margin-top: 150px;
    padding: 27px 22px 0
}

.input_row {
    width: unset
}

.input_full-width {
    width: 100%
}

.input_with-select {
    width: 100%
}

.input_with-select .input__wrapper .input__inner {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input_with-select .input__wrapper .input__inner .input__icon {
    display: none
}

.large-step {
    position: relative;
    width: calc(50% - 50px);
    height: 195px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    .large-step {
        width: 100%;
        height: auto;
        min-height: 80px;
        margin-bottom: 30px
    }
}

.large-step__number {
    position: absolute;
    left: 0;
    color: rgba(234, 10, 42, 0.09);
    font-weight: 700;
    font-size: 150px;
    line-height: 158px
}

@media screen and (max-width: 1279px) {
    .large-step__number {
        font-size: 120px;
        line-height: 128px
    }
}

@media screen and (max-width: 767px) {
    .large-step__number {
        font-size: 80px;
        line-height: 88px
    }
}

.large-step__text {
    padding-left: 40px;
    color: #000;
    font-size: 18px;
    line-height: 22px
}

@media screen and (max-width: 1279px) {
    .large-step__text {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .large-step__text {
        font-size: 12px;
        line-height: 20px
    }
}

@media screen and (max-width: 767px) {
    .large-step__text {
        padding-left: 30px
    }
}

.news-card {
    max-width: 350px;
    width: 100%;
    position: relative;
    margin-bottom: 70px
}

@media screen and (max-width: 1279px) {
    .news-card {
        max-width: 290px;
        margin-bottom: 50px
    }
}

@media screen and (max-width: 767px) {
    .news-card {
        margin-bottom: 40px
    }
}

.news-card__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.news-card__link:hover::after {
    border-color: #E20D33
}

.news-card__link::after {
    content: "";
    position: absolute;
    right: -11px;
    top: -12px;
    display: block;
    width: 135px;
    height: 135px;
    border-top: 12px solid #24305F;
    border-left: 12px solid #24305F;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.news-card__image-wrapper {
    width: 100%;
    margin-bottom: 30px
}

@media screen and (max-width: 1279px) {
    .news-card__image-wrapper {
        margin-bottom: 20px
    }
}

.news-card__image-wrapper img {
    width: 100%;
    height: 235px;
    max-height: 235px;
    -o-object-fit: cover;
    object-fit: cover
}

.news-card__tiny-description {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    color: #5D6BA3;
    font-weight: 500;
    height: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid #5D6BA3;
    text-transform: uppercase
}

@media screen and (max-width: 1279px) {
    .news-card__tiny-description {
        font-size: 10px;
        line-height: 14px
    }
}

.news-card__name {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    margin: 15px 0 10px 0
}

@media screen and (max-width: 1279px) {
    .news-card__name {
        font-size: 14px;
        line-height: 22px
    }
}

.news-card__description, .news-card__date {
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F
}

@media screen and (max-width: 1279px) {
    .news-card__description, .news-card__date {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .news-card__description, .news-card__date {
        font-size: 12px;
        line-height: 22px
    }
}

.news-card__date {
    margin-top: 12px
}

@media screen and (max-width: 1279px) {
    .news-card__date {
        margin-top: 20px
    }
}

.number-card {
    position: relative;
    max-width: 300px
}

@media screen and (max-width: 767px) {
    .number-card:not(:last-child) {
        margin-bottom: 30px
    }
}

.number-card__number-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.number-card__tag {
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    color: #24305F;
    padding: 8px 12px;
    border: 1px solid #24305F;
    border-radius: 30px
}

.number-card__number {
    display: inline-block;
    position: relative;
    font-size: 100px;
    font-weight: 500;
    color: #24305F;
    line-height: 108px
}

@media screen and (max-width: 1279px) {
    .number-card__number {
        font-size: 80px
    }
}

.number-card__figure {
    position: absolute;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-color: rgba(102, 175, 85, 0.2);
    -webkit-transform: skew(30deg);
    -ms-transform: skew(30deg);
    transform: skew(30deg)
}

.number-card__description {
    font-weight: 600;
    color: #24305F;
    font-size: 18px;
    line-height: 22px
}

@media screen and (max-width: 1279px) {
    .number-card__description {
        font-size: 14px;
        line-height: 22px
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    .pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.pagination .icon {
    width: 26px;
    height: 26px
}

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

.pagination__icon:first-child {
    margin-right: 30px
}

.pagination__icon:last-child {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.pagination__page {
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-right: 30px
}

@media screen and (max-width: 767px) {
    .pagination__page {
        font-size: 16px;
        line-height: 19px
    }
}

.pagination__page.active {
    border-radius: 50%;
    border: 1px solid #041A72;
    color: #041A72;
    width: 25px;
    height: 25px;
    text-align: center
}

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

.personal-card-large:not(:last-child) {
    margin-bottom: 60px
}

@media screen and (max-width: 1279px) {
    .personal-card-large {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 767px) {
    .personal-card-large {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.personal-card-large__image-wrapper {
    width: 42%;
    max-width: 460px;
    max-height: 445px
}

@media screen and (max-width: 1023px) {
    .personal-card-large__image-wrapper {
        width: calc(50% - 40px)
    }
}

@media screen and (max-width: 767px) {
    .personal-card-large__image-wrapper {
        width: 100%;
        max-width: 100%;
        max-height: 320px;
        margin-bottom: 35px
    }
}

.personal-card-large__image-wrapper img {
    max-height: 445px;
    width: 100%;
    height: auto
}

@media screen and (max-width: 767px) {
    .personal-card-large__image-wrapper img {
        max-height: 320px;
        max-width: 320px;
        margin: 0 auto
    }
}

.personal-card-large__text-content {
    width: 50%
}

@media screen and (max-width: 767px) {
    .personal-card-large__text-content {
        width: 100%
    }
}

.personal-card-large_mb-0 {
    margin-bottom: 0
}

.personal-card {
    width: 100%;
    position: relative
}

.personal-card:hover .personal-card__icon {
    opacity: 1
}

.personal-card:hover .personal-card__tiny-name {
    color: #E20D33
}

.personal-card__link {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.personal-card__icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -21px;
    right: 15px;
    -webkit-transform: rotate(-117deg);
    -ms-transform: rotate(-117deg);
    transform: rotate(-117deg);
    opacity: 0;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.personal-card__image-wrapper {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 350px;
}

@media screen and (max-width: 1279px) {
    .personal-card__image-wrapper {
        margin-bottom: 15px
    }
}

.personal-card__image-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.personal-card__name {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px
}

@media screen and (max-width: 1279px) {
    .personal-card__name {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 767px) {
    .personal-card__name {
        font-size: 12px;
        line-height: 20px
    }
}

.personal-card__tiny-name {
    color: #4659A3;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

@media screen and (max-width: 1279px) {
    .personal-card__tiny-name {
        font-size: 10px;
        line-height: 14px
    }
}

@media screen and (max-width: 1279px) {
    .personal-card__tiny-name {
        margin-bottom: 15px
    }
}

.personal-card__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000
}

@media screen and (max-width: 1279px) {
    .personal-card__description {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    .personal-card__description {
        font-size: 12px;
        line-height: 22px
    }
}

.project-card {
    position: relative;
    width: 100%;
    height: 420px;
    padding: 40px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.project-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 420px;
    background: -o-linear-gradient(88.7deg, rgba(0, 0, 0, 0.6) 1.11%, rgba(0, 0, 0, 0) 97.76%);
    background: linear-gradient(1.3deg, rgba(0, 0, 0, 0.6) 1.11%, rgba(0, 0, 0, 0) 97.76%);
    opacity: 0.5;
    top: 0;
    left: 0
}

@media screen and (max-width: 1279px) {
    .project-card {
        height: 290px;
        padding: 25px 20px
    }
}

@media screen and (max-width: 767px) {
    .project-card {
        height: 160px;
        padding: 10px
    }
}

.project-card__link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.project-card__link:hover::after {
    border-color: #E20D33
}

.project-card__link::after {
    content: "";
    position: absolute;
    right: -11px;
    bottom: -12px;
    display: block;
    width: 135px;
    height: 135px;
    border-top: 12px solid #24305F;
    border-left: 12px solid #24305F;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.project-card__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: 420px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1
}

.project-card__icon-play {
    position: absolute;
    top: 40%;
    left: 40%
}

@media screen and (max-width: 1023px) {
    .project-card__icon-play {
        width: 100%;
        max-width: 50px
    }
}

.project-card__gallery {
    display: none
}

.project-card__name {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    z-index: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

@media screen and (max-width: 1279px) {
    .project-card__name {
        font-size: 14px;
        line-height: 22px
    }
}

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

::-ms-clear {
    display: none
}

html {
    font-size: 16px;
    line-height: 24px
}

@media screen and (max-width: 1279px) {
    html {
        font-size: 14px;
        line-height: 22px
    }
}

@media screen and (max-width: 1023px) {
    html {
        font-size: 12px;
        line-height: 22px
    }
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden
}

ul {
    list-style: none
}

a {
    text-decoration: none
}

.buttons {
    width: 100%;
    background-color: #8A8A8A;
    padding: 40px 20px
}

.buttons a {
    margin: 0 15px
}

.news-cards {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.project-cards {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0
}

.file-cards {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0
}

.personal-cards {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0
}

.number-cards {
    margin-top: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0
}

body.color-turquoise .news-card__link::after, body.color-turquoise .project-card__link::after {
    border-color: #026D7D
}

body.color-turquoise .news-card__link:hover::after, body.color-turquoise .project-card__link:hover::after {
    border-color: #E20D33
}

button {
    border: 0;
    font-family: 'Inter', sans-serif;
    cursor: pointer
}

body.js-menu-open {
    overflow: hidden;
    height: 100%
}

@media screen and (max-width: 1023px) {
    #yandex-map {
        height: 500px
    }
}

@media screen and (max-width: 767px) {
    #yandex-map {
        height: 300px
    }
}

.fancybox__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.fancybox__caption {
    padding: 1rem
}

.carousel__track {
    display: none
}

.title-link {
    color: inherit;
}
