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

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

footer, header, nav, section, main {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}

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

input {
    -webkit-appearance: none;
    border-radius: 0;
}

a {
    text-decoration: none;
}

button {
    padding: 0;
}

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

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

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

@font-face {
    font-family: Inter;
    font-display: swap;
    src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

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

html {
    height: 100%;
}

body {
    color: "";
    font-family: "Inter";
    font-size: "";
    display: flex;
    flex-direction: column;
    height: 100%;
}

._container {
    max-width: 1240px;
    padding: 0 15px;
    margin: 0 auto;
}

._container-small {
    max-width: 1020px;
    padding: 0 15px;
    margin: 0 auto;
}

@media screen and (min-width: 480px) {
    ._container {
        padding: 0 16px;
        max-width: 400px;
    }
}

@media screen and (min-width: 575.98px) {
    ._container {
        padding: 0 16px;
        max-width: 480px;
    }
}

@media screen and (min-width: 767.98px) {
    ._container {
        padding: 0 20px;
        max-width: 705px;
    }
}

@media screen and (min-width: 991.98px) {
    ._container {
        padding: 0 30px;
        max-width: 990px;
    }
}

@media screen and (min-width: 1199.98px) {
    ._container {
        padding: 0 30px;
        max-width: 1240px;
    }
}

body.open-mobile-menu {
    overflow: hidden;
}

@keyframes showBlock {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(0);
    }
}

.btn-up {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgb(0, 93, 174);
    position: fixed;
    left: 16px;
    bottom: 16px;
    border-radius: 6px;
    opacity: 0.3;
    cursor: pointer;
}

@media screen and (min-width: 991.98px) {
    .btn-up:hover {
        opacity: 1;
    }
}

.btn-up span {
    display: block;
    width: 16px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.btn-up_hide {
    display: none;
}

.header {
    flex: 0 0 auto;
    background-color: #FFF;
    height: 72px;
    border-bottom: 2px solid #E0E0E0;
}

@media screen and (min-width: 767.98px) {
    .header {
        height: 96px;
    }
}

.header__menu.open {
    position: fixed;
    left: 0;
    top: 72px;
    z-index: 99;
    width: 100%;
    height: 100%;
    background: #F0F6FA;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    animation: showBlock 0.7s linear forwards;
}

@media screen and (min-width: 767.98px) {
    .header__menu.open {
        top: 96px;
    }
}

@media screen and (min-width: 991.98px) {
    .header__menu.open {
        display: none;
    }
}

.header__nav {
    display: none;
}

@media screen and (min-width: 991.98px) {
    .header__nav {
        display: flex;
    }
}

.header__nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 991.98px) {
    .header__nav nav ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.header__nav nav ul li a {
    display: block;
    border-radius: 6px;
    padding: 8px 16px;
}

.header__nav nav ul li.dropdown {
    position: relative;
}

.header__nav nav ul li.dropdown .dropdown__item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 8px 16px;
}


@media screen and (min-width: 991.98px) {
    .header__nav nav ul li:hover a {
        background: #F0F6FA;
    }

    .header__nav nav ul li:hover a {
        color: #005DAE;
    }

    .header__nav nav ul li.dropdown .dropdown__item {
        justify-content: flex-start;
        gap: 5px;
    }

    .header__nav nav ul li.dropdown .icon {
        display: block;
        min-width: 10px;
        width: 10px;
        height: 8px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: .3s ease;
        cursor: pointer;
        filter: grayscale(0) brightness(0);
    }

    .header__nav nav ul li.dropdown .dropdown__list {
        position: absolute;
        width: 100%;
        min-width: 280px;
        z-index: 1;
        background: #F0F6FA;
        border-radius: 0 6px 6px 6px;
        opacity: 0;
        overflow: hidden;
        height: 0;
        transform: translateY(10px);
        transition: 0.3s ease;
    }

    .header__nav nav ul li.dropdown .dropdown__list li {
        padding: 10px 16px;
    }

    .header__nav nav ul li.dropdown .dropdown__list li a {
        padding: 0;
        color: #000;
        background: none;
        transition: .3s ease;
    }

    .header__nav nav ul li.dropdown .dropdown__list li a:hover {
        color: #005DAE;
    }

    .header__nav nav ul li.dropdown:hover {
        border-radius: 6px 6px 0 0;
        background: #F0F6FA;

        .dropdown__list {
            opacity: 1;
            height: auto;
            transform: translateY(0);
        }
    }

    .header__nav nav ul li.dropdown:hover .name {
        color: #005DAE;
    }

    .header__nav nav ul li.dropdown:hover .icon {
        filter: initial;
        transform: rotateX(180deg);
    }
}

.header__nav nav ul li:not(:last-child) {
    margin-bottom: 8px;
}

@media screen and (min-width: 991.98px) {
    .header__nav nav ul li:not(:last-child) {
        margin-bottom: 0;
    }
}

.header__nav nav ul li a {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 156%;
}

.header__nav nav ul li.dropdown .name {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 156%;
}

@media screen and (min-width: 991.98px) {
    .header__nav nav ul li a {
        font-size: 16px;
        font-weight: 600;
        line-height: 150%;
    }

    .header__nav nav ul li.dropdown .name {
        font-size: 16px;
        font-weight: 600;
        line-height: 150%;
    }
}

.header__menu.open .header__nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 72px);
    padding-top: 56px;
    padding-bottom: 32px;
}

@media screen and (min-width: 767.98px) {
    .header__menu.open .header__nav {
        height: calc(100% - 96px);
    }
}

.header .burger-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.8s ease;
    background: #F0F6FA;
    border-radius: 6px;
    cursor: pointer;
}

@media screen and (min-width: 991.98px) {
    .header .burger-button {
        display: none;
    }
}

.header .burger-button span {
    width: 18px;
    height: 2px;
    background-color: #005DAE;
    margin: 2px 0;
    border-radius: 5px;
    transition-property: margin, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease, ease;
    transition-delay: 0s;
    transform: rotate(0);
}

.header .burger-button.open {
    transform: rotate(450deg);
    background: #005DAE;
}

.header .burger-button.open span {
    margin: -1px 1px -1px -1px;
    width: 18px;
    background-color: #FFF;
}

.header .burger-button.open span:nth-of-type(1) {
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.header .burger-button.open span:nth-of-type(2) {
    display: none;
}

.header .burger-button.open span:nth-of-type(3) {
    transform: rotate(-45deg);
    transition: 0.3s ease;
}

.header__social-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 991.98px) {
    .header__social-menu {
        display: none;
    }
}

.header__social-menu a:first-child {
    color: #005DAE;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
}

.header__social-menu a:last-child {
    color: #005DAE;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.header__social-menu .get-modal {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    background: none;
    border: none;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

@media screen and (min-width: 767.98px) {
    .header__wrapper {
        padding: 16px 0;
    }
}

.header__body {
    display: flex;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 991.98px) {
    .header__logo {
        margin-right: 40px;
    }
}

.header__logo a {
    display: flex;
    align-items: center;
}

.header__logo .bgimage {
    display: block;
    width: 80px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

@media screen and (min-width: 767.98px) {
    .header__logo .bgimage {
        width: 108px;
        height: 64px;
    }
}

.header__logo .bgimage-text {
    display: none;
}

@media screen and (min-width: 767.98px) {
    .header__logo .bgimage-text {
        display: flex;
        align-items: center;
        max-width: 310px;
        color: #4A6F8F;
        font-size: 14px;
        font-weight: 400;
        line-height: 142%;
        transition: 0.3s ease;
    }

    .header__logo .bgimage-text:before {
        content: "";
        background: #E0E0E0;
        display: block;
        width: 1px;
        height: 48px;
        margin: 0 16px;
    }
}

@media screen and (min-width: 991.98px) {
    .header__logo .bgimage-text:hover {
        opacity: 0.7;
    }
}

.header__interaction {
    display: flex;
    align-items: center;
}

.header__social li:first-child {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1199.98px) {
    .header__social li:first-child {
        display: none;
    }
}

.header__social li:first-child a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #F0F6FA;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 12px;
}

.header__social li:first-child a span {
    display: block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.header__social li:last-child {
    display: none;
}

@media screen and (min-width: 1199.98px) {
    .header__social li:last-child {
        display: flex;
        flex-direction: column;
    }
}

.header__social li:last-child a {
    display: inline-block;
    color: #005DAE;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .header__social li:last-child a:hover {
        opacity: 0.7;
    }
}

.header__social li:last-child .header__social-wrapper {
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.header__social li:last-child .header__social-wrapper .get-modal {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    background: none;
    border: none;
    cursor: pointer;
}

@media screen and (min-width: 991.98px) {
    .header__social li:last-child .header__social-wrapper .get-modal:hover {
        color: #005DAE;
    }
}

.header__social li:last-child .header__social-wrapper a {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .header__social li:last-child .header__social-wrapper a:hover {
        color: #005DAE;
    }
}

.header__social li:last-child .header__social-wrapper a:before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #E0E0E0;
    margin: 0 8px;
}

main {
    flex: 1 0 auto;
}

main .top-banner {
    margin-bottom: 48px;
}

main .top-banner__container {
    padding: 0;
}

@media screen and (min-width: 480px) {
    main .top-banner__container {
        padding: 0 16px;
    }
}

@media screen and (min-width: 767.98px) {
    main .top-banner__container {
        padding: 0 20px;
    }
}

@media screen and (min-width: 991.98px) {
    main .top-banner__container {
        padding: 0 30px;
    }
}

@media screen and (min-width: 1199.98px) {
    main .top-banner__container {
        padding: 0;
        max-width: 100%;
    }
}

main .top-banner__item {
    position: relative;
}

main .top-banner__item picture {
    display: block;
    padding-top: 44%;
    position: relative;
    width: 100%;
}

main .top-banner__item picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 480px) {
    main .top-banner__item picture img {
        border-radius: 12px;
    }
}

