@charset "UTF-8";

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, .15), hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align)
}

hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: .25
}

hr:not([size]) {
    height: 1px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: .5rem;
    margin-top: 0
}

h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    h1 {
        font-size: 2.5rem
    }
}

h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    h2 {
        font-size: 2rem
    }
}

h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    h3 {
        font-size: 1.75rem
    }
}

h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    h4 {
        font-size: 1.5rem
    }
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    margin-bottom: 1rem;
    margin-top: 0
}

abbr[data-bs-original-title],
abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

small {
    font-size: .875em
}

mark {
    background-color: #fcf8e3;
    padding: .2em
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    direction: ltr;
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    font-size: .875em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal
}

code {
    word-wrap: break-word;
    color: #d63384;
    font-size: .875em
}

a>code {
    color: inherit
}

kbd {
    background-color: #212529;
    border-radius: .2rem;
    color: #fff;
    font-size: .875em;
    padding: .2rem .4rem
}

kbd kbd {
    font-size: 1em;
    font-weight: 700;
    padding: 0
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    border-collapse: collapse;
    caption-side: bottom
}

caption {
    color: #6c757d;
    padding-bottom: .5rem;
    padding-top: .5rem;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

button,
select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    border-style: none;
    padding: 0
}

textarea {
    resize: vertical
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0
}

legend {
    float: left;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit;
    margin-bottom: .5rem;
    padding: 0;
    width: 100%
}

@media (min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    cursor: pointer;
    display: list-item
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
}

:root {
    --swiper-theme-color: #007aff
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

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

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    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;
    width: 100%;
    z-index: 1
}

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

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
    width: 100%
}

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

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: 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
}

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

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

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

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-centered>.swiper-wrapper:before {
    -ms-flex-negative: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size)/2);
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/44*27);
    z-index: 10
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
    text-transform: none
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: 10px
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 10
}

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.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(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

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

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

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

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: 50%;
    display: inline-block;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

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

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

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

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

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

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

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

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-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-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: left .2s, -webkit-transform .2s;
    transition: left .2s, -webkit-transform .2s;
    -o-transition: transform .2s, left .2s;
    transition: transform .2s, left .2s;
    transition: transform .2s, left .2s, -webkit-transform .2s
}

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

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -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;
    width: 100%
}

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

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

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

.swiper-pagination-lock {
    display: none
}

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

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

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

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

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

.swiper-scrollbar-lock {
    display: none
}

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

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

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

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

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

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

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

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

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

.swiper-grid>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

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

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

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

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

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

.swiper-cube {
    overflow: visible
}

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

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

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

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

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

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

.swiper-cube .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    background: #000;
    bottom: 0;
    content: "";
    -webkit-filter: blur(50px);
    filter: blur(50px);
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.swiper-flip {
    overflow: visible
}

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

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

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

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

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transition-property: opacity, height, -webkit-transform;
    transition-property: opacity, height, -webkit-transform;
    -o-transition-property: transform, opacity, height;
    transition-property: transform, opacity, height;
    transition-property: transform, opacity, height, -webkit-transform
}

.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif
}

.modal__overlay {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.modal__container {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 100vh;
    max-width: 500px;
    overflow-y: auto;
    padding: 30px
}

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

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

.modal__close {
    background: transparent;
    border: 0
}

.modal__header .modal__close:before {
    content: "✕"
}

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

.modal__btn {
    -moz-osx-font-smoothing: grayscale;
    -webkit-appearance: button;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #e6e6e6;
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    color: rgba(0, 0, 0, .8);
    cursor: pointer;
    font-size: .875rem;
    line-height: 1.15;
    margin: 0;
    overflow: visible;
    padding: .5rem 1rem;
    text-transform: none;
    -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;
    will-change: transform
}

.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 {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes mmfadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes mmfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes mmfadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

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

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

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

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

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

    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

.micromodal-slide {
    display: none
}

.micromodal-slide.is-open {
    display: block
}

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

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

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

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

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

@font-face {
    font-family: futurapt-3s;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/FuturaPTCond-Book.woff2) format("woff2")
}

@font-face {
    font-family: futurapt-3s;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/FuturaPTCond-Medium.woff2) format("woff2")
}

