@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%, 0.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: 0.25;
}
hr:not([size]) {
    height: 1px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.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 + 0.9vw);
}
@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}
h3 {
    font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}
h4 {
    font-size: calc(1.275rem + 0.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: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 0.875em;
}
mark {
    background-color: #fcf8e3;
    padding: 0.2em;
}
sub,
sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.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: 0.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: 0.875em;
}
a > code {
    color: inherit;
}
kbd {
    background-color: #212529;
    border-radius: 0.2rem;
    color: #fff;
    font-size: 0.875em;
    padding: 0.2rem 0.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: 0.5rem;
    padding-top: 0.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 + 0.3vw);
    line-height: inherit;
    margin-bottom: 0.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;
}
body.compensate-for-scrollbar {
    overflow: hidden;
}
.fancybox-active {
    height: auto;
}
.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}
.fancybox-container {
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}
.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}
.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    visibility: hidden;
    z-index: 99997;
}
.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}
.fancybox-infobar {
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-touch-callout: none;
    color: #ccc;
    font-size: 13px;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fancybox-toolbar {
    right: 0;
    top: 0;
}
.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}
.fancybox-slide {
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}
.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block;
}
.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}
.fancybox-slide--image:before {
    display: none;
}
.fancybox-slide--html {
    padding: 6px;
}
.fancybox-content {
    -webkit-overflow-scrolling: touch;
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.fancybox-container [data-selectable="true"] {
    cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}
.fancybox-spaceball {
    z-index: 1;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}
.fancybox-slide--video .fancybox-content {
    background: #000;
}
.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}
.fancybox-iframe,
.fancybox-video {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}
.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}
.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}
.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc;
}
.fancybox-button:hover {
    color: #fff;
}
.fancybox-button:focus {
    outline: none;
}
.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}
.fancybox-button div {
    height: 100%;
}
.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}
.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}
.footer-pochta {
	font-size: 20px !important;
}
.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
    display: none;
}
.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: 0.8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}
.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}
.fancybox-navigation .fancybox-button div {
    padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
}
.fancybox-caption {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgba(0, 0, 0, 0.85)),
        color-stop(50%, rgba(0, 0, 0, 0.3)),
        color-stop(65%, rgba(0, 0, 0, 0.15)),
        color-stop(75.5%, rgba(0, 0, 0, 0.075)),
        color-stop(82.85%, rgba(0, 0, 0, 0.037)),
        color-stop(88%, rgba(0, 0, 0, 0.019)),
        to(transparent)
    );
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}
.fancybox-caption--separate {
    margin-top: -50px;
}
.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}
.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}
.fancybox-loading {
    -webkit-animation: a 1s linear infinite;
    animation: a 1s linear infinite;
    background: transparent;
    border: 4px solid;
    border-color: #888 #888 #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-1turn);
    -ms-transform: rotate(-1turn);
    transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0);
}
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1);
}
@media (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }
    .fancybox-slide--image {
        padding: 6px 0;
    }
    .fancybox-close-small {
        right: -6px;
    }
    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }
    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}