@media screen and (min-width: 1199.98px) {
    main .top-banner__item picture {
        padding-top: 28%;
    }

    main .top-banner__item picture img {
        border-radius: 0;
    }
}

main .top-banner__content {
    padding: 0 15px;
    margin-top: 16px;
}

@media screen and (min-width: 480px) {
    main .top-banner__content {
        padding: 0 16px;
    }
}

@media screen and (min-width: 767.98px) {
    main .top-banner__content {
        padding: 0 20px;
    }
}

@media screen and (min-width: 991.98px) {
    main .top-banner__content {
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%);
    }
}

@media screen and (min-width: 1639.98px) {
    main .top-banner__content {
        top: calc(40% + 10px);
        left: calc(40% + 10px);
    }
}

main .top-banner__content h1 {
    color: #005DAE;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 12px;
    text-align: center;
}

main .top-banner__content p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
}

main .top-banner .splide__pagination {
    bottom: -20px;
}

@media screen and (min-width: 991.98px) {
    main .top-banner .splide__pagination {
        bottom: 10px;
    }

    main .top-banner__content h1 {
        font-size: 44px;
        line-height: 128%;
        text-align: left;
    }

    main .top-banner__content p {
        font-size: 18px;
        line-height: 156%;
        text-align: left;
    }
}

main .top-banner .splide__pagination__page {
    width: 40px;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    margin: 0 4px;
}

main .top-banner .splide__pagination__page.is-active {
    background: #2097FF;
    transform: scale(1);
}

main .top-banner .splide__arrow {
    display: none;
    width: 32px;
    height: 48px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}

@media screen and (min-width: 991.98px) {
    main .top-banner .splide__arrow {
        display: block;
    }
}

main .top-banner .splide__arrow:hover {
    opacity: 0.7;
}

main .top-banner .splide__arrow svg {
    fill: #FFF;
}

.equipment {
    margin-bottom: 48px;
}

@media screen and (min-width: 991.98px) {
    .equipment {
        margin-bottom: 88px;
    }
}

.equipment__item {
    display: block;
    border-radius: 12px;
    padding: 24px;
    min-height: 440px;
}

.equipment__item span {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
}

.equipment__item .brand {
    display: block;
    width: 48px;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    right: 24px;
}

.equipment__item picture {
    display: block;
    padding-top: 142%;
    position: relative;
    width: 100%;
    margin-bottom: -60px;
    margin-left: -40px;
}

.equipment__item picture img {
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.equipment .splide__list {
    padding-bottom: 60px !important;
}

.equipment .equipment__item--black {
    transition: .3s ease;
    background: rgb(10, 60, 138);
}

.equipment .equipment__item--black:hover {
    background: rgb(23 44 126);
}

.equipment .equipment__item--light-blue {
    background: rgb(0, 183, 237);
}

.equipment .equipment__item--light-blue:hover {
    background: rgb(24, 198, 250);
}

.equipment .equipment__item--blue {
    transition: .3s ease;
    background: rgb(0, 95, 178);
}

.equipment .equipment__item--blue:hover {
    background: rgb(0 78 145);
}

main .recommended {
    margin-bottom: 48px;
}

@media screen and (min-width: 991.98px) {
    main .recommended {
        margin-bottom: 88px;
    }
}

main .recommended__title h2 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 4px;
}

@media screen and (min-width: 991.98px) {
    main .recommended__title h2 {
        font-size: 36px;
        line-height: 134%;
    }
}

main .recommended__title span {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

@media screen and (min-width: 991.98px) {
    main .recommended__title span {
        font-size: 18px;
        line-height: 156%;
    }
}

main .recommended__wrapper {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media screen and (min-width: 767.98px) {
    main .recommended__wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

main .recommended__item {
    display: block;
    padding: 16px;
    border-radius: 6px;
    border: 2px solid #E0E0E0;
    background: #FFF;
    position: relative;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    main .recommended__item {
        border-radius: 12px;
    }

    main .recommended__item:hover {
        border: 2px solid #005DAE;
    }

    main .recommended__item:hover .art {
        color: #005DAE;
    }

    main .recommended__item:hover .price {
        color: #005DAE;
    }
}

main .recommended__item .characteristic {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 32px;
}

main .recommended__item picture {
    display: block;
    padding-top: 100%;
    position: relative;
    width: 100%;
}

main .recommended__item picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
}

main .recommended__item .art {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 16px;
}

@media screen and (min-width: 991.98px) {
    main .recommended__item .art {
        font-size: 18px;
        line-height: 156%;
    }
}

main .recommended__item .name {
    color: #4A6F8F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    margin: 4px 0 8px;
}

@media screen and (min-width: 991.98px) {
    main .recommended__item .name {
        font-size: 15px;
        line-height: 160%;
        margin: 4px 0;
    }
}

main .recommended__item .desc {
    display: none;
}

@media screen and (min-width: 767.98px) {
    main .recommended__item .desc {
        display: block;
        color: #000;
        text-align: center;
        font-size: 15px;
        font-weight: 400;
        line-height: 160%;
        margin-bottom: 8px;
    }
}

main .recommended__item .price {
    display: block;
    color: #004785;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 156%;
    position: absolute;
    bottom: 16px;
}

@media screen and (min-width: 991.98px) {
    main .recommended__item .price {
        font-size: 20px;
        line-height: 160%;
    }
}

.btn-blue {
    display: flex;
    padding: 12px 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #005DAE;
    border: none;
    transition: 0.3s ease;

}

.recommended .btn-blue {
    max-width: 392px;
    margin: 12px auto 0;
}

.recommended .get-catalog {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

@media screen and (min-width: 767.98px) {
    .recommended .btn-blue {
        margin: 24px auto 0;

    }
}

@media screen and (min-width: 991.98px) {
    .btn-blue:hover {
        background: #004785;
    }
}

main .about {
    margin-bottom: 48px;
}

@media screen and (min-width: 991.98px) {
    main .about {
        margin-bottom: 88px;
    }
}

@media screen and (min-width: 767.98px) {
    main .about__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 32px;
    }
}

main .about__body {
    margin-bottom: 20px;
}

@media screen and (min-width: 767.98px) {
    main .about__body {
        flex: 0 0 49%;
        margin-bottom: 0;
    }
}

main .about__body h2 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 20px;
}

@media screen and (min-width: 991.98px) {
    main .about__body h2 {
        font-size: 36px;
        line-height: 134%;
        margin-bottom: 28px;
    }
}

main .about__body p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 20px;
}

@media screen and (min-width: 991.98px) {
    main .about__body p {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 28px;
    }
}

main .about__body p b {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

@media screen and (min-width: 991.98px) {
    main .about__body p b {
        font-size: 18px;
        line-height: 156%;
    }
}

.about__body .btn-blue {
    max-width: 228px;
}

.about__body .btn-blue a {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}


@media screen and (min-width: 767.98px) {
    main .about__img {
        flex: 0 0 49%;
    }
}

main .about__img picture {
    display: block;
    padding-top: 100%;
    position: relative;
    width: 100%;
}

@media screen and (min-width: 767.98px) {
    main .about__img picture {
        padding-top: 56%;
    }
}

main .about__img picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
}