@font-face {
    font-family: futurapt-3s;
    font-style: normal;
    font-weight: 450;
    src: url(../fonts/FuturaPT-Book.woff2) format("woff2")
}

@font-face {
    font-family: futurapt-3s;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/FuturaPTCond-Bold.woff2) format("woff2")
}

@font-face {
    font-family: futurapt-3s;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/FuturaPTCond-ExtraBold.woff2) format("woff2")
}

@font-face {
    font-family: opensans-3s;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/open-sans-v28-latin_cyrillic-300.woff2) format("woff2")
}

@font-face {
    font-family: opensans-3s;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/OpenSans-Regular.woff2) format("woff2")
}

@font-face {
    font-family: opensans-3s;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/open-sans-v28-latin_cyrillic-italic.woff2) format("woff2")
}

@font-face {
    font-family: opensans-3s;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/open-sans-v28-latin_cyrillic-600.woff2) format("woff2")
}

@font-face {
    font-family: opensans-3s;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/open-sans-v28-latin_cyrillic-700.woff2) format("woff2")
}

@font-face {
    font-family: robotoslab-3s;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/roboto-slab-v22-latin_cyrillic-regular.woff2) format("woff2")
}

::-webkit-input-placeholder {
    color: #666
}

::-moz-placeholder {
    color: #666
}

:-ms-input-placeholder {
    color: #666
}

::-ms-input-placeholder {
    color: #666
}

::placeholder {
    color: #666
}

::-moz-selection {
    background-color: #eb2828;
    color: #fff
}

::selection {
    background-color: #eb2828;
    color: #fff
}

input,
textarea {
    outline: none
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red
}

input:required:valid,
textarea:required:valid {
    border-color: green
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.65;
    min-width: 320px;
    overflow-x: hidden
}

.slider-button,
body {
    font-family: futurapt-3s, sans-serif;
    position: relative
}

.slider-button {
    background-color: #84C036;
    border: 0;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 24px;
    font-weight: 300;
    height: 35px;
    line-height: 95.7%;
    width: 282px
}

.slider-button span {
    font-size: 18px;
    margin-left: 10px;
    text-decoration: line-through
}

.slider-button b {
    font-size: 26px
}

.slider-button p {
    margin-bottom: 0;
    position: relative;
    z-index: 3
}

.slider-button a {
    color: #fff;
    text-decoration: none
}

.slider-button:hover:before {
    width: 100%
}

.slider-button:before {
    background-color: #cd0101;
    border-radius: 3px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: width .5s ease-out;
    -o-transition: width .5s ease-out;
    transition: width .5s ease-out;
    width: 0
}

.desc {
    background-color: #fff;
    font-family: opensans-3s, sans-serif;
    height: 100%;
    width: 100%
}

.desc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 150px;
    margin: 0 auto 67px;
    max-width: 75%
}

.desc-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%
}

.desc-left__subtitle {
    color: #735f41;
    font-style: 16px;
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 114.7%
}

.desc-left__h2 {
    color: #333;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .035em;
}


.desc-left__desc {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 165.2%;
    text-align: justify
}

.desc-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%
}

.desc-right__benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    gap: 45px;
    letter-spacing: -.05em;
    line-height: 113.2%;
    padding-top: 100px;
    background-size: 84%;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../images/dist/slon.png);
}

.benefits__item {
    list-style-type: none
}

.benefits__item:before {
    background: url(../images/dist/li.svg) no-repeat;
    background-size: cover;
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 14px;
    left: -25px;
    position: relative;
    top: 15px;
    width: 14px
}

.desc-wrapper__desc {
    margin: 0 auto;
    max-width: 75%;
	text-align: center;
}
.text3 {
text-align: center;
    display: block;
    font-size: 18px;
}

.desc-wrapper__desc h2 {
    font-family: futurapt-3s, sans-serif;
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
}
.desc-desc {
    margin-bottom: 0;
    padding-bottom: 90px;
    text-align: center;
}

@media screen and (max-width:500px) {
  

    .desc-wrapper__desc {
        max-width: 85%
    }

    .desc-desc {
        padding-bottom: 30px
    }

    .desc-right {
        background-color: #f6f6f6;
        padding: 0 12px;
        text-align: left
    }

    .desc-right__benefits {
        gap: 7px
    }

    .duiko-text__desc {
        margin: 30px;
        text-align: justify
    }

    .duiko-text__header {
        font-size: 16px;
        margin-bottom: 0;
        text-align: center
    }
}