.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px;
}
.fancybox-share p {
    margin: 0;
    padding: 0;
}
.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.fancybox-share__button:link,
.fancybox-share__button:visited {
    color: #fff;
}
.fancybox-share__button:hover {
    text-decoration: none;
}
.fancybox-share__button--fb {
    background: #3b5998;
}
.fancybox-share__button--fb:hover {
    background: #344e86;
}
.fancybox-share__button--pt {
    background: #bd081d;
}
.fancybox-share__button--pt:hover {
    background: #aa0719;
}
.fancybox-share__button--tw {
    background: #1da1f2;
}
.fancybox-share__button--tw:hover {
    background: #0d95e8;
}
.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}
.fancybox-share__button svg path {
    fill: #fff;
}
.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
.fancybox-thumbs {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    top: 0;
    width: 212px;
    z-index: 99995;
}
.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}
.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}
.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}
.fancybox-thumbs__list a {
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100px;
}
.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}
.fancybox-thumbs__list a:focus:before {
    opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1;
}
@media (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}
@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-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, 0.15);
}
.swiper-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: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 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, 0.5)), to(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(90deg, rgba(0, 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, 0.5)), to(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(0deg, rgba(0, 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, 0.5)), to(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(180deg, rgba(0, 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 {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: y mandatory;
    -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-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: 0.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 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.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(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.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(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 {
    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, 0.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 0.2s, -webkit-transform 0.2s;
    transition: top 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s;
    transition: transform 0.2s, top 0.2s, -webkit-transform 0.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 0.2s, -webkit-transform 0.2s;
    transition: left 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, left 0.2s;
    transition: transform 0.2s, left 0.2s;
    transition: transform 0.2s, left 0.2s, -webkit-transform 0.2s;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: right 0.2s, -webkit-transform 0.2s;
    transition: right 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, right 0.2s;
    transition: transform 0.2s, right 0.2s;
    transition: transform 0.2s, right 0.2s, -webkit-transform 0.2s;
}
.swiper-pagination-progressbar {
    background: rgba(0, 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, 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, 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 {
    -webkit-animation: swiper-preloader-spin 1s linear infinite;
    animation: swiper-preloader-spin 1s linear infinite;
    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-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes swiper-preloader-spin {
    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: 0.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;
}
@font-face {
    font-family: TTFirsNeue;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/TTFirsNeue-ExtraLight.woff2) format("woff2");
}
@font-face {
    font-family: TTFirsNeue;
    font-style: italic;
    font-weight: 200;
    src: url(../fonts/TTFirsNeue-ExtraLightItalic.woff2) format("woff2");
}
@font-face {
    font-family: TTFirsNeue;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/TTFirsNeue-Regular.woff2) format("woff2");
}
@font-face {
    font-family: TTFirsNeue;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/TTFirsNeue-Italic.woff2) format("woff2");
}
@font-face {
    font-family: TTFirsNeue;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/TTFirsNeue-Bold.woff2) format("woff2");
}
@font-face {
    font-family: TTFirsNeue;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/TTFirsNeue-BoldItalic.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: #2340d9;
    color: #fff;
}
::selection {
    background-color: #2340d9;
    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: #000;
    font-family: TTFirsNeue;
    font-size: 18px;
    line-height: 1.3;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}
@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
    }
}
.container {
    margin: 0 auto;
    width: 1315px;
}
.btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #d9e739;
    color: initial;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    justify-content: center;
    padding: 0 30px;
    text-decoration: none;
}
@media (max-width: 1169.98px) {
    .btn {
        height: 45px;
        padding: 0 15px;
    }
}
.btn-2 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    border: 1px solid #fff;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    justify-content: center;
    padding: 0 30px;
    text-decoration: none;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
@media (max-width: 1169.98px) {
    .btn-2 {
        height: 45px;
        padding: 0 15px;
    }
}
.btn-2:hover {
    background-color: #fff;
    color: #fff;
    color: #000;
}
.s-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin: 0;
}
@media (max-width: 1169.98px) {
    .s-title {
        font-size: 32px;
    }
}
@media (max-width: 767.98px) {
    .s-title {
        font-size: 22px;
    }
}
.s-title span {
    color: #2340d9;
}
.s-desc {
    color: #9599ad;
    font-size: 22px;
    line-height: 130%;
}
@media (max-width: 1169.98px) {
    .s-desc {
        font-size: 18px;
    }
}
@media (max-width: 767.98px) {
    .s-desc {
        font-size: 14px;
    }
}
.s-title + .s-desc {
    margin-top: 35px;
}
@media (max-width: 767.98px) {
    .s-title + .s-desc {
        margin-top: 10px;
    }
}
.header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
@media (max-width: 991.98px) {
    .header {
        display: none;
    }
}
.header__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    justify-content: space-between;
    padding: 19px 0;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
.header__city,
.header__top,
.header__top-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__city {
    margin-left: 60px;
}
@media (max-width: 1314.98px) {
    .header__city {
        font-size: 12px;
        margin-left: 20px;
    }
}
.header__city:before {
    background-image: url(../images/svg/city.svg);
    content: "";
    display: inline-block;
    height: 16px;
    margin-right: 7px;
    width: 16px;
}
.header__menu-top,
.header__top-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__menu-top {
    list-style-type: none;
    margin: 0;
}
@media (max-width: 1169.98px) {
    .header__menu-top {
        padding: 0;
    }
}
.header__menu-top a {
    color: #fff;
    text-decoration: none;
}
@media (max-width: 1314.98px) {
    .header__menu-top a {
        font-size: 10px;
    }
}
.header__menu-top li + li {
    margin-left: 19px;
}
@media (max-width: 1314.98px) {
    .header__menu-top li + li {
        margin-left: 10px;
    }
}
.header__adres {
    margin-left: 25px;
}
@media (max-width: 1169.98px) {
    .header__adres {
        font-size: 10px;
        margin-left: 15px;
    }
}
.header__time-mail {
    font-size: 12px;
    margin-left: 25px;
}
@media (max-width: 1169.98px) {
    .header__time-mail {
        font-size: 10px;
        margin-left: 15px;
    }
}
.header__time-mail b:after {
    content: "•";
    display: inline-block;
    margin: 0 3px 0 5px;
}
.header__time-mail a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
}
.header__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 24px 0 0;
}
.header .btn,
.header__bottom {
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
.header__bottom-left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__bottom-left,
.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1314.98px) {
    .header__logo img {
        max-width: 140px;
    }
}
.header__main-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 0 45px;
}
@media (max-width: 1314.98px) {
    .header__main-nav {
        margin: 0 0 0 20px;
        padding: 0;
    }
}
.header__main-nav li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style-type: none;
}
.header__main-nav li:first-child a:before {
    background-image: url(../images/svg/list.svg);
    content: "";
    display: inline-block;
    height: 20px;
    margin-right: 10px;
    width: 20px;
}
.header__main-nav li a {
    -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-size: 16px;
    text-decoration: none;
}
@media (max-width: 1314.98px) {
    .header__main-nav li a {
        font-size: 12px;
    }
}
.header__main-nav li + li {
    margin-left: 25px;
}
@media (max-width: 1169.98px) {
    .header__main-nav li + li {
        margin-left: 15px;
    }
}
.header__bottom-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__bottom-right,
.header__tel {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__tel {
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
}
.header__tel:before {
    background-image: url(../images/svg/tel.svg);
    content: "";
    height: 16px;
    margin-right: 8px;
    width: 16px;
}
@media (max-width: 1169.98px) {
    .header__tel {
        font-size: 12px;
    }
}
.header__links {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    margin: 0 25px;
}
.header__links a + a {
    margin-left: 10px;
}
.header.sticky {
    background-color: #2340d9;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
}
.header.sticky .btn {
    height: 40px;
}
.header.sticky .header__top {
    padding: 10px 0;
}
.header.sticky .header__bottom {
    margin: 10px 0 0;
}
.header.sticky .header__logo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.main {
    background-position: 50%;
    background-size: cover;
    position: relative;
}
.main:before {
    background: rgba(32, 64, 237, 0.8);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.main__btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
}
.main__btns a {
    height: 72px;
}
@media (max-width: 991.98px) {
    .main__btns a {
        height: 45px;
    }
}
.main__btns a + a {
    margin-left: 20px;
}
.main .container {
    min-height: 680px;
    padding-bottom: 190px;
    padding-top: 245px;
    position: relative;
    z-index: 3;
}
@media (max-width: 1314.98px) {
    .main .container {
        min-height: 580px;
        padding: 160px 0 100px;
    }
}
@media (max-width: 991.98px) {
    .main .container {
        min-height: auto;
        padding: 45px 10px;
    }
}
.main__img {
    bottom: 0;
    left: 68%;
    position: absolute;
    z-index: -1;
}
@media (max-width: 1314.98px) {
    .main__img {
        left: auto;
        right: -200px;
    }
}
@media (max-width: 991.98px) {
    .main__img {
        display: none;
    }
}
.main__img:before {
    background: #2340d9;
    bottom: 0;
    content: "";
    height: 295px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}
.main__img img {
    max-height: 489px;
    max-width: 730px;
    position: relative;
    z-index: 2;
}
.main__title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 110%;
}
@media (max-width: 991.98px) {
    .main__title {
        font-size: 28px;
    }
}
.main__desc {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    margin: 25px 0 0;
}
@media (max-width: 991.98px) {
    .main__desc {
        font-size: 16px;
    }
}
.main__text {
    max-width: 800px;
}
.section-2 .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 150px 0;
    position: relative;
}
@media (max-width: 1169.98px) {
    .section-2 .container {
        padding: 60px 10px;
    }
}
@media (max-width: 767.98px) {
    .section-2 .container {
        padding: 40px 10px;
    }
}
@media (max-width: 991.98px) {
    .section-2 .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.section-2 .container img {
    margin-left: -40px;
}
@media (max-width: 991.98px) {
    .section-2 .container img {
        display: none;
    }
}
.section-2 .container:before {
    background: #f2f3f8;
    bottom: 0;
    content: "";
    left: -50vw;
    position: absolute;
    top: 0;
    width: calc(50vw + 68%);
    z-index: -1;
}
@media (min-width: 768px) {
    .section-2__text-left {
        width: 685px;
    }
}
.section-2__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
}
.section-2__title span {
    color: #2340d9;
}
.section-2__desc {
    margin-top: 30px;
}
.section-2__text-right {
    margin-left: 40px;
    width: 345px;
}
@media (max-width: 991.98px) {
    .section-2__text-right {
        margin: 20px 0 0;
        width: 100%;
    }
}
.section-2__counter {
    color: #c9ccde;
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 1169.98px) {
    .section-2__counter {
        font-size: 80px;
    }
}
@media (max-width: 767.98px) {
    .section-2__counter {
        font-size: 50px;
    }
}
.section-2__desc-counter {
    color: #2340d9;
    font-size: 22px;
    line-height: 130%;
    margin-top: 22px;
}
@media (max-width: 1169.98px) {
    .section-2__desc-counter {
        font-size: 17px;
    }
}
@media (max-width: 991.98px) {
    .section-2__desc-counter {
        margin: 0;
    }
}
@media (max-width: 767.98px) {
    .section-2__desc-counter {
        font-size: 14px;
    }
}
@media (max-width: 991.98px) {
    .prems br {
        display: none;
    }
}
.prems .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1169.98px) {
    .prems .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.prems__text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 100px 100px 90px 0;
    width: 68%;
}
@media (max-width: 1169.98px) {
    .prems__text {
        padding: 45px 0;
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .prems__text {
        padding: 40px 0;
    }
}
.prems .s-desc {
    margin-top: 25px;
}
@media (max-width: 1169.98px) {
    .prems__img {
        display: none;
    }
}
.prems__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: auto;
}
.prems__list {
    -ms-grid-columns: 1fr 45px 1fr;
    counter-reset: num;
    display: -ms-grid;
    display: grid;
    gap: 45px;
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 0 0;
    padding: 0;
}
@media (max-width: 991.98px) {
    .prems__list {
        gap: 20px;
    }
}
@media (max-width: 767.98px) {
    .prems__list {
        gap: 10px;
        margin: 20px 0 0;
    }
}
.prems__list li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #2340d9;
    counter-increment: num;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    line-height: 130%;
    list-style-type: none;
}
@media (max-width: 991.98px) {
    .prems__list li {
        font-size: 16px;
    }
}
@media (max-width: 767.98px) {
    .prems__list li {
        font-size: 14px;
    }
}
.prems__list li:nth-child(-n + 9) .prems__item-text:before {
    content: "0" counter(num);
}
.prems__icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-negative: 0;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-shrink: 0;
    height: 48px;
    justify-content: center;
    margin-right: 12px;
    margin-top: 52px;
    width: 48px;
}
.prems__icon img {
    max-height: 100%;
    max-width: 100%;
}
@media (max-width: 767.98px) {
    .prems__icon {
        display: none;
    }
}
.prems__item-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}
.prems__item-text:before {
    color: #c9ccde;
    content: counter(num);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}