main .advantages {
    margin-bottom: 48px;
}

@media screen and (min-width: 991.98px) {
    main .advantages {
        margin-bottom: 88px;
    }
}

@media screen and (min-width: 1199.98px) {
    main .advantages__container {
        max-width: 100%;
    }
}

main .advantages h3 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
}

@media screen and (min-width: 991.98px) {
    main .advantages h3 {
        font-size: 28px;
        line-height: 142%;
    }
}

main .advantages__body {
    margin-top: 24px;
}

@media screen and (min-width: 767.98px) {
    main .advantages__body {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
    }
}

@media screen and (min-width: 991.98px) {
    main .advantages__body {
        grid-template-columns: repeat(4, 1fr);
    }
}

main .advantages__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .advantages__item:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (min-width: 991.98px) {
    main .advantages__item:not(:last-child) {
        margin-bottom: 0;
    }
}

main .advantages__item span {
    display: block;
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

@media screen and (min-width: 1199.98px) {
    main .advantages__item span {
        width: 72px;
        height: 72px;
    }
}

main .advantages__item p {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.footer {
    flex: 0 0 auto;
}

.footer .top-footer {
    border-top: 8px solid #004785;
}

.footer .top-footer__wrapper {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1199.98px) {
    .footer .top-footer__wrapper {
        padding: 48px 0;
    }
}

.footer .top-footer__logo {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__logo {
        flex: 0 0 49%;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__logo {
        flex: 0 0 33.3%;
    }
}

.footer .top-footer__logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__logo a {
        align-items: flex-start;
    }
}

.footer .top-footer__logo .bgimage {
    display: block;
    width: 108px;
    height: 64px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer .top-footer__logo .bgimage-text {
    color: #4A6F8F;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    transition: 0.3s ease;
    text-align: center;
    margin-top: 16px;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__logo .bgimage-text {
        font-size: 16px;
        line-height: 150%;
        text-align: left;
        margin-top: 20px;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__logo .bgimage-text:hover {
        opacity: 0.7;
    }
}

.footer .top-footer__menu {
    display: none;
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__menu {
        display: block;
        flex: 0 0 33.3%;
    }
}

.footer .top-footer__menu .name {
    display: inline-block;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}

.footer .top-footer__menu ul li {
    transition: .3s ease;
}

.footer .top-footer__menu ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer .top-footer__menu ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__menu ul li:hover {
        transform: translateX(10px);
    }

    .footer .top-footer__menu ul li:hover a {
        color: #005DAE;
    }
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__social {
        flex: 0 0 49%;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__social {
        flex: 0 0 33.3%;
    }
}

.footer .top-footer__social .name {
    display: none;
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__social .name {
        display: block;
        color: #000;
        font-size: 20px;
        font-weight: 700;
        line-height: 160%;
        margin-bottom: 16px;
    }
}

.footer .top-footer__social .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__social .number {
        align-items: flex-start;
        margin-top: 0;
    }
}

.footer .top-footer__social .number span {
    color: #4A6F8F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    margin-bottom: 4px;
}

.footer .top-footer__social .number a {
    color: #005DAE;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__social .number a:hover {
        opacity: 0.7;
    }
}

.footer .top-footer__social .mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__social .mail {
        align-items: flex-start;
    }
}

.footer .top-footer__social .mail span {
    color: #4A6F8F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    margin-bottom: 4px;
}

.footer .top-footer__social .mail a {
    color: #005DAE;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    transition: 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__social .mail a:hover {
        opacity: 0.7;
    }
}

.footer .top-footer__social .address {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__social .address {
        align-items: flex-start;
    }
}

.footer .top-footer__social .address span {
    color: #4A6F8F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    margin-bottom: 4px;
}

.footer .top-footer__social .address a {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    transition: 0.3s ease;
}

@media screen and (min-width: 767.98px) {
    .footer .top-footer__social .address a {
        text-align: left;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .top-footer__social .address a:hover {
        opacity: 0.7;
    }
}

.footer .bottom-footer {
    border-top: 2px solid #E0E0E0;
}

.footer .bottom-footer__wrapper {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 767.98px) {
    .footer .bottom-footer__wrapper {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .bottom-footer__wrapper {
        justify-content: space-between;
    }
}

.footer .bottom-footer .copy {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
}

@media screen and (min-width: 767.98px) {
    .footer .bottom-footer .copy {
        text-align: left;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .bottom-footer .copy {
        flex: 0 0 33.3%;
    }
}

.footer .bottom-footer .politic {
    color: #005DAE;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
    margin: 24px 0;
    transition: 0.3s ease;
}

@media screen and (min-width: 767.98px) {
    .footer .bottom-footer .politic {
        text-align: left;
        margin: 0;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .bottom-footer .politic {
        flex: 0 0 33.3%;
    }

    .footer .bottom-footer .politic:hover {
        opacity: 0.7;
    }
}

.footer .bottom-footer .develop {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

@media screen and (min-width: 767.98px) {
    .footer .bottom-footer .develop {
        align-items: flex-start;
    }
}

@media screen and (min-width: 991.98px) {
    .footer .bottom-footer .develop {
        flex: 0 0 33.3%;
    }

    .footer .bottom-footer .develop:hover {
        opacity: 0.7;
    }
}

@media screen and (min-width: 1199.98px) {
    .footer .bottom-footer .develop {
        flex-direction: row;
    }
}

.footer .bottom-footer .develop p {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
}

@media screen and (min-width: 1199.98px) {
    .footer .bottom-footer .develop p {
        margin-bottom: 0;
        margin-right: 12px;
    }
}

.footer .bottom-footer .develop span {
    display: block;
    width: 208px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}


.breadcrumbs {
    margin: 24px 0 16px;
}

.breadcrumbs ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    gap: 24px;
}

.breadcrumbs ul li {
    position: relative;
}

.breadcrumbs ul li:not(:last-child):after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #E0E0E0;
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translate(0, -50%);
}

.breadcrumbs ul li a {
    color: #4A6F8F;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
    white-space: nowrap;
    transition: .3s ease;
}

.breadcrumbs ul li.active a {
    color: #005DAE;
}

/*catalog start*/

.equipment .equipment__top-title {
    margin-bottom: 24px;
}

.equipment .equipment__top-title h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 8px;
}

.equipment .equipment__top-title p {
    color: #4A6F8F;
    font-size: 18px;
    font-weight: 500;
    line-height: 156%;
}

@media screen and (min-width: 991.98px) {
    .equipment .equipment__top-title h1 {
        font-size: 44px;
        line-height: 128%;
    }

    .equipment .equipment__top-title {
        margin-bottom: 48px;
    }

    .breadcrumbs ul li:hover a {
        color: #005DAE;
    }
}

.range {
    margin-bottom: 48px;
}

.range .range__content {
}

.range .range__content h2 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 24px;
}

.range .range__content p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 24px;
}

.range .range__content ul {
}

.range .range__content ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    padding-left: 36px;
}

.range .range__content ul li:not(:last-child) {
    margin-bottom: 24px;
}

.range .range__content ul li:before {
    content: '';
    display: block;
    min-width: 24px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMTVMNS41Njk5IDEyLjAyNTFDNi45OTQxOSAxMC44MzgyIDkuMDQ3NDIgMTAuNzg1NiAxMC41MzA2IDExLjg5OEwxMy40Njk0IDE0LjEwMkMxNC45NTI2IDE1LjIxNDQgMTcuMDA1OCAxNS4xNjE4IDE4LjQzMDEgMTMuOTc0OUwyMiAxMSIgc3Ryb2tlPSIjMDA1REFFIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K);
    position: absolute;
    left: 0;
    top: 0;
}

@media screen and (min-width: 991.98px) {
    .range {
        margin-bottom: 88px;
    }

    .range .range__content h2 {
        color: #000;
        font-size: 36px;
        line-height: 132%;
    }

    .range .range__content p {
        font-size: 18px;
        font-weight: 500;
        line-height: 156%;
    }
}

/*catalog end*/


/*category start*/

.category {
    margin-bottom: 48px;
}

.category h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 16px;
}

.category__tab-content {
    display: none;
}

.category__tab-content.active-category-content {
    display: block;
}