.duiko {
    -webkit-box-orient: vertical;
    background-color: #fff;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    padding-top: 68px;
    width: 100%
}

.duiko,
.duiko-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.duiko-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.duiko-text-wrapper {
    max-width: 602px;
    width: 100%
}

.duiko-text__header {
    font-size: 48px;
    line-height: 95.7%;
    margin-bottom: 43px;
    text-transform: uppercase
}

.duiko-text__desc {
    font-size: 21px;
    font-weight: 450;
    line-height: 109.2%;
    margin-bottom: 32px
}

.duiko-button__wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0 auto
}

.duiko-button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: opensans-3s, sans-serif;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase
}

.duiko-button:hover {
    color: #333;
    opacity: .5
}

.duiko-button:after {
    background-color: #eb2828;
    content: "";
    height: 2px;
    margin-left: 10px;
    width: 19px
}

.duiko__button {
    position: relative;
    right: -15%;
    top: 20px
}

@media screen and (max-width:500px) {
    .duiko {
        padding-top: 30px
    }

    .duiko-button__wrapper {
        margin: 0 30px
    }

    .duiko__button {
        height: 40px;
        right: 0;
        width: 340px
    }
}

.futer {
    background-color: #383838;
    height: 100%;
    width: 100%
}

.futer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    color: #fff;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0 auto
}

.futer-video-wrapper,
.futer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.futer-video-wrapper {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 40px;
    padding-top: 109px
}

.video-item {
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 452px;
    flex: 0 1 452px;
    gap: 20px
}

.futer__video {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: block;
    justify-content: center;
    max-height: 190px
}

.futer__video,
.futer__video img {
    height: auto;
    width: 100%
}

.futer__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: uppercase
}

.futer__header {
    font-size: 20px;
    white-space: nowrap
}

.futer__desc,
.futer__header {
    font-weight: 300;
    line-height: 95.7%
}

.futer__desc {
    font-size: 18px;
    min-height: 100px;
    opacity: .5
}

.futer__button-text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: opensans-3s, sans-serif;
    font-size: 12px;
    letter-spacing: -.035em;
    line-height: 131.7%;
    white-space: nowrap
}

.futer__button-text a {
    color: #fff;
    text-decoration: none
}

.futer__button-text:after {
    background-color: #eb2828;
    content: "";
    height: 2px;
    margin-left: 7px;
    width: 19px
}

.futer-video__decoration {
    background-color: hsla(0, 0%, 100%, .15);
    height: 220px;
    margin: 0 33px;
    width: 1px
}

.futer__decoration {
    margin: 0 80px
}

.futer__decoration:before {
    background-color: #5b5b5b;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    top: -5px;
    width: 100%
}

.futer-nav-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 80px;
    min-height: 154px
}

@media screen and (max-width:500px) {
    .futer-logo {
        margin: 0 auto;
        padding-bottom: 20px
    }

    .futer-contacts {
        margin-bottom: 40px
    }

    .futer-video__decoration {
        display: none
    }

    .futer__desc {
        min-height: auto
    }

    .video-item {
        margin: 20px
    }

    .futer-video-wrapper {
        margin-bottom: 20px;
        padding-top: 20px
    }
}

.body {
    background-color: #333;
    height: 100%;
    margin: 0 auto;
    max-width: 100%;
    min-height: 100%;
    width: 100%
}

.container {
    -webkit-box-shadow: 0 0 16px 11px rgba(0, 0, 0, .15);
    box-shadow: 0 0 16px 11px rgba(0, 0, 0, .15)
}

.container,
.container-header {
    height: 100%;
    margin: 0 auto;
    max-width: 1170px;
    width: 100%
}

.header {
    min-height: 130px
}

.header,
.header-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

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

.logo__img {
    -webkit-box-orient: horizontal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 14px;
    text-decoration: none
}

.logo__img,
.logo__text {
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.logo__text {
    -webkit-box-orient: vertical;
    color: #fff;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: futurapt-3s, sans-serif;
    font-size: 33px;
    font-weight: 600;
    gap: 9px;
    line-height: 95.7%;
    text-transform: uppercase
}

.logo__text p {
    font-family: opensans-3s, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 95.7%
}

.contacts {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: robotoslab-3s, sans-serif;
    font-weight: 400;
    gap: 11px;
    justify-content: center
}

.contacts a {
    color: #fff;
    text-decoration: none
}

.contacts img {
    margin-right: 9px
}

.email,
.tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center
}