@media (max-width: 767.98px) {
    .prems__item-text:before {
        font-size: 24px;
        margin-bottom: 5px;
    }
}
.counters .container {
    -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 0 100px;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 70px;
    position: relative;
}
@media (max-width: 767.98px) {
    .counters .container {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 30px 10px;
    }
}
.counters .container:before {
    background: #f2f3f8;
    bottom: 0;
    content: "";
    left: -50vw;
    position: absolute;
    top: 0;
    width: calc(50vw + 68%);
    z-index: -1;
}
@media (max-width: 767.98px) {
    .counters .container:before {
        left: 0;
        width: 100%;
    }
}
.counters__count {
    color: #c9ccde;
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 1314.98px) {
    .counters__count {
        font-size: 80px;
    }
}
@media (max-width: 991.98px) {
    .counters__count {
        font-size: 50px;
        gap: 40px;
    }
}
@media (max-width: 767.98px) {
    .counters__count {
        font-size: 36px;
    }
}
.counters__text {
    color: #2340d9;
    font-size: 20px;
    line-height: 130%;
    margin-top: 22px;
}
@media (max-width: 1169.98px) {
    .counters__text {
        font-size: 16px;
    }
}
@media (max-width: 991.98px) {
    .counters__text {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .counters__text {
        margin: 10px 0 0;
    }
}
.map {
    margin-top: 40px;
}
.map .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.map__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 415px;
    flex: 1 0 415px;
    margin-right: 30px;
}
@media (min-width: 768px) {
    .map__text .btn {
        margin-top: 30px;
    }
}
.map__img img {
    height: auto;
    max-width: 100%;
}
@media (max-width: 767.98px) {
    .map__img {
        display: none;
    }
}
.objects {
    margin-top: 40px;
    overflow: hidden;
}
.objects .container {
    padding-bottom: 80px;
    position: relative;
}
@media (max-width: 767.98px) {
    .objects .container {
        padding-bottom: 20px;
    }
}
.objects .container:after {
    background: #f2f3f8;
    bottom: 0;
    content: "";
    height: 210px;
    position: absolute;
    right: -50vw;
    width: calc(50vw + 68%);
    z-index: -1;
}
.objects__top-nav {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.objects__arrow,
.objects__top-nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.objects__arrow > div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 72px;
    justify-content: center;
    width: 72px;
}
@media (max-width: 767.98px) {
    .objects__arrow > div {
        height: 45px;
        width: 45px;
    }
}
.objects__next {
    background-color: #d9e739;
}
.objects__slider {
    margin-top: 30px;
    overflow: hidden;
}
.objects__slider-img {
    height: 120px;
}
.objects__slider-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.objects__slider-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    margin-top: 20px;
}
@media (max-width: 767.98px) {
    .objects__slider-title {
        font-size: 16px;
    }
}
.main-text {
    margin-top: 110px;
    padding-bottom: 120px;
}
@media (max-width: 991.98px) {
    .main-text {
        margin: 40px 0 0;
        padding-bottom: 40px;
    }
}
.main-text__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-text__item ul {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 10px 20px;
    grid-template-columns: repeat(3, 1fr);
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}
.main-text__item ul li {
    border-bottom: 1px solid #e3e6f7;
    color: #2340d9;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 8px;
}
.main-text__item + div {
    margin-top: 120px;
}
@media (max-width: 991.98px) {
    .main-text__item + div {
        margin-top: 80px;
    }
}
@media (max-width: 767.98px) {
    .main-text__item + div {
        margin-top: 50px;
    }
}
@media (min-width: 992px) {
    .main-text__item:nth-child(2n) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .main-text__item:nth-child(2n) .main-text__text {
        margin: 0 85px 0 0;
    }
    .main-text__item:nth-child(2n) .main-text__gallery {
        margin: 0 -300px 0 0;
    }
    .main-text__item:nth-child(2n) .main-text__nav {
        left: 0;
        right: auto;
    }
}
@media (max-width: 991.98px) {
    .main-text__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.main-text__init {
    overflow: hidden;
}
.main-text__nav {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    bottom: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    z-index: 2;
}
.main-text__nav > div {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 72px;
    justify-content: center;
    width: 72px;
}
@media (max-width: 767.98px) {
    .main-text__nav > div {
        height: 45px;
        width: 45px;
    }
}
.main-text__prev {
    background-color: #fff;
}
.main-text__next {
    background-color: #f2f3f8;
}
.main-text .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 385px;
}
@media (max-width: 991.98px) {
    .main-text .swiper-slide {
        height: 280px;
    }
}
@media (max-width: 767.98px) {
    .main-text .swiper-slide {
        height: 240px;
    }
}
.main-text__gallery {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    position: relative;
}
@media (min-width: 992px) {
    .main-text__gallery {
        margin-left: -300px;
    }
}
@media (max-width: 991.98px) {
    .main-text__gallery {
        width: 100%;
    }
}
.main-text__gallery img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.main-text__text {
    -ms-flex-negative: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-shrink: 0;
}
@media (min-width: 992px) {
    .main-text__text {
        margin-left: 85px;
        width: 52%;
    }
}
@media (max-width: 991.98px) {
    .main-text__text {
        margin: 30px 0 0;
    }
}
.main-text .s-title {
    margin-bottom: 30px;
}
@media (max-width: 1169.98px) {
    .main-text .s-title {
        margin-bottom: 15px;
    }
}
.main-text__btns {
    font-size: 0;
    margin-top: auto;
}
.main-text__btns a + a {
    margin-left: 20px;
}
.main-text .btn-2 {
    border: 1px solid #c9ccde;
    color: #000;
}
.form {
    background-color: #f2f3f8;
}
@media (max-width: 1169.98px) {
    .form {
        padding: 30px 0;
    }
}
.form .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.form__img {
    margin-left: -50px;
    margin-right: 50px;
    margin-top: -24px;
}
.form__img img {
    max-width: 450px;
}
@media (max-width: 1314.98px) {
    .form__img img {
        max-width: 350px;
    }
}
@media (max-width: 1169.98px) {
    .form__img {
        display: none;
    }
}
.form__fields {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    .form__fields {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media (min-width: 768px) {
    .form__fields > :not(:last-child) {
        margin-right: 20px;
    }
}
@media (max-width: 767.98px) {
    .form__fields > :not(:last-child) {
        margin-bottom: 10px;
    }
}
.form__tel {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 265px;
}
@media (max-width: 767.98px) {
    .form__tel {
        width: 250px;
    }
}
.form__tel input {
    background-color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 400;
    height: 70px;
    padding: 0 22px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .form__tel input {
        height: 45px;
    }
}
.form__tel input::-webkit-input-placeholder {
    color: #000;
}
.form__tel input::-moz-placeholder {
    color: #000;
}
.form__tel input:-ms-input-placeholder {
    color: #000;
}
.form__tel input::-ms-input-placeholder {
    color: #000;
}
.form__tel input::placeholder {
    color: #000;
}
.form__submit {
    width: 250px;
}
.form__submit input {
    background: #d9e739;
    border: none;
    font-size: 16px;
    font-weight: 400;
    height: 70px;
    padding: 0 30px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .form__submit input {
        height: 45px;
    }
}
.form__checkbox {
    color: #bbbfd0;
    font-size: 12px;
    line-height: 130%;
}
@media (max-width: 767.98px) {
    .form__checkbox {
        text-align: center;
    }
}
.main-objects {
    margin-top: 130px;
}
@media (max-width: 1314.98px) {
    .main-objects {
        margin-top: 80px;
    }
}
@media (max-width: 767.98px) {
    .main-objects {
        margin-top: 30px;
    }
}
.main-objects__wrapper {
    -ms-grid-columns: 1fr 15px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 55px 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
}
@media (max-width: 767.98px) {
    .main-objects__wrapper {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
.main-objects__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 305px;
    justify-content: flex-end;
    position: relative;
}
@media (max-width: 1169.98px) {
    .main-objects__item {
        height: 280px;
    }
}
@media (max-width: 767.98px) {
    .main-objects__item {
        height: auto;
        min-height: 260px;
    }
}
.main-objects__item img {
    bottom: 0;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}
.main-objects__item:before {
    background: -o-linear-gradient(270.25deg, rgba(0, 0, 0, 0) 19.8%, rgba(0, 0, 0, 0.62) 99.78%);
    background: linear-gradient(179.75deg, rgba(0, 0, 0, 0) 19.8%, rgba(0, 0, 0, 0.62) 99.78%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
.main-objects__text {
    margin-bottom: -35px;
    padding-left: 25px;
    position: relative;
    z-index: 3;
}
@media (max-width: 767.98px) {
    .main-objects__text {
        margin-bottom: 0;
        padding-right: 25px;
        padding-top: 30px;
    }
}
.main-objects__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 10px;
}
@media (max-width: 767.98px) {
    .main-objects__title {
        font-size: 16px;
    }
}
.main-objects__desc {
    color: #fff;
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 15px;
}
@media (max-width: 767.98px) {
    .main-objects__desc {
        font-size: 14px;
    }
}
.main-objects__bottom {
    background: #2340d9;
    color: #fff;
    margin-left: -25px;
    max-width: 80%;
    padding: 12px 70px 12px 25px;
    position: relative;
}
.main-objects__bottom:after {
    background-image: url(../images/svg/arrow.svg);
    bottom: 0;
    content: "";
    display: block;
    height: 32px;
    margin: auto;
    position: absolute;
    right: 23px;
    top: 0;
    width: 32px;
}
.main-objects__direction {
    font-size: 12px;
}
.main-objects__main-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
}
@media (max-width: 767.98px) {
    .main-objects__main-title {
        font-size: 14px;
    }
}
.main-objects__load {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    margin-top: 70px;
}
@media (max-width: 767.98px) {
    .main-objects__load {
        height: 45px;
        margin-top: 20px;
    }
}
.main-objects__load-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-negative: 0;
    align-items: center;
    background: #d9e739;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-shrink: 0;
    height: 100%;
    justify-content: center;
    margin-right: 4px;
    width: 60px;
}
.main-objects__load-icon:before {
    background-image: url(../images/svg/load.svg);
    content: "";
    height: 40px;
    width: 40px;
}
.main-objects__load-text {
    -webkit-box-flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f2f3f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    height: 100%;
    padding: 0 24px;
}
.advantage {
    margin-top: 110px;
}
@media (max-width: 767.98px) {
    .advantage {
        margin: 40px 0 0;
    }
}
.advantage .container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 1169.98px) {
    .advantage .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.advantage .btn {
    margin-top: 25px;
}
@media (max-width: 767.98px) {
    .advantage .btn {
        margin-top: 15px;
    }
}
.advantage__left-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 400px;
    flex: 1 0 400px;
    margin-right: 60px;
}
@media (max-width: 1169.98px) {
    .advantage__left-text {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}
.advantage__wrap {
    -ms-grid-columns: 1fr 100px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 14px 100px;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1169.98px) {
    .advantage__wrap {
        gap: 15px;
        margin: 20px 0 0;
    }
}
@media (max-width: 767.98px) {
    .advantage__wrap {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
.advantage__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    background: #f2f3f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 165px;
    padding: 25px 80px 25px 25px;
    position: relative;
}
@media (max-width: 1169.98px) {
    .advantage__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        min-height: auto;
        padding: 15px;
    }
}
@media (max-width: 767.98px) {
    .advantage__item {
        font-size: 12px;
    }
}
.advantage__icon {
    bottom: 10px;
    height: 100px;
    position: absolute;
    right: -50px;
    width: 100px;
}
@media (max-width: 1169.98px) {
    .advantage__icon {
        bottom: auto;
        height: 80px;
        margin-left: -10px;
        position: relative;
        right: auto;
        width: 80px;
    }
}
@media (max-width: 767.98px) {
    .advantage__icon {
        height: 60px;
        width: 60px;
    }
}
.advantage__icon img {
    max-width: 100%;
}
.about {
    margin-top: 140px;
}
@media (max-width: 991.98px) {
    .about {
        margin: 40px 0 0;
    }
}
.about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 991.98px) {
    .about .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}
.about .s-title {
    margin-bottom: 25px;
    margin-top: -8px;
}
.about__video {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}
.about__video img {
    max-height: 385px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 991.98px) {
    .about__video img {
        display: block;
        margin: 20px auto 0;
        max-height: 250px;
        max-width: 100%;
    }
}
.about__text {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 85px;
    width: 52%;
}
@media (max-width: 991.98px) {
    .about__text {
        margin: 0;
        width: 100%;
    }
}
.about__btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0;
    margin-top: 25px;
}
.about__btns a + a {
    margin-left: 20px;
}
.about .btn-2 {
    border: 1px solid #c9ccde;
    color: #000;
}
.thx-company {
    margin-top: 110px;
}
@media (max-width: 991.98px) {
    .thx-company {
        margin: 40px 0 0;
    }
}
.thx-company__slider {
    position: relative;
}
.thx-company__slider .next,
.thx-company__slider .prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    bottom: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 85px;
    justify-content: center;
    margin: auto;
    position: absolute;
    top: 0;
    width: 85px;
}
@media (max-width: 1169.98px) {
    .thx-company__slider .next,
    .thx-company__slider .prev {
        height: 50px;
        width: 50px;
    }
    .thx-company__slider .next svg,
    .thx-company__slider .prev svg {
        max-height: 100%;
        max-width: 100%;
    }
    .thx-company__slider {
        margin: 0 auto;
        width: calc(100% - 100px);
    }
}
.thx-company__slider .prev {
    left: -80px;
}
@media (max-width: 1169.98px) {
    .thx-company__slider .prev {
        left: -50px;
    }
}
.thx-company__slider .next {
    right: -80px;
}
@media (max-width: 1169.98px) {
    .thx-company__slider .next {
        right: -50px;
    }
}
.thx-company__init {
    margin-top: 60px;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .thx-company__init {
        margin-top: 30px;
    }
}
.thx-company__logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 105px;
    justify-content: center;
    padding: 15px;
}
@media (max-width: 767.98px) {
    .thx-company__logo {
        height: 75px;
    }
}
.thx-company__logo img {
    max-height: 100%;
    max-width: 100%;
}
.thx-company__img {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background: #f2f3f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    padding: 10px 12px;
}
.thx-company__img img {
    max-height: 100%;
    max-width: 100%;
}
.thx-company .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    outline: none;
}
.form-bottom {
    background-color: #2340d9;
    margin-top: 110px;
    overflow: hidden;
}
@media (max-width: 1314.98px) {
    .form-bottom {
        padding: 40px 0 0;
    }
    .form-bottom br {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .form-bottom {
        margin-top: 40px;
        padding-bottom: 40px;
    }
}
.form-bottom .container {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.form-bottom .container .form__wrap {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 70px;
    margin-right: 95px;
    position: relative;
    width: 820px;
    z-index: 3;
}
@media (max-width: 991.98px) {
    .form-bottom .container .form__wrap {
        margin: 0;
        width: 100%;
    }
}
.form-bottom .container .s-desc,
.form-bottom .container .s-title {
    color: #fff;
}
.form-bottom__image {
    position: relative;
}
@media (max-width: 1314.98px) {
    .form-bottom__image {
        display: none;
    }
}
.form-bottom__image img {
    max-width: 730px;
    position: relative;
    z-index: 4;
}
.form-bottom__image:before {
    background-color: #2f4eed;
    bottom: 0;
    content: "";
    height: 260px;
    left: -100vw;
    position: absolute;
    right: 0;
    z-index: 1;
}
.form-bottom__image:after {
    background-color: #d9e739;
    bottom: 0;
    content: "";
    height: 260px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
}
.footer {
    background-color: #2340d9;
    padding: 55px 0 17px;
}
@media (max-width: 991.98px) {
    .footer {
        margin-top: 40px;
    }
}
.footer__main {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991.98px) {
    .footer__main {
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
.footer__item-contact + div {
    margin-top: 32px;
}
@media (max-width: 767.98px) {
    .footer__item-contact + div {
        margin-top: 15px;
    }
}
.footer__t-contact {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}
@media (max-width: 767.98px) {
    .footer__t-contact {
        font-size: 16px;
    }
}
.footer__d-contact {
    color: #8c9eff;
    font-size: 14px;
    line-height: 1;
    margin-top: 8px;
}
@media (max-width: 767.98px) {
    .footer__d-contact {
        font-size: 12px;
    }
}
.footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer__nav svg {
    stroke: #fff;
    margin-right: 12px;
    width: 26px;
}
.footer__nav li a,
.footer__nav svg {
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
.footer__nav li a {
    -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-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}
.footer__nav li a:hover {
    color: #d9e739;
}
.footer__nav li a:hover svg {
    stroke: #d9e739;
}
.footer__nav li + li {
    margin-top: 25px;
}
@media (max-width: 767.98px) {
    .footer__nav li + li {
        margin-top: 10px;
    }
}
.footer__socials li a {
    -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-size: 16px;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
.footer__socials li a:hover {
    color: #d9e739;
}
.footer__socials li a img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: auto;
    margin-right: 12px;
    width: 34px;
}
.footer__socials li + li {
    margin-top: 25px;
}
@media (max-width: 767.98px) {
    .footer__socials li + li {
        margin-top: 10px;
    }
}
.footer__copy {
    color: #7e93ff;
    font-size: 12px;
    margin-top: 60px;
}
.footer__copy * + * {
    margin-left: 15px;
}
.footer__copy a {
    color: #7e93ff;
}
.footer a.footer__t-contact {
    font-size: 30px;
}
@media (max-width: 1314.98px) {
    .footer a.footer__t-contact {
        font-size: 28px;
    }
    .container {
        width: 1070px;
    }
}
@media (max-width: 1169.98px) {
    .container {
        width: 992px;
    }
}
@media (max-width: 991.98px) {
    .container {
        width: 768px;
    }
}
@media (max-width: 767.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
    }
}
.mobile-wrapper {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
    display: none;
    left: 0;
    padding: 0 10px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 500;
}
.mobile-wrapper .header__logo img {
    -webkit-filter: invert(0.8);
    filter: invert(0.8);
    height: 35px;
    width: auto;
}
.invert-logo {
	    -webkit-filter: invert(0.8);
    filter: invert(0.8);
}
.mobile-wrapper .header__logo-text b,
.mobile-wrapper .header__logo-text span {
    color: #251f34;
}
.mobile-wrapper .header__logo-text span {
    margin-top: 5px;
}
@media (max-width: 991.98px) {
    .mobile-wrapper {
        display: block;
    }
}
.mobile-wrapper .bottom {
    background-color: #fff;
    bottom: 0;
    -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.33);
    height: calc(100vh - 60px);
    left: 0;
    margin-top: 60px;
    max-width: 85vw;
    overflow: auto;
    padding: 20px;
    position: fixed;
    right: auto;
    top: 0;
    -o-transform: translate(-200%);
    -moz-transform: translate(-200%);
    -webkit-transform: translate(-200%);
    -ms-transform: translate(-200%);
    transform: translate(-200%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 3;
}
.mobile-wrapper .adress_popover {
    width: 100%;
}
.header-top__phone {
    color: #2d2e33;
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
}
.mobile-wrapper .bottom.opened {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.bottom-mobile-phone {
    color: #000;
    font-size: 16px;
    line-height: 1;
    margin-top: 15px;
}
.bottom-mobile-phone .icon {
    background-color: #f4f4f4;
    border-radius: 50%;
    height: 25px;
    margin-right: 10px;
    width: 25px;
}
.bottom-mobile-phone .icon img {
    height: auto;
    max-width: 11px;
}
.bottom-social-mobile {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 35px;
}
.bottom-social-mobile a + a {
    margin-left: 30px;
}
.mobile-wrapper .bottom ul {
    font-size: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}
.mobile-wrapper .bottom ul + ul {
    margin-top: 30px;
}
.mobile-wrapper .bottom .menu a {
    color: #212529;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}
.mobile-wrapper .bottom .main-modal-menu a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    text-decoration: none;
}
.mobile-wrapper .bottom .main-modal-menu a:before {
    -ms-flex-negative: 0;
    background-color: #2340d9;
    content: "";
    flex-shrink: 0;
    height: 6px;
    margin-right: 10px;
    width: 6px;
}
.mobile-wrapper .bottom .menu li + li {
    margin-top: 7px;
}
.mobile-wrapper .bottom .city_popover a {
    margin: 5px 5px 0;
}
.mobile-wrapper .top {
    height: 60px;
    position: relative;
    z-index: 10;
}
.mobile-wrapper .logo img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    width: 50px;
}
.contact-mobile a,
.mobile-wrapper .logo img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    justify-content: center;
}
.contact-mobile a {
    background-color: #f4f4f4;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 35px;
    position: relative;
    width: 35px;
}
.contact-mobile a img {
    max-width: 100%;
}
.contact-mobile a + a {
    margin-left: 5px;
}
body.hidd,
html.hidd {
    overflow: hidden;
}
body.hidd {
    padding-right: 5px;
}
body.hidd:before {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
}
.hamburger {
    cursor: pointer;
    height: 14px;
    position: relative;
    width: 20px;
}
.hamburger,
.hamburger span {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}
.hamburger span {
    background: #2d2e33;
    display: block;
    height: 1.5px;
    left: 0;
    opacity: 1;
    position: absolute;
    width: 100%;
}
.hamburger span:first-child {
    top: 0;
}
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    bottom: 0;
    margin: auto;
    top: 0;
}
.hamburger span:nth-child(4) {
    bottom: 0;
    left: auto;
    right: 0;
    top: auto;
    width: 50%;
}
.hamburger.open span:first-child {
    left: 50%;
    top: 9px;
    width: 0;
}
.hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
    width: 0;
}
.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.diflex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.aifs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.aife {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.jcfs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.jcfe {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.jcc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.fwrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.fdc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.f-auto {
    width: auto;
}
.modal__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
}
@media (max-width: 767.98px) {
    .modal__title {
        font-size: 26px;
    }
}
.modal__form {
    margin: 30px 0 0;
    width: 700px;
}
@media (max-width: 880px) {
    .modal__form {
        width: 100%;
    }
}
.modal__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767.98px) {
    .modal__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
.modal__row + div {
    margin-top: 20px;
}
@media (max-width: 767.98px) {
    .modal__row + div {
        margin-top: 10px;
    }
}
.modal__input {
    position: relative;
    width: 100%;
}
.modal__input input {
    border: 1px solid #e1e6ee;
    font-size: 14px;
    height: 56px;
    line-height: 1;
    outline: none;
    padding: 25px 12px 5px;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    width: 100%;
}
.modal__input input::-webkit-input-placeholder {
    color: #b8bbcc;
}
.modal__input input::-moz-placeholder {
    color: #b8bbcc;
}
.modal__input input:-ms-input-placeholder {
    color: #b8bbcc;
}
.modal__input input::-ms-input-placeholder {
    color: #b8bbcc;
}
.modal__input input::placeholder {
    color: #b8bbcc;
}
.modal__input input:focus {
    border-color: #2340d9;
}
@media (min-width: 768px) {
    .modal__input + div {
        margin-left: 20px;
    }
}
@media (max-width: 767.98px) {
    .modal__input + div {
        margin-top: 10px;
    }
}
.modal__t-input {
    font-size: 12px;
    left: 12px;
    position: absolute;
    top: 7px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal__btns {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767.98px) {
    .modal__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .modal__btns .form__checkbox {
        margin-top: 10px;
    }
}
.modal .btn {
    -ms-flex-negative: 0;
    border: none;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .modal .btn {
        margin-right: 25px;
    }
}
.modal__company-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}
.modal p {
    margin-bottom: 0;
}
.modal p + p {
    margin-top: 20px;
}
.modal__slider {
    margin: 30px 0 30px -80px;
    position: relative;
    width: calc(100% + 160px);
}
@media (max-width: 767.98px) {
    .modal__slider {
        margin: 20px 0;
        width: 100%;
    }
}
@media (min-width: 768px) {
    .modal__wrapper {
        width: 700px;
    }
}
.modal__slider-init {
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .modal .swiper-slide {
        padding-top: 50%;
        position: relative;
    }
}
.modal .swiper-slide img {
    height: 440px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 767.98px) {
    .modal .swiper-slide img {
        bottom: 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
    }
}
.modal__arrows {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    z-index: 5;
}
.modal .next,
.modal .prev,
.modal__arrows {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.modal .next,
.modal .prev {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 70px;
    justify-content: center;
    width: 70px;
}
@media (max-width: 767.98px) {
    .modal .next,
    .modal .prev {
        height: 45px;
        width: 45px;
    }
}
.modal .prev {
    background-color: #fff;
}
.modal .next {
    background: #f2f3f8;
}
.modal {
    background: #fff;
    -webkit-box-shadow: 4px 4px 84px rgba(0, 0, 0, 0.09);
    box-shadow: 4px 4px 84px rgba(0, 0, 0, 0.09);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: visible;
    padding: 70px 80px;
    position: relative;
}
.modal:before {
    border: 27px solid #f2f3f8;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
@media (max-width: 767.98px) {
    .modal:before {
        border-width: 5px;
    }
}
@media (max-width: 767.98px) {
    .modal {
        padding: 25px 15px;
    }
}
.modal .fancybox-close-small {
    padding: 5px;
    right: 40px;
    top: 40px;
}
@media (max-width: 767.98px) {
    .modal .fancybox-close-small {
        color: #fff;
        right: -10px;
        top: -40px;
        z-index: 10;
    }
}
.fancybox__content {
    padding: 0;
}
.static-page {
    padding-top: 160px;
}
@media (max-width: 991.98px) {
    .static-page {
        padding-top: 80px;
    }
}
.static-page:not(.sticky) .header__top {
    border-bottom: 1px solid #e4e4e4;
}
.static-page:not(.sticky) .header__main-nav li a,
.static-page:not(.sticky) .header__menu-top a,
.static-page:not(.sticky) .header__top {
    color: #000;
}
.static-page:not(.sticky) .header__city:before,
.static-page:not(.sticky) .header__main-nav li:first-child a:before {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
.single-page {
    overflow: hidden;
}
.single-page__wrapper {
    margin: 40px 0 0;
}
.single-page__text,
.single-page__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-page__text {
    -ms-flex-negative: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-shrink: 0;
    margin-bottom: 80px;
    margin-right: 90px;
    margin-top: 40px;
    width: 585px;
}
.single-page__text .btn {
    margin-top: 35px;
}
@media (max-width: 767.98px) {
    .single-page__text .btn {
        margin-top: 15px;
    }
}
@media (max-width: 991.98px) {
    .single-page__text {
        margin: 0;
        width: 100%;
    }
}
.single-page__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 25px;
}
@media (max-width: 767.98px) {
    .single-page__title {
        font-size: 22px;
    }
}
.single-page p {
    color: #9599ad;
    font-size: 22px;
    line-height: 130%;
}
.single-page p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767.98px) {
    .single-page p {
        font-size: 16px;
    }
	.footer-pochta {
		font-size: 16px !important;
	}
}
.single-page__img {
    padding-left: 30px;
    position: relative;
}
@media (max-width: 991.98px) {
    .single-page__img {
        display: none;
    }
}
.single-page__img:before {
    background: #f2f3f8;
    content: "";
    height: 200px;
    left: 0;
    margin: auto;
    position: absolute;
    right: -50vw;
    top: 75px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: -1;
}
.single-page__img img {
    height: auto;
    max-width: 350px;
}
.bread {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.bread > * {
    color: #c8c8c8;
    text-decoration: none;
}
.bread > :after {
    content: " /";
}
.bread > :not(:last-child) {
    margin-right: 13px;
}
.text-404 {
    color: #e7e8ef;
    font-size: 345px;
    font-weight: 700;
    height: 320px;
    line-height: 1;
    margin-left: -90px;
    position: relative;
    text-align: center;
}
@media (max-width: 991.98px) {
    .text-404 {
        display: none;
    }
}
.text-404 img {
    position: absolute;
    right: 50%;
    top: 50%;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}



.lwptoc_itemWrap1 {
    margin: 10px 0px 10px 15px;
}

.lwptoc_item {margin-top:15px;}
    
    
.lwptoc_toggle:before {
    content: '['
}

.lwptoc_toggle:after {
    content: ']'
} 

.lwptoc_toggle {display:flex;}

.lwptoc_header {display:flex; gap:15px;}
    
.lwptoc_i{margin-bottom:25px;}


#cookie_note{
    display: none;position: fixed;
	z-index:99999;
    bottom: 15px;left: 30%; 
	max-width: 90%;
	transform: translateX(-25%);
    padding: 20px;
	background-color: white;
    border-radius: 23px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    
}
#cookie_note p{margin: 0;font-size: 0.8rem;text-align: left;color: black;}

#cookie_note .btn-sm {display: block;margin: 0 auto; cursor: pointer; color: #000; border:none}

.cookie_accept {
    white-space: nowrap;
}


@media (max-width: 1023px) {
    #cookie_note.cshow {
        display: flex;
        text-align: left;
        flex-direction: column;
        width: 90%;
    }
    
    .cookie_accept {
     width: auto; 
}
#cookie_note .btn-sm {margin-top:15px;}
}

#cookie_note a {color:#006}
@media (max-width: 1023px){#cookie_note.cshow{display: flex;text-align: left;}}
@media (min-width: 1024px){#cookie_note.cshow{display: flex; column-gap: 15px;align-items: center;}}



@media (max-width:768px){
.bclose {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
    top: 0;
    right: 0;
    color: #242f45;
    position: absolute;
}
    #cookie_note p {
   margin: 0 25px 0 0px;
}
}

@media (min-width: 769px) {
    .bclose {
        border: 0;
        border-radius: 100px;
        cursor: pointer;
        height: 44px;
        padding: 10px;
        width: 44px;
        top: -35px;
        right: -35px;
        color: #242f45;
        position: absolute;
    }
}

.checkbox-wrapper {
	color: rgba(60, 46, 73, .5);
	font-size: 14px;
	font-weight: 400;
	line-height: .938rem;
	max-width: 330px;
}


.checkbox-wrapper .rect {
	border-radius: 5px;
	background-color: #fff;
	margin-right: 8px;
	width: 17px;
	height: 17px;
	position: relative;
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	/* or 17px */
	color: #AEADB6;
}
.checkbox-wrapper input[type="checkbox"]{
	display: none !important;
}
.checkbox-wrapper label{
	position: relative;
    text-align: left;
    padding-left: 30px;
    font-size: 11px;
	cursor:pointer;
}
.form-bottom .checkbox-wrapper label,.form-bottom .checkbox-wrapper label a{
    color:#fff;
}
.checkbox-wrapper .wpcf7-list-item-label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 15px;
	height: 15px;
	background-repeat: no-repeat;
	background: #F1F1F1;
	border: 1px solid #c9c8c8;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
}
.checkbox-wrapper input:checked + .wpcf7-list-item-label:before {
	content: "✓";
    display: flex;
    align-items: center;
    background-color: #412e8b;
    border: 1px solid #412e8b;
    color: #fff;
    justify-content: center;
    font-size: 8px;
}

.checkbox-wrapper.btn_checkout_final{
	margin-top: 0;
}
.checkbox-wrapper_custom {
	margin-bottom: 15px;
	margin-top: 10px;
}
.checkbox-wrapper_custom .checkbox-wrapper.pl_0{
padding-left: 0;
margin-left:0;
}
.checkbox-wrapper_custom .checkbox-wrapper{
	margin-top: 5px;
}
	.checkbox-wrapper{
		position: relative;
	}
.checkbox-notification {
	position: absolute;
    top: -70px;
    left: 0;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
	display:none;
	color: red;
    border: 1px solid rgba(65, 46, 139, .3);
}

.checkbox-notification::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 31px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #d5d5d5;
}


.wpcf7 form .wpcf7-response-output {
    position: absolute;
    bottom: 55px;
    left: -6px;
    background: #fff;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    color: red;
    z-index: 9;
}

@media (max-width: 769px) {
bottom: 71px;
}