.category__tabs {
    display: flex;
    align-items: center;
}

.category__tabs-line {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: #F0F6FA;
    overflow-x: auto;
    overflow-y: hidden;
}

.category__tab {
    border-radius: 6px;
    background: #FFF;
    cursor: pointer;
}

.category__tab.active-category-tab {
    background: #004785;
}

.category__tab span {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 8px 16px;
    transition: .3s ease;
    white-space: nowrap;
}

.category__tab.active-category-tab span {
    color: #FFF;
}

@media screen and (min-width: 991.98px) {
    .category {
        margin-bottom: 88px;
    }

    .category h1 {
        font-size: 44px;
        line-height: 128%;
        margin-bottom: 32px;
    }

    .category__tab:hover span {
        color: #005DAE;
    }

    .category__tab.active-category-tab:hover span {
        color: #FFF;
    }
}

/*category end*/


/*example-text start*/

.example-text {
    margin-bottom: 48px;
}

.example-text h2 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 24px;
}

.example-text p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 146%;
}

.example-text p:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (min-width: 991.98px) {
    .example-text {
        margin-bottom: 88px;
    }

    .example-text h2 {
        font-size: 36px;
        line-height: 134%;
    }

    .example-text p {
        font-size: 18px;
        font-weight: 500;
        line-height: 156%;
    }

}

/*example-text end*/


/*single-product start*/

.single-product {
    padding-top: 8px;
    margin-bottom: 32px;
}

.single-product__wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-product #main-slider a {
    display: block;
    padding: 16px;
    border: 8px solid #F0F6FA;
    background: #FFF;
    cursor: pointer;
}

.single-product #main-slider a picture {
    display: block;
    padding-top: 100%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.single-product #main-slider a picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
   /* width: 100%;*/
    height: 100%;
    margin: auto;
}

.single-product #thumbnail-slider picture {
    display: block;
    padding-top: 110%;
    position: relative;
    width: 100%;
}

.single-product #thumbnail-slider picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: auto;
}

.single-product #main-slider {
    margin-bottom: 18px;
}

.single-product #thumbnail-slider .splide__track {
    width: calc(100% - 90px);
    margin: auto !important;
}

.single-product #thumbnail-navigation-nav .splide__arrow {
    background: none;
    border: none;
    opacity: 1;
}

.single-product #thumbnail-navigation-nav .splide__arrow svg {
    fill: #005DAE;
}

.single-product #thumbnail-navigation-nav .splide__arrow--prev {
    left: 0;
}

.single-product #thumbnail-navigation-nav .splide__arrow--next {
    right: 0;
}

.single-product #thumbnail-slider .splide__list .splide__slide.is-active {
    border: 1px solid #005DAE;
}


.single-product__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-product__content h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
}

.single-product__prices {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-radius: 12px;
    background: #F0F6FA;
}

.single-product__prices-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-product__prices-content .price span:first-child {
    display: inline-block;
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 600;
    line-height: 200%;
    margin-right: 12px;
    position: relative;
}

.single-product__prices-content .price span:first-child:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #4A6F8F;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.single-product__prices-content .price span:last-child {
    color: #004785;
    font-size: 24px;
    font-weight: 800;
    line-height: 150%;
}

.single-product__prices-content span {
    color: #4A6F8F;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.single-product__prices .btn-blue {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    cursor: pointer;
}

.single-product__content {
    gap: 24px;
}

.single-product__content .show-more {
    display: inline-flex;
    color: #005DAE;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.single-product__content .show-more:after {
    content: '';
    display: inline-flex;
    width: 100%;
    height: 1px;
    background: #005DAE;
    position: absolute;
    left: 0;
    top: 100%;
    transition: .3s ease;
}

.single-product__text p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 20px;
}

.single-product__text p:not(:first-child) {
    display: none;
}

.single-product__text.is-visible p {
    display: block !important;
}


@media screen and (min-width: 991.98px) {
    .single-product {
        padding-top: 24px;
        margin-bottom: 48px;
    }

    .single-product__wrapper {
        display: grid;
        grid-template-columns: 32% 64%;
        justify-content: space-between;
    }

    .single-product__content h1 {
        font-size: 36px;
        line-height: 134%;
    }

    .single-product__prices {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .single-product__prices .btn-blue {
        max-height: 48px;
    }

    .single-product__prices .btn-blue:hover {
        background: #004785;
    }

    .single-product__prices-content {
        align-items: flex-start;
    }

    .single-product__text p:not(:first-child) {
        display: block;
    }

    .single-product__text p:nth-of-type(n+3) {
        display: none;
    }

    .single-product #thumbnail-slider .splide__list .splide__slide:hover {
        border: 1px solid #E0E0E0;
    }

    .single-product__content .show-more:hover:after {
        width: 0;
    }


}

/*single-product end*/


/*structure start*/

.structure {
    margin-bottom: 48px;
}

.structure__tab-content {
    display: none;
}

.structure__tab-content.active-structure-content {
    display: block;
}


.structure__wrapper {
    padding: 16px;
    border-radius: 12px;
    background: #F0F6FA;
}

.structure__tabs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
}


.structure__tab {
    border-radius: 6px;
    background: #FFF;
    cursor: pointer;
}

.structure__tab.active-structure-tab {
    background: #004785;
}

.structure__tab span {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 8px 16px;
    transition: .3s ease;
    white-space: nowrap;
}

.structure__tab.active-structure-tab span {
    color: #FFF;
}


.structure__content {
    padding: 12px 16px 24px;
    border-radius: 6px;
    background: #FFF;
    margin-top: 16px;
}

.structure__tab-content h4 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}

.structure__tab-content--desc {
}

.structure__tab-content--desc ul {
}

.structure__tab-content--desc ul li {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    padding-left: 36px;
}

.structure__tab-content--desc ul li:before {
    content: '';
    display: block;
    min-width: 24px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMTVMNS41Njk5IDEyLjAyNTFDNi45OTQxOSAxMC44MzgyIDkuMDQ3NDIgMTAuNzg1NiAxMC41MzA2IDExLjg5OEwxMy40Njk0IDE0LjEwMkMxNC45NTI2IDE1LjIxNDQgMTcuMDA1OCAxNS4xNjE4IDE4LjQzMDEgMTMuOTc0OUwyMiAxMSIgc3Ryb2tlPSIjMDA1REFFIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K);
    position: absolute;
    left: 0;
    top: 0;
}

.structure__tab-content--desc ul li:not(:last-child) {
    margin-bottom: 16px;
}

.structure__tab-content--characteristic {
}

.structure__tab-content--characteristic .structure__tab-content-item {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 6px;
    background: #F0F6FA;
}

.structure__tab-content--characteristic .structure__tab-content-item:not(:last-child) {
    margin-bottom: 6px;
}