@media screen and (max-width:500px) {
    .contacts {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media screen and (max-width:850px) {
	

	
	
    .header-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        gap: 10px;
        justify-content: center
    }
}

.kailas {
    background-color: #fff;
    height: 100%;
    margin: 0 auto;
    width: 100%
}

.kailas-wrapper {
    background-color: #333;
    color: #fff;
    margin: 0 20px;
    padding-top: 20px
}

.kailas__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
    max-width: 840px;
    width: 100%
}

.kailas__top img {
    left: -66px;
    position: relative;
    top: -70px
}
.kailas__title2 {
    font-size: 32px;
    margin-bottom: 25px;
}
.programs-item__item {
    display: flex;
    justify-content: center;
    border: 2px solid #ccc;
    border-radius: 4px;
    text-align: center;
    align-items: center;
    height: 100px;
    font-weight: 900;
padding: 17px 10px 1px 10px;    margin-bottom: 20px;
}
.programs-item__item:hover {

color:#84C036;

}
.duiko-wrapper img{
	    height: 100%;
}





.kurs-text {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 29%;
    background-size: 37%;
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(../images/dist/kurs.jpg);
}
.kurs-text p span {
    margin-left: -11px;
}
.kurs-text p {
    font-family: opensans-3s, sans-serif;
    font-size: 16px;
    margin-bottom: 0px;
}
.kailas-top__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}
.kailas__title {
    font-size: 76px;
    font-weight: 900;
    letter-spacing: .035em;
    line-height: 95.7%;
    text-align: center;
    margin: 0px 0;
    background-image: url(../images/dist/12.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 33px 5px;
}
.kailas__desc {
    font-family: opensans-3s, sans-serif;
    font-size: 16px;
    letter-spacing: -.035em;
    line-height: 162.7%;
    text-align: justify
}

.alone {
    margin: 0 auto 73px
}

.alone,
.kailas__bottom {
    max-width: 840px;
    width: 100%
}

.kailas__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto
}

.kailas__bottom img {
    bottom: -22px;
    position: relative;
    right: -40px
}

.kailas__button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: opensans-3s, sans-serif;
    font-size: 16px;
    letter-spacing: -.035em;
    line-height: 131.7%;
    text-decoration: none
}

.kailas__button:after {
    background: #eb2828;
    content: "";
    height: 2px;
    margin-left: 10px;
    width: 19px
}

.kailas__button:hover {
    color: #fff;
    opacity: .5
}

@media screen and (max-width:500px) {


    .kailas__title {
        text-align: center
    }

    .kailas-wrapper {
        margin: 0;
            padding: 40px 20px;
    }

    .bottom__left {
        margin-bottom: 30px
    }
}

.modal__container {
    height: 100%;
    max-height: 700px;
    max-width: 700px;
    width: 100%;
    z-index: 5
}

.close-button {
    background: url(../images/dist/x.svg) no-repeat;
    background-size: cover;
    border: 0;
    height: 30px;
    width: 30px
}

.ava__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px
}

.ava__wrapper img {
    height: 84px;
    width: 84px
}

.ava__wrapper p {
    margin-bottom: 0;
    margin-left: 10px
}

.modal__header h2 {
    font-size: 14px
}

.modal__text {
    position: absolute;
    z-index: 10
}

.programs {
    background-color: #fff;
    height: 100%;
    width: 100%;    padding-bottom: 60px;
}

.programs-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 29px;
    justify-content: space-between
}
.kurs {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
}
.left-img {
    position: absolute;
    left: 0;
}
.rigt-img {
    position: absolute;
    right: 0;
	top: 0;
}





.programs-item {
    background-size: cover;
    height: 100%;
    width: 100%
}

.programs-item__header {
    font-size: 32px;
    letter-spacing: .035em;
    line-height: 95.7%;
    padding: 20px 0 40px;
    text-align: center;
    text-transform: uppercase;
	font-weight: 900;
}

.programs-item__grid {
    -ms-grid-columns: 1fr 77px 1fr 77px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 10px 70px;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 35px;
}

.grid-title {
    font-family: opensans-3s, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.grid-desc {
    font-family: futurapt-3s, sans-serif;
    font-size: 18px;
    font-weight: 450;
    line-height: 95.7%
}

@media screen and (max-width:500px) {

    .left-img,
    .rigt-img {
        display: none
    }

    .programs-item__header {
        padding: 20px 0 10px
    }

    
}

.rewiews {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    padding-top: 75px;
    width: 100%
}

.naw-left {
    left: -13px;
    position: relative
}

.rew-title {
    font-size: 48px;
    line-height: 95.7%;
    margin-bottom: 96px;
    max-width: 780px;
    text-align: center;
    text-transform: uppercase
}

.rew-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    max-width: 998px
}

.rew-row,
.rew-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.rew-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 58px;
    margin-bottom: 100px
}

.rew-list {
    -webkit-box-orient: vertical;
    -webkit-box-flex: 1;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex: 1 1 288px;
    flex: 1 1 288px;
    -ms-flex-direction: column;
    flex-direction: column
}

.avatar-wrapper,
.rew-list {
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.avatar-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 47px
}

.avatar-wrapper a {
    color: #333;
    font-family: opensans-3s, sans-serif;
    text-decoration: none
}

.rew-desc {
    font-size: 16px;
    min-height: 177px
}

.rew-button,
.rew-desc {
    font-family: opensans-3s, sans-serif;
    letter-spacing: -.035em;
    line-height: 131.7%
}

.rew-button {
    color: #eb2828;
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase
}

.rew-button:hover {
    color: #eb2828;
    opacity: .5
}

.naw-right {
    position: relative;
    right: -14px
}

.modal-button {
    background: none;
    border: 0
}

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

    .rew-list {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #f2f2f2;
        border-radius: 5px;
        padding: 30px
    }

    .rew-title {
        font-size: 24px;
        margin-bottom: 15px
    }

    .naw-left,
    .naw-right {
        display: none
    }

    .rew-row {
        gap: 10px;
        margin-bottom: 0;
        padding: 20px
    }

    .rewiews {
        padding-top: 30px
    }

    .rew-wrapper {
        margin-bottom: 30px
    }
}

.slider-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: 176px;
    position: relative;
    top: -104px;
    width: 100%;
    z-index: 4
}

.slider-bottom,
.slider-bottom__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.slider-bottom__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
max-width: 165px;
    text-align: center;
    width: 100%;
}

.bottom-text__header {
    color: #fff;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 95.7%;
    text-transform: uppercase
}

.bottom-text__header span {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 95.7%;
    margin-bottom: 4px
}

.slider-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 26px;
    overflow-x: hidden
}

.slider-bottom-wripper {
    background-color: #fff;
    overflow-x: clip
}

@media screen and (max-width:500px) {
    .slider-bottom {
        position: inherit
    }

    .slider-thumb {
        display: none
    }



    .slider-bottom-wripper {
        background-color: #333
    }
}

.slider-img {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%
}

.slider-img:before {
    background-color: rgba(0, 0, 0, .45);
    content: "";
    height: 100%;
    width: 100%;
    z-index: 2
}

.text-wrapper {
    height: 100%;
    padding-top: 46px;
    width: 100%;
    z-index: 3
}

.slider__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;
    max-width: 1170px;
    width: 100%
}

.signature {
    margin-left: 106px
}

.slider__menu {
    margin-right: 37px
}

.slider-img__slide {
    height: 100%;
    overflow: hidden
}

.slider-img__bg {
    height: 100%;
    min-height: 636px;
    width: 100%
}

.slider-img__bg,
.slider-img__thumb {
    background-position: 50%;
    background-size: cover
}

.slider-img__thumb {
    min-height: 163px
}

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

.slider-thumb,
.thumb {
    height: 100%;
    width: 100%
}

.slider-thumb {
    margin-right: 26px;
    max-width: 282px;
    overflow: hidden;
    position: relative
}

.slider-thumb :last-child {
    margin-right: 0
}

.slider {
    height: 100%;
    position: relative;
    width: 100%;
    background-image: url(../images/dist/slide1.jpg);
    padding: 10px 0 170px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width:500px) {
    .signature {
        margin-left: 20px
    }
}