.structure__tab-content--characteristic .structure__tab-content-item span:first-child {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.structure__tab-content--characteristic .structure__tab-content-item span:last-child {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.structure__tab-content--doc {

}

.structure__tab-content--doc .structure__tab-content-card {
    border-radius: 12px;
    border: 2px solid #E0E0E0;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.structure__tab-content--doc .structure__tab-content-card:not(:last-child) {
    margin-bottom: 16px;
}

.structure__tab-content--doc .structure__tab-content-card picture {
    display: block;
    padding-top: 122%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.structure__tab-content--doc .structure__tab-content-card picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    padding: 16px;
}

.structure__tab-content--doc .structure__tab-content-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.structure__tab-content--doc .structure__tab-content-card-content span {
    color: #4A6F8F;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    text-align: center;
}

.structure__tab-content--doc .structure__tab-content-card-content div {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

.structure__tab-content--doc .structure__tab-content-card a {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 156%;
    margin: -1px;
    transition: .3s ease;
}

@media screen and (min-width: 767.98px) {
    .structure__tab-content--doc {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .structure__tab-content--doc .structure__tab-content-card:not(:last-child) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 991.98px) {
    .structure {
        margin-bottom: 88px;
    }

    .structure__wrapper {
        padding: 32px;
    }

    .structure__content {
        padding: 24px 32px 32px;
        margin-top: 20px;
    }

    .structure__tab-content h4 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 24px;
    }

    .structure__tab-content--desc ul li {
        font-size: 16px;
    }

    .structure__tab-content--desc ul li:not(:last-child) {
        margin-bottom: 24px;
    }

    .structure__tab-content--characteristic .structure__tab-content-item span:last-child {
        font-size: 16px;
        line-height: 150%;
    }

    .structure__tab-content--characteristic .structure__tab-content-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .structure__tab-content--doc .structure__tab-content-card picture img {
        padding: 24px;
    }

    .structure__tab-content--doc .structure__tab-content-card-content {
        padding: 24px;
    }

    .structure__tab-content--doc .structure__tab-content-card-content span {
        font-size: 15px;
        line-height: 160%;
    }

    .structure__tab-content--doc .structure__tab-content-card-content div {
        font-size: 18px;
        line-height: 156%;
    }

    .structure__tab:hover span {
        color: #005DAE;
    }

    .structure__tab.active-structure-tab:hover span {
        color: #FFF;
    }


}


/*structure end*/


/*about-top-block start*/

.about-top-block {
    margin-bottom: 48px;
}

.about-top-block__img {

}

.about-top-block--container-img {
    max-width: 100%;
    padding: 0;
}

.about-top-block__img picture {
    display: block;
    padding-top: 48%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.about-top-block__img picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.about-top-block__desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    gap: 8px;
    border-radius: 12px;
    background: #F0F6FA;
    margin: -32px 16px 24px;
    position: relative;
    z-index: 1;
}

.about-top-block__desc h1 {
    color: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
}

.about-top-block__desc span {
    color: #4A6F8F;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
}

.about-top-block__text {
}

.about-top-block__text p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
}

.about-top-block__text p:not(:last-child) {
    margin-bottom: 16px;
}

.about-top-block__text p b {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

@media screen and (min-width: 991.98px) {
    .about-top-block {
        margin-top: 48px;
        margin-bottom: 68px;
    }

    .about-top-block--container-img {
        padding: 0 30px;
        max-width: 990px;
    }

    .about-top-block__desc {
        margin: -64px 64px 32px;
        padding: 28px 32px;
    }

    .about-top-block__desc h1 {
        font-size: 44px;
        line-height: 128%;
    }

    .about-top-block__desc span {
        font-size: 18px;
        line-height: 156%;
    }

    .about-top-block__text p {
        font-size: 16px;
        line-height: 150%;
    }

    .about-top-block__text p:not(:last-child) {
        margin-bottom: 28px;
    }

    .about-top-block__text p b {
        font-size: 18px;
        line-height: 156%;
    }


}

@media screen and (min-width: 1199.98px) {
    .about-top-block--container-img {
        padding: 0 30px;
        max-width: 1284px;
    }
}


/*about-top-block end*/


/*about-mission start*/

.about-mission {
    margin-bottom: 48px;
}

.about-mission__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-mission__top {

}

.about-mission__top h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}

.about-mission__top p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;
}

.about-mission__top p:not(:last-child) {
    margin-bottom: 16px;
}

.about-mission__bottom {
}

.about-mission__bottom picture {
    display: block;
    padding-top: 40%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.about-mission__bottom picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 991.98px) {
    .about-mission {
        margin-bottom: 68px;
    }

    .about-mission__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: flex-end;
        gap: 24px;
    }

    .about-mission__top h2 {
        font-size: 28px;
        line-height: 142%;
    }

    .about-mission__top p {
        font-size: 16px;
        line-height: 150%;
    }

    .about-mission__top p:not(:last-child) {
        margin-bottom: 28px;
    }
}

/*about-mission end*/


/*about-system start*/

.about-system {
    margin-bottom: 48px;
}

.about-system h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}

.about-system__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-system__item {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-radius: 12px;
    position: relative;
}

.about-system__item h4 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
}

.about-system__item-content {
    display: flex;
    gap: 16px;
}

.about-system__item-content p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.about-system__item .brand {
    display: block;
    width: 48px;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    right: 24px;
}

.about-system__item__img {
    flex: 0 0 25%;
}

.about-system__item__img picture {
    display: block;
    padding-top: 100%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.about-system__item__img picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

.about-system__item--black {
    background: #2D3033;
}

.about-system__item--blue {
    background: #005DAE;
}

@media screen and (min-width: 991.98px) {
    .about-system {
        margin-bottom: 68px;
    }

    .about-system__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-system h2 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 36px;
    }

    .about-system__item--black, .about-system__item--blue {
        order: initial;
    }

    .about-system__item-content p {
        font-size: 16px;
        line-height: 150%;
    }

}

/*about-system end*/


/*about-gallery start*/

.about-gallery {
    margin-bottom: 48px;
}

.about-gallery h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 16px;
}

.about-gallery__wrapper {
    display: grid;
    gap: 12px;
}

.about-gallery__wrapper a {
    display: block;
    transition: .3s ease;
}

.about-gallery__wrapper a picture {
    display: block;
    padding-top: 64%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.about-gallery__wrapper a picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
}

@media screen and (min-width: 767.98px) {
    .about-gallery__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (min-width: 991.98px) {
    .about-gallery {
        margin-bottom: 88px;
    }

    .about-gallery__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-gallery h2 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 36px;
    }

    .about-gallery__wrapper a:hover {
        opacity: .7;
    }


}

/*about-gallery end*/


/*documentation start*/

.documentation {
    margin-bottom: 48px;
}

.documentation h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 32px;

}

.documentation__tab-content__item h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 24px;
}

.documentation__tab-content {
    display: none;
}

.documentation__tab-content.active-documentation-content {
    display: block;
}


.documentation__wrapper {

}

.documentation__tabs {
    display: flex;
}

.documentation__tabs-wrapper {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #F0F6FA;
}


.documentation__tab {
    border-radius: 6px;
    background: #FFF;
    cursor: pointer;
}

.documentation__tab.active-documentation-tab {
    background: #004785;
}

.documentation__tab span {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    padding: 8px 16px;
    transition: .3s ease;
    white-space: nowrap;
}

.documentation__tab.active-documentation-tab span {
    color: #FFF;
}

.documentation__content {
    margin-top: 24px;
}

.documentation__tab-content__item:not(:last-child) {
    margin-bottom: 48px;
}


@media screen and (min-width: 767.98px) {

}

@media screen and (min-width: 991.98px) {
    .documentation {
        margin-bottom: 88px;
    }

    .documentation h1 {
        font-size: 36px;
        line-height: 142%;
    }

    .documentation__tab-content__item h2 {
        font-size: 28px;
        line-height: 142%;
    }

    .documentation__content {
        margin-top: 48px;
    }

    .documentation__tab:hover span {
        color: #005DAE;
    }

    .documentation__tab.active-documentation-tab:hover span {
        color: #FFF;
    }

    .documentation__tab-content--doc .documentation__tab-content-card a:hover {
        background: #004785;
    }

    .documentation__tab-content__cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .documentation__tab-content__item:not(:last-child) {
        margin-bottom: 68px;
    }

}


/*documentation end*/


/*certificates start*/

.certificates {
    margin-bottom: 48px;
}

.certificates h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 8px;

}

.certificates span {
    color: #4A6F8F;
    font-size: 18px;
    font-weight: 500;
    line-height: 156%;
}

.certificates__wrapper {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.certificates__item {
    display: block;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    background: lightgray 50% / cover no-repeat;
    transition: .3s ease;
}

.certificates__item picture {
    display: block;
    padding-top: 142%;
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.certificates__item picture img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;

}

.certificates .get-certificates {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    cursor: pointer;
    transition: .3s ease;
    margin: 24px auto 0;
}

@media screen and (min-width: 991.98px) {
    .certificates {
        margin-bottom: 88px;
    }

    .certificates h1 {
        font-size: 36px;
        line-height: 142%;
    }

    .certificates__wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
    }

    .certificates__item:hover {
        opacity: .7;
    }

    .certificates .get-certificates {
        width: 392px;
    }

}

/*certificates end*/


/*contacts start*/

.contacts {
    margin-bottom: 48px;
}

.contacts__title {
    margin-bottom: 24px;
}

.contacts__title h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 8px;
}

.contacts__title span {
    display: block;
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.contacts__item:not(:last-child) {
    margin-bottom: 24px;
}

.contacts__item:first-child .contacts__content:not(:last-child) {
    margin-bottom: 8px;
}

.contacts__item:last-child .contacts__content:not(:last-child) {
    margin-bottom: 48px;
}

.contacts__item h4 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 8px;
}

.contacts__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts__content span {
    color: #4A6F8F;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.contacts__content a {
    color: #005DAE;
    font-size: 18px;
    font-weight: 700;
    line-height: 156%;
    transition: .3s ease;
}

.contacts__content div {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts__map {
    margin-top: 48px;
    margin-bottom: 12px;
}

.contacts__map h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
}

.contacts__map span {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}

.contacts__map p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.contacts__map .map {
    width: 100%;
    position: relative;
    height: 372px;
    margin-top: 12px;
}

.contacts__map .map #map-contacts {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

@media screen and (min-width: 991.98px) {
    .contacts {
        margin-bottom: 68px;
    }

    .contacts__title {
        margin-bottom: 48px;
    }

    .contacts__title h1 {
        font-size: 44px;
        line-height: 128%;
    }

    .contacts__title span {
        font-size: 18px;
        line-height: 156%;
    }

    .contacts__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contacts__item h4 {
        margin-bottom: 24px;
    }

    .contacts__content span {
        font-size: 16px;
        line-height: 150%;
    }

    .contacts__content a {
        font-size: 20px;
        line-height: 160%;
    }

    .contacts__item:first-child .contacts__content:not(:last-child) {
        margin-bottom: 24px;
    }

    .contacts__item:last-child .contacts__content:not(:last-child) {
        margin-bottom: 36px;
    }

    .contacts__item:last-child h4 {
        margin-bottom: 16px;
    }

    .contacts__content a:hover {
        opacity: .7;
    }

    .contacts__map h2 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 16px;
    }

    .contacts__map span {
        font-size: 18px;
        line-height: 156%;
    }

    .contacts__map {
        max-width: 90%;

    }

    .contacts__map .map {
        margin-top: 32px;
    }

}

/*contacts end*/


/*contacts-form start*/

.contacts-form--contacts {
    margin-bottom: 48px;
}

.contacts-form__wrapper {
    padding: 12px;
    border-radius: 12px;
}

.contacts-form form {
    padding: 12px 16px 16px 16px;
    border-radius: 6px;
    background: #FFF;
}

.contacts-form h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 12px;
}

.contacts-form--field {
    margin-bottom: 12px;
}

.contacts-form--field label {

}

.contacts-form--field input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    outline: none;
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts-form--field input::placeholder {
    font-family: 'Inter';
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts-form--field textarea {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 144px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #E0E0E0;
    background: #FFF;
    outline: none;
    resize: none;
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts-form--field textarea::placeholder {
    font-family: 'Inter';
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts-form__bottom {
    display: flex;
    flex-direction: column;
}

.contacts-form__bottom button {

    width: 100%;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    cursor: pointer;
    margin: auto;
    order: 0;
}

.contacts-form__bottom .contacts-form__privacy {
    order: 1;
    display: flex;
    align-items: flex-start;
    margin-top: 24px;
}

.contacts-form__privacy-text {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.contacts-form__privacy-text a {
    color: #005DAE;
    font-weight: 600;
    transition: .3s ease;
}

.contacts-form__bottom .contacts-form__privacy .checkbox {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    line-height: 140%;
    user-select: none;
    align-items: flex-start;
}

.contacts-form__bottom .contacts-form__privacy .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: none;
}

.contacts-form__bottom .contacts-form__privacy .checkbox .checkbox__elem {
    position: relative;
    height: 24px;
    width: 24px;
    min-width: 24px;
    background-color: #fff;
    display: inline-block;
    margin-right: 10px;
    border: 2px solid #005DAE;
    border-radius: 4px;
}

.contacts-form__bottom .contacts-form__privacy .checkbox .checkbox__elem:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    transition: 0.5s cubic-bezier(0.08, 0.82, 0.17, 1);
    opacity: 0;
    transform: rotate(90deg);
    background: transparent;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik05IDFMMy41IDdMMSA0LjI3MjczIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
}

.contacts-form__bottom .contacts-form__privacy .checkbox input:checked ~ .checkbox__elem {
    transition: .3s ease;
    border: 2px solid #005DAE;
    background-color: #005DAE;
    z-index: 2;
}

.contacts-form__bottom .contacts-form__privacy .checkbox input:checked ~ .checkbox__elem:after {
    opacity: 1;
    border-radius: 0;
    transform: rotate(0);
}

.contacts-form__bottom .contacts-form__privacy .checkbox .error + .checkbox__elem {
    border: 1px solid red;
}

@media screen and (min-width: 991.98px) {
    .contacts-form--contacts {
        margin-bottom: 88px;
    }

    .contacts-form h2 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 24px;
    }

    .contacts-form__inputs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .contacts-form__bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 24px;
    }

    .contacts-form__bottom .contacts-form__privacy {
        margin-top: 0;
        margin-right: 12px;
        order: initial;
    }

    .contacts-form__bottom button {
        max-width: 152px;
        margin: initial;
    }

    .contacts-form__wrapper {
        padding: 16px;
    }

    .contacts-form form {
        padding: 24px 32px;
    }

    .contacts-form__privacy-text a:hover {
        opacity: .7;
    }

    .contacts-form__bottom button:hover {
        background: #004785;
    }

}

/*contacts-form end*/

/*modal start*/

.contacts-form--modal h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 12px;
}

.contacts-form__inputs--modal {
    display: flex;
    flex-direction: column;
}

.contacts-form--modal .contacts-form__bottom {
    flex-direction: column;
}

.contacts-form--modal .contacts-form__bottom .contacts-form__privacy {
    order: 1;
    margin-top: 24px;
}

.contacts-form--modal .contacts-form__bottom button {
    max-width: initial;
    order: 0;
}

@media screen and (min-width: 991.98px) {

    .contacts-form--modal h2 {
        font-size: 28px;
        line-height: 142%;
        margin-bottom: 24px;
    }
}

/*modal end*/

/*formated start*/

.formated {
    margin-bottom: 48px;
}

.formated .title {
}

.formated .title h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 8px;
}

.formated .title div {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.formated img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 24px auto 8px;
}

.formated span {
    color: #4A6F8F;
    font-size: 14px;
    font-weight: 400;
    line-height: 142%;
}

.formated h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin: 48px 0 20px;
}

.formated p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.formated p:not(:last-child) {
    margin-bottom: 20px;
}

.formated p b {
    font-weight: 700;
}

.formated h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin: 48px 0 20px;
}

.formated table {
    width: 100%;
    margin-bottom: 24px;
}

.formated table tr {
    background: #F0F6FA;
}

.formated table tr:not(:last-child) {
}

.formated table tr td {
    color: #000;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 16px;
    border-bottom: 6px solid #FFF;
}

.formated table tr td:first-child {
    color: #4A6F8F;
    text-align: left;
}

.formated table tr td:last-child {
    white-space: nowrap;
}

.formated h4 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
    margin: 48px 0 20px;
}

.formated h5 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    margin: 48px 0 20px;
}

.formated h6 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
    margin: 48px 0 20px;
}

.formated ul {
    margin-bottom: 24px;
}

.formated ul li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    padding-left: 36px;
}

.formated ul li:not(:last-child) {
    margin-bottom: 24px;
}

.formated ul li:before {
    content: '';
    display: block;
    min-width: 24px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMTVMNS41Njk5IDEyLjAyNTFDNi45OTQxOSAxMC44MzgyIDkuMDQ3NDIgMTAuNzg1NiAxMC41MzA2IDExLjg5OEwxMy40Njk0IDE0LjEwMkMxNC45NTI2IDE1LjIxNDQgMTcuMDA1OCAxNS4xNjE4IDE4LjQzMDEgMTMuOTc0OUwyMiAxMSIgc3Ryb2tlPSIjMDA1REFFIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K);
    position: absolute;
    left: 0;
    top: 0;
}

.formated ol {
    counter-reset: item;
    margin-bottom: 24px;
}

.formated ol li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
}

.formated ol li:not(:last-child) {
    margin-bottom: 24px;
}

.formated ol li:before {
    content: counter(item) '.';
    counter-increment: item;
    color: #005DAE;
    font-weight: 700;
    line-height: 150%;
    padding-right: 24px;
}