.slider-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 10%;
    width: 100%
}

.slider-center,
.text-center-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.text-center-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 540px
}

.slider-pagination {
    position: relative;
    width: 0%;
    display: none;
}

.swiper-pagination-bullet-active {
    background-color: #eb2828
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0
}

.swiper-pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50px;
    justify-content: space-between
}

.slider__title {
    color: #fff
}

.slider__title h1 {
    font-size: 64px;
    letter-spacing: .02em;
    margin-bottom: 20px
}

.preheader,
.slider__title h1 {
    font-family: futurapt-3s, sans-serif;
    font-weight: 500;
    line-height: 95.7%;
    text-transform: uppercase
}
p.avtot {
    margin-bottom: 4px;
    font-weight: 100;
    font-size: 20px;
}
.preheader {
    font-size: 21px;
    letter-spacing: .255em;
    margin-bottom: 0
}

.slider__desc {
    font-family: opensans-3s, sans-serif;
    font-size: 21px;
    font-weight: 300;
    letter-spacing: -.035em;
    line-height: 122.2%;
    margin-bottom: 30px
}

@media screen and (max-width:500px) {
    .slider-pagination {
        position: static;
        width: 0
    }

    .slider-center {
        align-items: center;
        margin: 0 auto;
        max-width: 340px;
        padding-left: 0;
    }

.slider__desc br{
	display:none;
}







    .slider__title h1 {
        font-size: 73px
    }

    .slider__header {
        margin-bottom: 70px
    }

    .preheader {
        margin-bottom: 20px
    }

    .swiper-pagination {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        justify-content: center
    }
}



.easy-slider .btn-left {
    font-weight: 900;
    border-radius: 0px 0 0 0px;
    height: 49px;
    background: #eb2828;
    padding: 0 16px;
    position: relative;
    top: 100px;
    left: -10px;
}
.slider-wrapper button.btn.btn-right {
    font-weight: 900;
    border-radius: 0px 0 0 0px;
    height: 49px;
    background: #eb2828;
    padding: 0 16px;
    position: relative;
    top: 100px;
    right: -10px;
}

.card-header iframe {
    height: 230px!important;
	width: 100%;
}
.easy-slider {
    justify-content: space-around;
}
@media screen and (max-width: 1100px){
.kurs-text {
    background-size: 30%;
	    padding-left: 38%;

}





}
@media screen and (max-width: 992px){
.left-img, .rigt-img {
    display: none;
}	
.left-img, .rigt-img {
    display: none;
}	
	
.desc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    margin: 0 auto 67px;
    max-width: 95%;
}
.kailas-wrapper {
    padding: 20px;
}
.grid-title {
    font-family: opensans-3s, sans-serif;
    font-size: 13px;
    font-weight: 900;
}

.futer-video__decoration {
    display: none;
}
.video-item {
    margin-top: 20px;
}





}

@media screen and (max-width: 768px){
	.programs-item__grid {
        display: block
    }
.kailas__bottom img {
    bottom: 0px;
    position: relative;
    right: 0px;
    margin-top: 25px;
    margin-left: auto;
    display: block;
}


.rewiews .rew-wrapper{
   width: 100%;
    padding: 0 50px;
   
}
.easy-slider .btn-left {
    left: 0px;
}
.slider-wrapper button.btn.btn-right {
    right: 0px;
}
.kurs-text {
    background-size: 410px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url(../images/dist/kurs2.jpg);
    padding: 253px 20px 10px 30px;
}




}
 


@media screen and (max-width:768px) {
	.duiko-wrapper img {
    height: 100%;
    display: none;
}





.kailas__top img {
    left: 0px;
    position: relative;
    top: -40px;
}	
.kailas__top {
    display: block;

}	
img{
	max-width:100%;
}
.kailas__bottom {
    display: block;
}
.duiko {
    padding: 30px 10px;
}

.slider {
    padding: 10px 0 70px;
}
    .slider-bottom__text {
        display: none;
        margin: 20px;
        max-width: 100%
    }
.signature {
    display: none;
}

.slider__header {
    margin-bottom: 10px;
}
.header-wrapper {
    padding: 0 10px;
}
  .desc-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5px;
        max-width: 85%;
        padding-top: 30px;
        text-align: justify
    }





}