.formated blockquote {
    padding: 16px;
    border-radius: 6px;
    background: #F0F6FA;
    display: flex;
    align-content: flex-start;
    margin-bottom: 24px;
    background-repeat: no-repeat;
    background-position: 16px;
    background-size: 40px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCAyNiA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuMTI2NzIgMjMuMzg5N0MxLjQwMjYzIDIzLjM4OTcgMCAyMS45NDUxIDAgMjAuMTY5NFYxNi40NDA1QzAgMTQuNjY0OCAxLjQwMjYzIDEzLjIyMDIgMy4xMjY3MiAxMy4yMjAyQzQuODUwODIgMTMuMjIwMiA2LjI1MzQ1IDE0LjY2NDggNi4yNTM0NSAxNi40NDA1VjIwLjE2OTRDNi4yNTM0NSAyMS45NDUxIDQuODUwODIgMjMuMzg5NyAzLjEyNjcyIDIzLjM4OTdaTTMuMTI2NzIgMTQuNTc2MkMyLjEyODU1IDE0LjU3NjIgMS4zMTY0NiAxNS40MTI1IDEuMzE2NDYgMTYuNDQwNlYyMC4xNjk0QzEuMzE2NDYgMjEuMTk3NSAyLjEyODQ4IDIyLjAzMzggMy4xMjY3MiAyMi4wMzM4QzQuMTI0OTcgMjIuMDMzOCA0LjkzNjk5IDIxLjE5NzUgNC45MzY5OSAyMC4xNjk0VjE2LjQ0MDZDNC45MzY5MSAxNS40MTI2IDQuMTI0ODkgMTQuNTc2MiAzLjEyNjcyIDE0LjU3NjJaIiBmaWxsPSIjMDA1REFFIi8+CjxwYXRoIGQ9Ik04LjA2NDIyIDIzLjM4OTlDNi4zNDAxMyAyMy4zODk5IDQuOTM3NSAyMS45NDUzIDQuOTM3NSAyMC4xNjk2VjEzLjcyODlDNC45Mzc1IDExLjk1MzIgNi4zNDAxMyAxMC41MDg1IDguMDY0MjIgMTAuNTA4NUM5Ljc4ODMyIDEwLjUwODUgMTEuMTkwOSAxMS45NTMyIDExLjE5MDkgMTMuNzI4OVYyMC4xNjk2QzExLjE5MDkgMjEuOTQ1MyA5Ljc4ODI0IDIzLjM4OTkgOC4wNjQyMiAyMy4zODk5Wk04LjA2NDIyIDExLjg2NDRDNy4wNjYwNSAxMS44NjQ0IDYuMjUzOTUgMTIuNzAwNyA2LjI1Mzk1IDEzLjcyODhWMjAuMTY5NUM2LjI1Mzk1IDIxLjE5NzUgNy4wNjYwNSAyMi4wMzM5IDguMDY0MjIgMjIuMDMzOUM5LjA2MjM5IDIyLjAzMzkgOS44NzQ0OSAyMS4xOTc1IDkuODc0NDkgMjAuMTY5NVYxMy43Mjg4QzkuODc0NDIgMTIuNzAwOCA5LjA2MjMyIDExLjg2NDQgOC4wNjQyMiAxMS44NjQ0WiIgZmlsbD0iIzAwNURBRSIvPgo8cGF0aCBkPSJNMTIuOTk3OCAyMy4zODk3QzExLjI3MzcgMjMuMzg5NyA5Ljg3MTA5IDIxLjk0NTEgOS44NzEwOSAyMC4xNjk0VjEyLjcxMThDOS44NzEwOSAxMC45MzYxIDExLjI3MzcgOS40OTE0NiAxMi45OTc4IDkuNDkxNDZDMTQuNzIxOSA5LjQ5MTQ2IDE2LjEyNDUgMTAuOTM2MSAxNi4xMjQ1IDEyLjcxMThWMTUuNTkzMUMxNi4xMjQ1IDE1Ljk2NzUgMTUuODI5OCAxNi4yNzExIDE1LjQ2NjMgMTYuMjcxMUMxNS4xMDI3IDE2LjI3MTEgMTQuODA4IDE1Ljk2NzUgMTQuODA4IDE1LjU5MzFWMTIuNzExOEMxNC44MDggMTEuNjgzNyAxMy45OTYgMTAuODQ3NCAxMi45OTc4IDEwLjg0NzRDMTEuOTk5NiAxMC44NDc0IDExLjE4NzUgMTEuNjgzNyAxMS4xODc1IDEyLjcxMThWMjAuMTY5NEMxMS4xODc1IDIxLjE5NzUgMTEuOTk5NiAyMi4wMzM5IDEyLjk5NzggMjIuMDMzOUMxMy45OTYgMjIuMDMzOSAxNC44MDggMjEuMTk3NSAxNC44MDggMjAuMTY5NFYxOS45MTQyQzE0LjgwOCAxOS41Mzk3IDE1LjEwMjcgMTkuMjM2MiAxNS40NjYzIDE5LjIzNjJDMTUuODI5OCAxOS4yMzYyIDE2LjEyNDUgMTkuNTM5NyAxNi4xMjQ1IDE5LjkxNDJWMjAuMTY5NEMxNi4xMjQ2IDIxLjk0NTEgMTQuNzIxOSAyMy4zODk3IDEyLjk5NzggMjMuMzg5N1oiIGZpbGw9IiMwMDVEQUUiLz4KPHBhdGggZD0iTTIwLjQwNzggMTYuMjcxMkMyMC4yMzMyIDE2LjI3MTIgMjAuMDY1OCAxNi4xOTk3IDE5Ljk0MjQgMTYuMDcyNkMxOS44MTg5IDE1Ljk0NTUgMTkuNzQ5NiAxNS43NzMgMTkuNzQ5NiAxNS41OTMyVjMuMjIwMzFDMTkuNzQ5NiAyLjE5MjI3IDE4LjkzNzUgMS4zNTU4NiAxNy45MzkzIDEuMzU1ODZDMTYuOTQxMSAxLjM1NTg2IDE2LjEyOSAyLjE5MjI3IDE2LjEyOSAzLjIyMDMxVjEyLjcxMTlDMTYuMTI5IDEzLjA4NjMgMTUuODM0MyAxMy4zODk4IDE1LjQ3MDggMTMuMzg5OEMxNS4xMDcyIDEzLjM4OTggMTQuODEyNSAxMy4wODYzIDE0LjgxMjUgMTIuNzExOVYzLjIyMDMxQzE0LjgxMjUgMS40NDQ2MSAxNi4yMTUxIDAgMTcuOTM5MiAwQzE5LjY2MzMgMCAyMS4wNjU5IDEuNDQ0NjEgMjEuMDY1OSAzLjIyMDMxVjE1LjU5MzJDMjEuMDY2IDE1LjY4MjIgMjEuMDQ5IDE1Ljc3MDQgMjEuMDE1OSAxNS44NTI3QzIwLjk4MjkgMTUuOTM0OSAyMC45MzQ0IDE2LjAwOTcgMjAuODczMyAxNi4wNzI2QzIwLjgxMjEgMTYuMTM1NiAyMC43Mzk2IDE2LjE4NTUgMjAuNjU5NyAxNi4yMTk2QzIwLjU3OTkgMTYuMjUzNyAyMC40OTQzIDE2LjI3MTIgMjAuNDA3OCAxNi4yNzEyWiIgZmlsbD0iIzAwNURBRSIvPgo8cGF0aCBkPSJNMTMuMDAwNyAzOS45OTk5QzExLjI0NTkgMzkuOTk5OSA5LjU0MzI2IDM5LjY0NTggNy45NDAwNyAzOC45NDc0QzYuMzkxODggMzguMjcyOSA1LjAwMTYyIDM3LjMwNzYgMy44MDc4MiAzNi4wNzgyQzIuNjE0MSAzNC44NDg3IDEuNjc2NzYgMzMuNDE2OCAxLjAyMTkxIDMxLjgyMjJDMC4zNDM4NDggMzAuMTcxIDAgMjguNDE3NCAwIDI2LjYxVjIwLjE2OTNDMCAxOS43OTQ5IDAuMjk0Njk1IDE5LjQ5MTQgMC42NTgyNjYgMTkuNDkxNEMxLjAyMTg0IDE5LjQ5MTQgMS4zMTY1MyAxOS43OTQ5IDEuMzE2NTMgMjAuMTY5M1YyNi42MUMxLjMxNjUzIDMzLjI0NTUgNi41NTggMzguNjQ0IDEzLjAwMDcgMzguNjQ0QzE5LjQ0MzQgMzguNjQ0IDI0LjY4NDkgMzMuMjQ1NiAyNC42ODQ5IDI2LjYxVjE5LjY2MDlDMjQuNjg0OSAxNy43OTE4IDIzLjIwODQgMTYuMjcxMSAyMS4zOTM2IDE2LjI3MTFIMTQuODEwOUMxNC43MjM2IDE2LjI3MTIgMTQuNjQgMTYuMzA2OSAxNC41NzgzIDE2LjM3MDVDMTQuNTE2NiAxNi40MzQgMTQuNDgxOSAxNi41MjAyIDE0LjQ4MTggMTYuNjFDMTQuNDgxOCAxOC40NzkyIDE1Ljk1ODIgMTkuOTk5OSAxNy43NzMxIDE5Ljk5OTlIMjAuNDA2MkMyMC41ODA3IDE5Ljk5OTkgMjAuNzQ4MiAyMC4wNzEzIDIwLjg3MTYgMjAuMTk4NUMyMC45OTUxIDIwLjMyNTYgMjEuMDY0NCAyMC40OTgxIDIxLjA2NDQgMjAuNjc3OVYyMy43Mjg3QzIxLjA2NDQgMjMuOTA4NSAyMC45OTUxIDI0LjA4MSAyMC44NzE2IDI0LjIwODFDMjAuNzQ4MiAyNC4zMzUzIDIwLjU4MDcgMjQuNDA2NyAyMC40MDYyIDI0LjQwNjdDMTYuNDEzNSAyNC40MDY3IDEzLjE2NTIgMjcuNzUyMiAxMy4xNjUyIDMxLjg2NDNDMTMuMTY1MiAzMi4yMzg4IDEyLjg3MDUgMzIuNTQyMyAxMi41MDcgMzIuNTQyM0MxMi4xNDM0IDMyLjU0MjMgMTEuODQ4NyAzMi4yMzg4IDExLjg0ODcgMzEuODY0M0MxMS44NDg3IDMwLjY3NDggMTIuMDc1MSAyOS41MjA1IDEyLjUyMTUgMjguNDMzNUMxMi45NTI1IDI3LjM4MzkgMTMuNTY5NSAyNi40NDE1IDE0LjM1NTEgMjUuNjMyMkMxNS4xNDA4IDI0LjgyMyAxNi4wNTU5IDI0LjE4NzYgMTcuMDc1IDIzLjc0MzdDMTcuOTI0OCAyMy4zNzMgMTguODI3NiAyMy4xNDc1IDE5Ljc0NzkgMjMuMDc2M1YyMS4zNTU5SDE3Ljc3MzFDMTYuNTQyMyAyMS4zNTU5IDE1LjM4NTIgMjAuODYyMiAxNC41MTQ5IDE5Ljk2NTlDMTMuNjQ0NiAxOS4wNjk2IDEzLjE2NTMgMTcuODc3OCAxMy4xNjUzIDE2LjYxMDJDMTMuMTY1MyAxNS42NzU3IDEzLjkwMzUgMTQuOTE1MyAxNC44MTEgMTQuOTE1M0gyMS4zOTM2QzIyLjYyNDQgMTQuOTE1MyAyMy43ODE2IDE1LjQwOSAyNC42NTE5IDE2LjMwNTNDMjUuNTIyMiAxNy4yMDE2IDI2LjAwMTUgMTguMzkzNCAyNi4wMDE1IDE5LjY2MTFWMjYuNjEwMkMyNi4wMDE1IDI4LjQxNzUgMjUuNjU3NiAzMC4xNzExIDI0Ljk3OTYgMzEuODIyM0MyNC4zMjQ3IDMzLjQxNjggMjMuMzg3NSAzNC44NDg3IDIyLjE5MzcgMzYuMDc4M0MyMC45OTk5IDM3LjMwNzcgMTkuNjA5NiAzOC4yNzMxIDE4LjA2MTQgMzguOTQ3NUMxNi40NTgyIDM5LjY0NTggMTQuNzU1NSAzOS45OTk5IDEzLjAwMDcgMzkuOTk5OVoiIGZpbGw9IiMwMDVEQUUiLz4KPC9zdmc+Cg==);
}

.formated blockquote p {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    padding-left: 56px;
}

.formated button {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    display: flex;
    padding: 12px 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #005DAE;
    border: none;
    max-width: 320px;
    transition: 0.3s ease;
    cursor: pointer;
}

.formated a {
    color: #005DAE;
    transition: .3s ease;
}

@media screen and (min-width: 991.98px) {
    .formated {
        margin-bottom: 88px;
    }

    .formated .title h1 {
        font-size: 44px;
        line-height: 128%;
    }

    .formated .title span {
        font-size: 18px;
        line-height: 156%;
    }

    .formated img {
        margin: 48px auto 16px;
    }

    .formated h2 {
        font-size: 36px;
        line-height: 132%;
        margin: 64px 0 28px;
    }

    .formated p {
        font-size: 18px;
        line-height: 156%;
    }

    .formated h3 {
        font-size: 28px;
        line-height: 142%;
        margin: 64px 0 28px;
    }

    .formated h4 {
        font-size: 26px;
        line-height: 132%;
        margin: 64px 0 28px;
    }

    .formated h5 {
        font-size: 24px;
        line-height: 132%;
        margin: 64px 0 28px;
    }

    .formated h6 {
        font-size: 22px;
        line-height: 132%;
        margin: 64px 0 28px;
    }

    .formated p:not(:last-child) {
        margin-bottom: 28px;
    }

    .formated blockquote {
        margin: 28px 0 24px;
    }

    .formated button:hover {
        background: #004785;
    }

    .formated a:hover {
        opacity: .7;
    }
}


/*formated end*/


/*not-found start*/

.not-found {
    margin: 24px 0 120px;
}

.not-found__title {
    margin-bottom: 20px;
}

.not-found__title div {
    color: #4A6F8F;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 8px;
}

.not-found__title h1 {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 142%;
}

.not-found__content {
}

.not-found__content p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.not-found__content p:not(:last-child) {
    margin-bottom: 20px;
}

.not-found__content-btns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.not-found__content-btns a:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    border-radius: 6px;
    background: #005DAE;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    transition: .3s ease;
}

.not-found__content-btns a:last-child {
    color: #005DAE;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    transition: .3s ease;

}

.contacts-form--not-found h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    margin-bottom: 12px;
}

.not-found__card {
    position: relative;
}

.not-found__item {
    display: block;
    border-radius: 12px;
    padding: 24px;
    min-height: 400px;
}

.not-found__item .brand {
    display: block;
    width: 48px;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    right: 24px;
}

.not-found__item picture {
    display: block;
    padding-top: 142%;
    position: relative;
    width: 100%;
    margin-bottom: -20px;
    margin-left: -40px;
}

.not-found__item picture img {
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.not-found__item--blue {
    transition: .3s ease;
    background: #005DAE;
}

@media screen and (min-width: 767.98px) {
    .not-found__wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }
}

@media screen and (min-width: 991.98px) {
    .not-found {
        margin-bottom: 88px;
    }

    .contacts-form--not-found .contacts-form__inputs {
        grid-template-columns: repeat(2, 1fr);
    }

    .not-found__title {
        margin-bottom: 24px;
    }

    .not-found__title div {
        font-size: 18px;
        line-height: 156%;
    }

    .not-found__title h1 {
        font-size: 44px;
        line-height: 128%;
    }

    .not-found__content p {
        font-size: 18px;
        line-height: 156%;
    }

    .not-found__content p:not(:last-child) {
        margin-bottom: 24px;
    }

    .not-found__content-btns {
        margin-bottom: 48px;
    }

    .not-found__content-btns a:first-child:hover {
        background: #004785;
    }

    .not-found__content-btns a:last-child:hover {
        opacity: .7;
    }

    .not-found__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
    }

    .not-found__top {
        flex: 0 0 60%;
    }

    .not-found__bottom {
        flex: 0 0 35%;
    }

    .not-found__content-btns {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
}

/*not-found end*/

.fslightbox-open {
    overflow: visible !important;
}


.policy h1 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 134%;
    margin-bottom: 20px;
}


.policy h4 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 142%;
    margin-bottom: 16px;
}


.policy p {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 160%;

    b {
        font-weight: 700;
    }
}

.policy p:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (min-width: 991.98px) {
    .policy h1 {
        font-size: 44px;
        line-height: 128%;
        margin-bottom: 40px;
    }

    .policy h4 {
        font-size: 36px;
        line-height: 134%;
        margin-bottom: 28px;
    }

    .policy p {
        font-size: 16px;
        line-height: 150%;
    }

    .policy p:not(:last-child) {
        margin-bottom: 24px;
    }
}