:root {
    --blue-color: #019fc4;
    --green-color: #00b050;
    --orange-color: #f37736;
    --light-orange-color: #ffa26d;
    --dark-blue-color: #041229;
    --white-color: #ffffff;
    --dark-grey-color: #858585;
    --mild-grey-color: #a8a9ad;
    --light-grey-color: #dadde7;
    --error-color: #ee2e3b;
}

html {
    color: var(--dark-blue-color);
}

html.with-fancybox {
    overflow: hidden;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: normal;
    line-height: 1em;
}

h1,
.h1 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 96px;
    line-height: 100px;
}

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

    h1,
    .h1 {
        font-size: 80px;
        line-height: 95%;
    }
}

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

    h1,
    .h1 {
        font-size: 70px;
        line-height: 120%;
    }
}

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

    h1,
    .h1 {
        font-size: 36px;
    }
}

h2,
.h2 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 46px;
    line-height: 1.2em;

    /* identical to box height */
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

    h2,
    .h2 {
        font-size: 40px;
        line-height: 120%;
    }
}

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

    h2,
    .h2 {
        font-size: 23px;
    }
}

h3,
.h3 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 23px;
    line-height: 1.2em;
    margin-bottom: 16px;
}

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

    h3,
    .h3 {
        font-size: 20px;
        line-height: 120%;
    }
}

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

    h3,
    .h3 {
        font-size: 18px;
    }
}

h4,
.h4 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 10px;
}

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

    h4,
    .h4 {
        font-size: 15px;
        line-height: 120%;
    }
}

h5,
.h5 {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    margin-bottom: 10px;
}

.no-scroll {
    overflow: hidden;
}

a {
    color: var(--dark-blue-color);
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    transition: border-color 1s ease;
    transition: all .3s ease;
}

a:hover {
    text-decoration: none;
}

a.link {
    border-color: var(--dark-blue-color);
}

a.link:hover {
    border-color: var(--orange-color);
}

a.link.pseudo {
    border-color: var(--dark-blue-color);
    border-bottom-style: dashed;
}

*::selection {
    background: var(--orange-color);
    color: var(--white-color);
}

*::-moz-selection {
    background: var(--orange-color);
    color: var(--white-color);
}

small {
    font-size: 12px;
}

/*a.link-detail:after{*/
/*    content: '';*/
/*    */
/*}*/

ul.user-list li {
    list-style: disc;
}

.button {
    display: block;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.button {
    padding: 13px 32px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    color: var(--white-color);
    border-radius: 32px;
    background-color: var(--orange-color);
    border: 1px solid var(--orange-color);
}

.button-small {
    padding: 0.5em 1em;
    font-size: 12px;
}

.button:hover {
    border-color: var(--light-orange-color);
    background-color: var(--light-orange-color);
}

.btn {
    padding: 1em;
    /*border: 1px solid var(--purple-color);*/
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    /*color: var(--white-color);*/
    /*background-color: var(--purple-color);*/
    box-sizing: border-box;
    box-shadow: 0 0 1em 1em rgba(103, 69, 135, 0);
    transition: all 0.5s ease-in-out;
}

a.btn:hover,
.btn:hover {
    color: var(--white-color);
    background-color: #80689c;
    border-color: #80689c;
    box-shadow: 0 1em 2em -10px rgba(103, 69, 135, 0.6);
    text-decoration: none;
}

.btn_block_white {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    /*color: var(--dark-color);*/
    text-decoration: none;
    transition: background-color, color 0.25s ease-in-out;
}

.btn_block_white:not(.no-hover-effect):hover {
    /*background-color: var(--purple-color);*/
    color: var(--white-color);
    text-decoration: none;
}

.button--outline {
    background-color: transparent;
    color: var(--dark-blue-color);
}

.button--outline-orange {
    background: none;
    color: var(--dark-blue-color);
}

.button--icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: all 1s ease;
    border: none;
}

.btn-link--arrow:after {
    content: "";
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646447 12.3032C0.451184 12.4984 0.451184 12.815 0.646447 13.0103C0.841709 13.2056 1.15829 13.2056 1.35355 13.0103L0.646447 12.3032ZM12.8137 1.34303C12.8137 1.06689 12.5899 0.84303 12.3137 0.843029L7.81371 0.843029C7.53757 0.843029 7.31371 1.06689 7.31371 1.34303C7.31371 1.61917 7.53757 1.84303 7.81371 1.84303L11.8137 1.84303L11.8137 5.84303C11.8137 6.11917 12.0376 6.34303 12.3137 6.34303C12.5899 6.34303 12.8137 6.11917 12.8137 5.84303L12.8137 1.34303ZM1.35355 13.0103L12.6673 1.69658L11.9602 0.989476L0.646447 12.3032L1.35355 13.0103Z' fill='%23041229'%3E%3C/path%3E%3C/svg%3E");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: inherit;
}

.btn-link--arrow:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='14' viewBox='0 0 13 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.646447 12.3032C0.451184 12.4984 0.451184 12.815 0.646447 13.0103C0.841709 13.2056 1.15829 13.2056 1.35355 13.0103L0.646447 12.3032ZM12.8137 1.34303C12.8137 1.06689 12.5899 0.84303 12.3137 0.843029L7.81371 0.843029C7.53757 0.843029 7.31371 1.06689 7.31371 1.34303C7.31371 1.61917 7.53757 1.84303 7.81371 1.84303L11.8137 1.84303L11.8137 5.84303C11.8137 6.11917 12.0376 6.34303 12.3137 6.34303C12.5899 6.34303 12.8137 6.11917 12.8137 5.84303L12.8137 1.34303ZM1.35355 13.0103L12.6673 1.69658L11.9602 0.989476L0.646447 12.3032L1.35355 13.0103Z' fill='%23f37736'%3E%3C/path%3E%3C/svg%3E");
}

.btn-link svg path {
    transition: all 1s ease;
}

.btn-link:hover {
    color: var(--orange-color);
}

.btn-link:not(.btn-link--stroke):hover svg path {
    fill: var(--orange-color);
}

.btn-link--stroke:hover svg path {
    stroke: var(--orange-color);
}

.close:before,
.close:after {
    background-color: var(--dark-blue-color);
}

.icon {
    transition: stroke 0.25s ease;
}

.button:hover .icon {
    stroke: var(--white-color);
}

p+p,
ul+p {
    margin-top: 16px;
}

p.big-text {
    font-size: 19px;
}

/*Заголовок*/
.title_link {
    position: relative;
    padding-right: 39px;
    border: none;
}

.title_link span.icon {
    position: relative;
}

.title_link span.icon::after {
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM5NTRfMTc0OTEpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjQ5OTk5IDAuNUgyMy41VjIwLjM3NUgyMC41VjUuNjIxMzJMMi4wNjA2NSAyNC4wNjA3TC0wLjA2MDY2ODkgMjEuOTM5M0wxOC4zNzg3IDMuNUg0LjQ5OTk5VjAuNVoiIGZpbGw9IiNGMjc0MzUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zOTU0XzE3NDkxIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
    width: 29px;
    height: 29px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 9px;
    background-size: contain;
    transition: .3s;
    position: absolute;
    transform: translateY(.3em);
}

.title_link svg {
    display: none;
    width: 29px;
    height: 29px;
    stroke: var(--orange-color);
    margin-left: 6px;
    transition: stroke 0.5s ease;
    position: absolute;
    right: 0;
    bottom: 8px;
}

.title_link:hover span.icon::after {
    filter: invert(1);
    opacity: .8;
}

@media screen and (max-width: 576px) {
    .title_link {
        padding-right: 30px;
    }

    .title_link span.icon::after {
        width: 16px;
        height: 16px;
    }
}

/*Кнопка ИМ в меню*/
.shop-link-top-menu {
    white-space: nowrap;
    margin-right: 17px;
}

.external-link-menu span.icon {
}

.external-link-menu span.icon::after {
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzM5NTRfMTc0OTEpIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjQ5OTk5IDAuNUgyMy41VjIwLjM3NUgyMC41VjUuNjIxMzJMMi4wNjA2NSAyNC4wNjA3TC0wLjA2MDY2ODkgMjEuOTM5M0wxOC4zNzg3IDMuNUg0LjQ5OTk5VjAuNVoiIGZpbGw9IiNGMjc0MzUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8zOTU0XzE3NDkxIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=);
    width: 10px;
    height: 10px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
    background-size: contain;
    transition: .3s;
    position: absolute;
    transform: translateY(.3em);
}

.external-link-menu:hover span.icon::after {
    filter: invert(1);
    opacity: .8;
}

@media screen and (max-width: 1278px) {
    .external-link-menu span.icon::after {
        width: 12px;
        height: 12px;
    }
}

.mobile-menu-btn {
    display: none;
    position: absolute;
    right: 16px;
    top: 35%;
    width: 24px;
    height: 22px;
    cursor: pointer;
    z-index: 11;
}

.mobile-menu-btn::before {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 3px;
    /*background-color: var(--purple-color);*/
    border-radius: 2px;
    transition: width, transform 0.25s ease-in-out;
}

.mobile-menu-btn::after {
    content: " ";
    position: absolute;
    right: 0;
    top: 10px;
    width: 60%;
    height: 3px;
    /*background-color: var(--purple-color);*/
    border-radius: 2px;
    transition: width 0.25s ease-in-out;
}

.mobile-menu-btn span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 3px;
    /*background-color: var(--purple-color);*/
    border-radius: 2px;
    opacity: 1;
    transition: width, opacity, transform 0.25s ease-in-out;
}

.mobile-menu-btn:hover::after {
    width: 100%;
}

.mobile-menu-btn:hover span {
    width: 100%;
}

.mobile-menu-btn.open span {
    width: 100%;
    transform: rotate(135deg) translateY(13px);
}

.mobile-menu-btn.open:hover span,
.mobile-menu-btn.open:hover:before {
    opacity: 0.75;
}

.mobile-menu-btn.open:before {
    width: 100%;
    transform: rotate(45deg) translateY(13px);
}

.mobile-menu-btn.open:after {
    opacity: 0;
}

.header.header_scroll {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    margin: auto;
    z-index: 20;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.popup,
#popup {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 30;
    top: 0;
    left: 0;
}

.popup.active,
#popup.active {
    display: block;
    z-index: 9999;
}

.popup-shadow {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--dark-blue-color);
    opacity: 0.6;
    z-index: 1;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.page-shadow {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--dark-blue-color);
    opacity: 0.6;
    z-index: 9;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.page-shadow:hover {
    opacity: 0.4;
}

.page-shadow.active {
    display: block;
}

.page-shadow.active .bottom_header {
    cursor: pointer;
}

.popup>.box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: auto;
    padding-top: 120px;
    padding-bottom: 10vh;
    scrollbar-width: 0;
}

@media screen and (max-width:576px) {
    .popup>.box {
        padding-top: 50px;
    }
}

.popup>.box::-webkit-scrollbar {
    width: 0;
}

.popup .message {
    position: relative;
    display: block;
    width: 100%;
    min-width: 300px;
    max-width: 580px;
    padding: 16px;
    box-sizing: border-box;
    background-color: #ffffff;
    /*color: var(--dark-color);*/
    border-radius: 15px;
    overflow: auto;
    z-index: 10;
    transform: translateY(-500%);
    transition: transform 0.5s ease-in-out;
}

.message.active {
    transform: translateY(0);
}

.popup .message .close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.consult-form__success {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    font-size: 2em;
}

.purple-color-text {
    /*color: var(--purple-color);*/
}

.mobile-menu-bottom {
    display: none;
}

.scrolled-block {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#popup .form {
    padding: 34px 26px 40px;
}

.background-grey {
    background-color: rgba(240, 241, 245, 0.8);
}

.form-control {
    display: block;
    width: 100%;
    background-color: #f9f9f9;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 14px;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 24px;
}

.header {
    position: relative;
    z-index: 2;
    background: rgba(240, 252, 255, 0.2);
    transition: background 0.5s ease;
    padding: 0 16px;
}

.header.header_menu_open {
    background: var(--white-color);
}

/* header:not(.header_menu_open) {
    overflow: hidden;
} */

.header:before {
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(5px);
    z-index: -1;
    box-shadow: 0px 0 100px 100px rgb(240 252 255 / 72%) inset;
}



.header__top-line {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 8px;
}

.header__top-line__right-side {
    display: flex;
    justify-content: space-between;
}

.header__top-line__left-side__shop_link {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border: 1px solid var(--orange-color);
    background-color: var(--orange-color);
    color: var(--white-color);
    box-sizing: border-box;
    border-radius: 55px;
    font-size: 12px;
    transition: background-color 1s, color 1s, border 1s ease;
}

.header__top-line__left-side__shop_link svg {
    margin-left: 8px;
    stroke: var(--white-color);
    height: 10px;
}

.header__top-line__left-side__shop_link svg path {
    fill: var(--white-color);
}

.header__top-line__left-side__shop_link:hover {
    background-color: var(--white-color);
    border-color: var(--dark-blue-color);
    color: var(--dark-blue-color);
}

.header__top-line__left-side__shop_link:hover svg {
    stroke: var(--orange-color);
}

.header__top-line__left-side__shop_link:hover svg path {
    fill: var(--orange-color);
}

.header__top-line__right-side__callback {
    display: flex;
    align-items: center;
    margin-right: 24px;
    transition: color 0.5s ease;
}

.header__top-line__right-side__callback svg {
    height: 21px;
    width: 21px;
    box-sizing: border-box;
    padding: 4px;
    border: 1px solid var(--dark-blue-color);
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50px;
    margin-right: 8px;
    transition: border-color 0.5s ease, stroke 0.5s ease, background-color 0.5s ease;
}

.header__top-line__right-side__callback svg path {
    background-color: rgba(0 0 0 0);
    stroke: var(--dark-blue-color);
    fill: none;
    transition: stroke 0.5s ease;
}

.header__top-line__right-side__callback:hover {
    color: var(--orange-color);
}

.header__top-line__right-side__callback:hover svg {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.header__top-line__right-side__callback:hover svg path {
    stroke: var(--white-color);
}

.header__top-line__right-side__question {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--dark-blue-color);
    color: var(--dark-blue-color);
}

.header__top-line__right-side__question:hover {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    color: var(--white-color);
}

.footer {
    padding: 0 16px;
}

.footer-menu-top {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 42px;
}

.footer-menu-top__left {
    display: flex;
    justify-content: space-between;
    width: 700px;
    max-width: 100%;
}

.footer-menu-top__right {
    width: 270px;
    margin-left: 40px;
}

.shop-link_big {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 18px 36px;
    font-size: 12px;
    border-radius: 68px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--orange-color);
    transition: background-color 0.5s ease, color 0.5s ease;
}

.shop-link_big svg {
    min-width: 24px;
    min-height: 24px;
    stroke: var(--orange-color);
    margin-left: 4px;
}

.shop-link_big:hover {
    color: var(--white-color);
    background-color: var(--orange-color);
}

.shop-link_big:hover svg {
    stroke: var(--white-color);
}

.shop-link_big:hover svg path {
    fill: var(--white-color);
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .header__top-line {
        display: none;
    }
}

/*-------FORMS---------*/

.corp-form_wrapper {
    display: block;
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 464px;
    background-color: var(--white-color);
    padding: 48px 40px 40px;
    opacity: 0;
    z-index: 20;
    transition: opacity 0.5s ease;
}

.corp-form_wrapper.active {
    opacity: 1;
}

.corp-form_wrapper .close {
    position: absolute;
    top: 29px;
    right: 29px;
}

.corp-form_wrapper .message-info {
    color: var(--orange-color);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 40px;
    cursor: pointer;
}

@media screen and (max-width:576px) {
    .corp-form_wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.corp-form__margin {
    margin-top: 40px;
}

.alert {
    font-size: 10px;
    text-align: center;
    padding: 10px;
    background-color: #fff3cd;
    border-radius: 10px;
    border: 1px solid #ffecb5;
}

/*.corp-form-description{*/
/*    margin-bottom: 40px;*/
/*    padding-right: 100px;*/
/*}*/

/* text field */
/*.text-field {
    margin-bottom: 1rem;
}*/

.text-field__wrapper--inline {
    display: flex;
    border: 2px solid var(--white-color);
    border-radius: 32px;
    background-color: var(--white-color);
}

.text-field__wrapper--inline>.text-field {
    flex-grow: 1;
}

.text-field_floating+.text-field_floating {
    margin-top: 1rem;
}

.text-field__wrapper--inline .text-field_floating .text-field__input {
    background-color: transparent;
    border: none;
}

.text-field__wrapper--inline .text-field_floating .text-field__input:focus {
    border-color: transparent;
}

.text-field_floating {
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.js-form-field-wrapper.text-field_floating {
    overflow: visible;
}

.js-form-field-wrapper .textarea-field__input:focus~label {
    background-color: transparent;
}

.text-field__label {
    display: block;
    margin-bottom: 0.25rem;
}

.text-field__label i {
    opacity: .7;
}

.text-field__input {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbdbd;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.text-field__input[type="search"]::-webkit-search-decoration,
.text-field__input[type="search"]::-webkit-search-cancel-button,
.text-field__input[type="search"]::-webkit-search-results-button,
.text-field__input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.text-field__input::placeholder {
    color: #212529;
    opacity: 0.4;
}

.text-field__input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #bdbdbd;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(158, 158, 158, 0.25);
}

.text-field__input:disabled,
.text-field__input[readonly] {
    background-color: #f5f5f5;
    opacity: 1;
}

.text-field__input--margin-bottom {
    margin-bottom: 1.6666667rem;
}

.text-field__input--margin-top {

}

.input-show-icon {
    position: absolute;
    margin: auto;
    top: 15px;
    right: 28px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.input-show-icon svg {
    stroke: #a8a9ad;
    transition: stroke 0.25s ease;
}

.text-field_show-password .input-show-icon svg {
    stroke: var(--blue-color);
}

.text-field_show-password .input-show-icon:hover svg,
.input-show-icon:hover svg {
    stroke: var(--orange-color);
}

/* with floating label */
.checkbox-field_floating,
.text-field_floating {
    display: flex;
    position: relative;
}

.text-field_floating {
    flex-wrap: wrap;
}

.checkbox-field_floating {
    margin-top: 17px;
}

.checkbox-field_floating+.checkbox-field_floating {
    margin-top: 9px;
}

.text-field_floating .text-field__input {
    border: 1px solid #F6F6F6;
    border-radius: 2rem;
    min-height: calc(3rem + 5px);
    line-height: normal;
    padding: 1rem 1.6rem;
    background-color: #F6F6F6;
}

.text-field_floating .text-field__input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--orange-color)
}

.text-field_floating .text-field__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 1.6rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: #A8A9AD;
    line-height: 120%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-field_floating .text-field__input::-moz-placeholder {
    color: transparent;
}

.text-field_floating .text-field__input::placeholder {
    color: transparent;
}

.text-field_floating .text-field__input:focus,
.text-field_floating .text-field__input:not(:placeholder-shown) {
    padding: 1.3333rem 1.6rem 0.66666rem;
}

.text-field_floating .text-field__input:focus~.text-field__label,
.text-field_floating .text-field__input:not(:placeholder-shown)~.text-field__label {
    transform: scale(0.7) translateY(0.066666rem) translateX(0.7rem);
    height: auto;
    padding-top: 0.66666rem;
}


.textarea-field__input {
    width: 100%;
    height: 212px;
    padding: 16px 24px;
    background: linear-gradient(0deg, rgba(235, 235, 235, 0.45), rgba(235, 235, 235, 0.45)), #ffffff;
    border: none;
    border-radius: 12px;
    resize: none;
}


.textarea-field__input::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    height: 80%;
    padding-right: 20px;
}

.textarea-field__input::-webkit-scrollbar-thumb {
    background-color: #A8A9AD;
    border-radius: 10px;
    padding-right: 20px;
}

.textarea-field__input~label {
    border-radius: 30px;
}

.textarea-field__input:focus~label,
.textarea-field__input:not(:placeholder-shown)~label {
    border-radius: 30px 30px 0 0;
    padding-top: 12px;
    padding-bottom: 2px;
    width: 135%;
    background-color: #f1f1f1;
}

.text-field__fakeInput {
    display: block;
    min-width: 16px;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    border: 1px solid var(--mild-grey-color);
    background: url("../images/svg/checkbox-select.svg") no-repeat center;
    background-size: 0;
    margin-right: 8px;
    transition: background 0.25s ease;
}

.checkbox-org-field > .text-field__fakeInput {
    margin-left: 8px;
}

.checkbox-field__input:checked+.text-field__fakeInput {
    background-size: 80%;
}

.checkbox-field__label {
    font-size: 10px;
    opacity: 0.5;
    cursor: pointer;
}

.checkbox-field__label a {
    text-decoration: underline;
    transition: color 0.5s ease;
}

.checkbox-field__label a {
    color: inherit;
}

.form-error .checkbox-field__label {
    color: #ee2e3b;
    opacity: 1;
}

.checkbox-field__label a:hover {
    color: var(--orange-color);
}

.feedback_form_btn {
    margin-top: 40px;
}

a.feedback_form_btn {
    display: inline-block;
}

.feedback_form_btn_close {
    margin-top: 24px;
}

.form-error .text-field__input {
    border: 1px solid #ee2e3b;
}

.textarea-field__input.form-error {
    border: 1px solid #ee2e3b;
}

.subscribe-title {
    margin-bottom: 16px;
}

.reg-switcher {
    display: flex;
    margin-bottom: 40px;
}

.reg-switcher__item {
    display: flex;
    flex: 1;
    align-items: center;
}

.reg-switcher__item:not(.reg-switcher__item_active) {
    cursor: pointer;
}

.reg-switcher__item__fake-radio {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--orange-color);
    box-sizing: border-box;
    margin-right: 16px;
}

.reg-switcher__item_active .reg-switcher__item__fake-radio:before {
    content: "";
    display: block;
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--orange-color);
}

.need_reg_text {
    margin: 40px auto 8px;
}

.corp-form-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 114.52%;
}

.corp-form-description {
    margin: 0 0 40px;
}

.need_reg_link {
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.25s ease;
    margin-top: 16px;
}

.need_reg_link:hover {
    color: var(--orange-color);
}

.form-wrapper .btn-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.error-field {
    color: #ee2e3b;
    margin-bottom: 16px;
}

.input-error {
    height: 0;
    opacity: 0;
    color: var(--error-color);
    overflow: hidden;
    transition: height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
    font-size: 12px;
}

.file-upload__item {
    display: none;
    margin-bottom: 16px;
}

.file-upload__item:first-of-type {
    display: block;
}

.file-upload__wrap {
    position: relative;
    margin-top: 8px;
    margin-bottom: 0;
}

.file-upload__wrap input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

.file-upload__wrap label {
    max-width: 100%;
    border-radius: 2rem;
    cursor: pointer;
    background-color: #f6f6f6;
    padding: 16px 20px;
    transition: .3s;
    overflow: hidden;
    display: block;
    border: 1px solid #f6f6f6;
    margin-bottom: 10px;
}

.file-upload__title {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: var(--dark-blue-color);

}

.file-upload__text {
    color: #A8A9AD;
    font-size: 10px;
}

.file-upload__files {
    padding: 23px 0;
}

.file-upload__files li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    word-break: break-all;
    border: solid 1px green;
    border-radius: 2rem;
    padding: 15px 0;
    padding-left: 10px;
}

.file-upload__files li:not(:last-child) {
    margin-bottom: 15px;
}

.file-upload__files li .delete-btn {
    cursor: pointer;
    position: relative;
    height: 14px;
    width: 14px;
    transition: .3s;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUw4IDhNMTUgMTVMOCA4TTggOEwxNSAxTTggOEwxIDE1IiBzdHJva2U9IiMwNDEyMjkiLz4KPC9zdmc+Cg==);
    background-repeat: no-repeat;
    background-size: contain;
}

.file-upload__files li .delete-btn:hover {
    opacity: .7;
}

.file-upload__files__ico {
    min-width: 30px;
    min-height: 30px;
    position: relative;
}

.file-upload.form-error .file-upload__wrap label {
    border-color: var(--error-color);
}

.text-field__container {
    margin-bottom: 16px;
}

@media screen and (max-width:768px) {
    .text-field__container {
        margin-bottom: 24px;
    }
}

/*-------FORMS-END-----*/

.footer-menu-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    width: 140px;
    height: 41px;
    margin-right: 60px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

/* .footer-menu-bottom__public-info {
    display: none;
} */

.footer-menu-bottom__copyright {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    color: var(--mild-grey-color);
    margin-bottom: 37px;
    font-size: 12px;
}

@media (max-width:425px) {
    .footer-menu-bottom__copyright {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.footer-menu-bottom__copyright__right {
    font-size: inherit;
    color: inherit;
    transition: color 0.5s ease;
}

.footer-menu-bottom__copyright__right:hover {
    color: var(--orange-color);
}

.button-up-wrapper {
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    width: calc(100% - 16px);
    bottom: 10%;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.button-up-wrapper.button-up-active {
    opacity: 1;
}

.button-up {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 6px;
    stroke: var(--blue-color);
    width: 42px;
    height: 42px;
    background: var(--white-color);
    border-radius: 50%;
    border: 1px solid var(--blue-color);
    transition: transform 0.25s ease-in-out, border-color 0.25s ease, stroke 0.25s ease;
}

.button-up:hover {
    transform: scale(1.2);
    border-color: var(--orange-color);
    stroke: var(--orange-color);
}

.cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(240, 252, 255, 0.8);
    z-index: 10;
    transition: opacity 0.5s ease;
}

.cookie-wrapper.remove {
    opacity: 0;
}

.cookie-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}

.cookie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 16px;
}

.cookie__title {
    font-weight: 700;
    margin-bottom: 16px;
}

.cookie .cookie__right {
    margin-left: 131px;
}

@media screen and (max-width: 768px) {
    .cookie {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .cookie__title {
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 8px;
    }

    .cookie__description {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        margin-bottom: 8px;
    }

    .cookie .cookie__right {
        margin-left: 0;
    }
}

.text-large {
    font-size: 19px;
    line-height: 120%;
}

@media screen and (max-width: 768px) {
    .text-large {
        font-size: 15px;
    }
}

.page-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

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

.heroblock+section:not(.service-bg-section)+section:not(.service-bg-section) {
    padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .page-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 425px) {
    .page-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .page-section-md {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .form-wrapper .btn-block {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

.col {
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 769px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 1279px) {
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}


.center1200 {
    padding-left: 12px;
    padding-right: 12px;
}

/** Modal */
.modal {
    display: none;
    width: fit-content;
    height: fit-content;
    margin-top: 48px;
    max-width: 95%;
}

.modal--md {
    width: 460px;
}

.modal.fancybox__content>.carousel__button.is-close {
    top: 15px;
    right: 15px;
}

.modal.fancybox__content>.carousel__button.is-close svg {
    color: #151515;
    filter: none;
    height: 15px;
    width: 15px;
}

.modal__title {
    margin-bottom: 16px;
}

.modal__header {
    margin-bottom: 40px;
}

.modal__form .main-form__floating,
.modal__form input:not(.button),
.modal__form textarea {
    width: 100%;
}

.modal__form textarea {
    resize: none;
}

.swiper-slide::selection {
    background: none !important;
}

.swiper-slide::-moz-selection {
    background: none !important;
}

.swiper-slide a::selection {
    background: none;
}

.swiper-slide a::-moz-selection {
    background: none;
}

.swiper-slide img::selection {
    background: none;
}

.swiper-slide img::-moz-selection {
    background: none;
}


.slider-head,
.slider-head__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.slider-head {
    margin-bottom: 10px;
}

.slider-head--end {
    justify-content: flex-end;
    margin-top: -40px;
    margin-bottom: 40px;
}

.news-card__img .news-card__img--before {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.news-card__img:hover .news-card__img--before {
    opacity: 0;
}

.mobile-navigations {
    display: none;
}

.footer-navigations {
    display: none;
}

.footer_contacts_icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.footer_contacts_icons_item:not(:last-child) {
    margin-right: 16px;
}

.footer_contacts_icons_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.footer_contacts_icons_item_popup .footer_contacts_icons_item_info {
    display: flex;
    flex-direction: column;
}

.footer_contacts_icons_item_social {
    display: none;
}

.footer_contacts_icons_item__image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--blue-color);
    border-radius: 50%;
    margin-right: 24px;
    cursor: pointer;
    transition: border-color 0.5s ease;
}

.footer_contacts_icons_item__image svg {
    fill: none;
    stroke: var(--blue-color);
    transition: stroke 0.5s ease;
}

.footer_contacts_icons_text {
    display: inline-block;
    font-size: 19px;
    transition: color 0.5s ease;
}

a.footer_contacts_icons_text {
    white-space: nowrap;
}

.footer__phone-subtitle {
    color: #858585;
    transition: .3s;
}

.footer_contacts_icons_item:hover .footer_contacts_icons_item__image {
    border-color: var(--orange-color);
}

.footer_contacts_icons_item:hover .footer_contacts_icons_item__image svg {
    stroke: var(--orange-color);
}

.footer__phone-subtitle:hover {
    color: var(--orange-color);
}

.footer_contacts_icons_item:hover .footer_contacts_icons_text {
    color: var(--orange-color);
}

.footer_contacts_icons_item_popup .footer_contacts_icons_text:hover {
    color: var(--orange-color) !important;
}

.footer_contacts_icons_item_popup:hover .footer_contacts_icons_text {
    color: var(--dark-blue-color);
}

.footer_contacts_icons_item_popup .footer_contacts_icons_text:hover {
    color: var(--orange-color) !important;
}

.footer_contacts_icons_item_popup:hover .footer_contacts_icons_text {
    color: var(--dark-blue-color);
}

@media screen and (max-width: 1023px) {
    .header {
        /* order: 2; */
        z-index: 99;
        margin-bottom: 16px;
    }

    .mobile-navigations {
        display: none;
    }

    .footer_contacts_icons {
        width: auto;
        min-width: auto;
    }

    /* .footer-navigations {
        display: none;
    }

    .footer_contacts_icons {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 80%;
        min-width: 800px;
    }

    .footer_contacts_icons_item:not(:last-child) {
        margin-right: 16px;
    }

    .footer_contacts_icons_item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .footer_contacts_icons_item_social {
        display: none;
    }

    .footer_contacts_icons_item__image {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 42px;
        width: 42px;
        height: 42px;
        box-sizing: border-box;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid var(--blue-color);
        border-radius: 50%;
        margin-right: 24px;
        cursor: pointer;
        transition: border-color 0.5s ease;
    }

    .footer_contacts_icons_item__image svg {
        fill: none;
        stroke: var(--blue-color);
        transition: stroke 0.5s ease;
    }

    .footer_contacts_icons_text {
        display: inline-block;
        font-size: 19px;
        transition: color 0.5s ease;
    }

    .footer_contacts_icons_item:hover .footer_contacts_icons_item__image {
        border-color: var(--orange-color);
    }

    .footer_contacts_icons_item:hover .footer_contacts_icons_item__image svg {
        stroke: var(--orange-color);
    }

    .footer__phone-subtitle:hover {
        color: var(--orange-color);
    }

    .footer_contacts_icons_item:hover .footer_contacts_icons_text {
        color: var(--orange-color);
    }

    .footer_contacts_icons_item_popup .footer_contacts_icons_text:hover {
        color: var(--orange-color) !important;
    }

    .footer_contacts_icons_item_popup:hover .footer_contacts_icons_text {
        color: var(--dark-blue-color);
    }

    .footer_contacts_icons_item_popup .footer_contacts_icons_text:hover {
        color: var(--orange-color) !important;
    }

    .footer_contacts_icons_item_popup:hover .footer_contacts_icons_text {
        color: var(--dark-blue-color);
    } */
}

.checkbox__wrap>.checkbox__input {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: -1;
    opacity: 0;
}

.checkbox__wrap>.checkbox__label {
    display: inline-flex;
    align-items: flex-start;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.checkbox__wrap>.checkbox__label a {
    display: inline;
    text-decoration: underline;
    transition: all 0.5s ease;
}

.checkbox__wrap>.checkbox__label a:hover {
    color: var(--orange-color);
}

.checkbox__wrap>.checkbox__label:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #041229;
    margin-top: 3px;
    margin-right: 8px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all 0.15s ease;
}

.checkbox__wrap>.checkbox__input:not(:disabled):not(:checked)+.checkbox__label:hover::before {
    border-color: #f27435;
    transition: all 0.15s ease;
}

.checkbox__wrap>.checkbox__input:not(:disabled):not(:checked)+.checkbox__label {
    transition: all 0.5s ease;
}


.checkbox__wrap>.checkbox__input:disabled+.checkbox__label:before {
    border-color: #a8a9ad;
}

.checkbox__wrap>.checkbox__input:checked+.checkbox__label:before {
    background-image: url("../icons/checkbox-check.svg");
    transition: all 0.15s ease;
}

.checkbox__label {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: 0;
    color: #041229;
}

.checkbox__label-count {}


@media screen and (max-width: 1279px) {
    .header {
        /* order: 2; */
        z-index: 99;
        margin-bottom: 16px;
    }

    .header__bottom {
        width: 100%;
        position: fixed;
        top: 0px;
        display: flex;
        order: -1;
    }

    .header__bottom[stuck] {
        box-shadow: none;
    }

    .header__wrapper .header__top {
        display: none;
    }

    .header__top {
        /* position: absolute; */
    }

    .header__top-line {
        display: none;
    }

    .header__middle {
        padding: 0;
    }

    .header__bottom {
        margin-bottom: 15px;
    }

    .header__logo {
        display: none;
    }

    .header__search {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .header__search-form {
        margin-right: 0;
    }

    .header__search-input {
        min-width: 100%;
    }

    .header__phone {
        display: none;
    }

    .header__phone-mobile {
        display: flex;
        flex-direction: column;
        gap: 42px;
        margin-bottom: 32px;
    }

    .header__phone-mobile .header__top-line__right-side {
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .header__phone-mobile .header__top-line__right-side__question {
        height: 44px;
        padding: 0 31px;
    }

    .header__phone-mobile .header__phone-number {
        margin-bottom: 14px;
    }

    .header__phone-mobile .header__phone-subtitle {
        color: #ffffff;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .header__phone-mobile .header__top-line__left-side__shop_link {
        padding: 1.1em 1em;
        justify-content: center;
        max-width: 300px;
    }

    .header__logo-scroll[hide] {
        display: none;
        /* opacity: 1;
    width: auto;
    visibility: visible;
    margin-right: 24px; */
    }

    .header__bottom-wrapper {
        flex-direction: column;
        padding: 9px 16px;
    }

    .header__bottom-wrapper .left-menu {
        display: none;
    }

    .header__bottom-wrapper .right-menu {
        position: relative;
        align-items: center;
        justify-content: space-between;
        margin-right: auto;
        margin-left: 0;

        width: 100%;
    }

    .header__logo-nav {
        display: block;
    }

    .header__logo-nav svg {
        width: 120px;
    }

    .header__top-list_item:hover .header__top-sub {
        top: auto;
        left: -9px;
        bottom: calc(100% + 5px);
    }

    .header__top-mobile {
        padding: 0;
        justify-content: normal;
    }

    .header__top-mobile .header__top-list_item {
        padding: 0;
    }

    .header__top-mobile .header__top-left .header__top-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .header__top-mobile .header__top-left {
        margin-right: 0;
    }

    .header__top-mobile .header__top-list_link {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;

        color: #a8a9ad;
    }

    .header__top-mobile .header__top-right .header__top-list {
        display: flex;
        flex-direction: column;
    }

    .header__top-list_item-mobile {
        display: flex;
    }

    .header__top-list_item-mobile .header__top-list_link {
        padding: 3px 0 5px 8px;

        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .right-menu .right-menu__favorite {
        display: none;
    }

    .right-menu__icons {
        display: flex;
    }

    .right-menu__icons .right-menu__item svg {
        width: 32.5px;
        height: 29px;
    }

    .right-menu__icons .right-menu__search {
        display: none;
    }

    .right-menu__icons .menu-button {
        display: block;
    }

    .menu-button .open-menu {
        display: block;
    }

    .menu-button .close-menu {
        display: none;
    }

    .menu-button__close .open-menu {
        display: none;
    }

    .menu-button__close .close-menu {
        display: block;
    }

    .mobile-navigations {
        display: block;
        transform: translateX(-100%);
        transition: all 0.35s ease;
        background-color: #ffffff;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 66px;
        right: 0;
        left: 0;
        bottom: 0;
    }

    .mobile-navigations__show {
        transition: all 0.25s ease;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        height: 100vh;
        width: 100vw;
        padding: 26px 16px 160px;
        margin-right: 0;
        overflow: scroll;
        box-sizing: border-box;
    }

    .mobile-navigations__item {
        margin-bottom: 34px;
    }

    .mobile-navigations__item_link {
        display: flex;
    }

    .mobile-navigations__item_link .mobile-navigations__title::after {
        content: none;
    }

    .mobile-navigations__item_link svg {
        margin-right: 8px;
    }

    .mobile-navigations__item-show {
        /* margin-bottom: 18px; */
    }

    .mobile-navigations__title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
    }

    .mobile-navigations__title::after {
        content: "";
        min-width: 10px;
        min-height: 10px;
        background: url("../icons/arrow-down.svg") center / contain no-repeat;
        margin-left: 8px;
        margin-right: 8px;
        transition: transform 0.5s;
    }

    .mobile-navigations__title-show {}

    .mobile-navigations__title-show::after {
        transform: rotateX(180deg);
        transition: transform 0.5s;
    }

    .mobile-navigations__drop-container {
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-navigations__item.mobile-navigations__item-show .mobile-navigations__drop-body {
        transition: max-height 1s;
        max-height: 10000px;
    }

    .mobile-navigations__item .mobile-navigations__drop-body {
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        max-height: 0px;
    }

    .mobile-navigations__item .mobile-navigations__drop-body_item {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;

        font-weight: 400;
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 16px;
    }

    .mobile-navigations__item .mobile-navigations__drop-body_item a {
        transition: color 0.5s ease;
    }

    .mobile-navigations__item .mobile-navigations__drop-body_item:hover a {
        transition: color 0.5s ease;
        color: var(--orange-color);
    }

    .mobile-navigations__item .mobile-navigations__drop-body_item:first-child {
        margin-top: 20px;
    }

    .footer-container {
        padding: 0 16px;
        max-width: 768px;
        margin: 0 auto;
    }

    .footer-menu-top {
        /* display: none; */
    }

    .footer-menu-top__left {
        display: none;
    }

    .footer-menu-middle {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        margin-bottom: 15px;
        /* padding: 0; */
    }

    .footer-logo {
        margin-bottom: 24px;
    }

    .footer_contacts_icons_item {
        margin-bottom: 24px;
    }

    .footer_contacts_icons_item_location {
        order: 1;
    }

    .footer_contacts_icons_item_social {
        order: 2;
        display: flex;
    }

    .footer_contacts_icons_item_social .footer_contacts_icons_item__image svg {
        fill: var(--blue-color);
        stroke: none;
        order: 2;
        display: flex;
    }

    .footer_contacts_icons {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        /* margin: 0 auto; */
        width: auto;
        /* min-width: initial; */
    }

    .footer_contacts_icons_text {
        font-weight: 500;
        font-size: 15px;
        line-height: 18px;
    }

    .footer-menu-top__right {
        display: flex;
        flex-direction: column;
        width: auto;
        margin-left: 0;
    }

    .shop-link_big {
        width: fit-content;
        max-width: 350px;
        order: -1;
        margin-top: 0;
        padding: 10px 55px;
        margin-bottom: 50px;
    }

    .header__top-line__left-side__shop_link__text {
        font-weight: 400;
        font-size: 15px;
        line-height: 140%;
    }


    .footer-menu-bottom__public-info {
        margin: 10px 0;
        text-align: left;
    }

    .footer-menu-bottom__public-info-mobile {
        display: block;
        margin-bottom: 24px !important;
        font-weight: 400;
        font-size: 15px;
        line-height: 18px;

        color: #041229;
    }

    .footer-navigations {
        display: block;
        margin-bottom: 40px;
        background-color: #ffffff;
    }

    /* .footer-navigations__show {
    transition: all 0.25s ease;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    height: fit-content;
    width: 100%;
    
    margin-left: -16px;
    padding: 0 16px;
    margin-right: 0;
    } */
    .footer-navigations__item:not(:last-child) {
        margin-bottom: 25px;
    }

    /* .footer-navigations__item:last-child {
        margin-top: 40px;
    } */
    .footer-navigations__item .footer-navigations__drop-body_item {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .footer-navigations__item .footer-navigations__drop-body_item a {
        transition: color 0.5s ease;
    }

    .footer-navigations__item .footer-navigations__drop-body_item:hover a {
        transition: color 0.5s ease;
        color: var(--orange-color);
    }

    .footer-navigations__item .footer-menu-top__right_list-link {
        display: block;
        margin-top: 8px;

        font-weight: 400;
        font-size: 16px;
        line-height: 110%;

        color: #a8a9ad;
    }

    .footer-navigations__item_link {
        display: flex;
    }

    .footer-navigations__item_link .footer-navigations__title::after {
        content: none;
    }

    .footer-navigations__item_link svg {
        margin-right: 8px;
    }

    .footer-navigations__item-show {}

    .footer-navigations__title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;

        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .footer-navigations__title::after {
        content: "";
        min-width: 7px;
        min-height: 7px;
        background: url("../icons/arrow-down.svg") center / contain no-repeat;
        margin-left: 8px;
        margin-right: 8px;
        transition: transform 0.5s;
    }

    .footer-navigations__title-show {}

    .footer-navigations__title-show::after {
        transform: rotateX(180deg);
        transition: transform 0.5s;
    }

    .footer-navigations__drop-container {
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .footer-navigations__item.footer-navigations__item-show .footer-navigations__drop-body {
        transition: max-height 1s;
        max-height: 10000px;
    }

    .footer-navigations__item .footer-navigations__drop-body {
        transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        max-height: 0px;
    }

    .footer-navigations__item .footer-navigations__drop-body_item {
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 16px;
    }

    .footer-navigations__item .footer-navigations__drop-body_item:first-child {
        margin-top: 20px;
    }

    .footer__bottom-mobile {
        display: flex;
        margin-bottom: 30px;
    }

    .footer__bottom-list {
        margin-right: 30px;
    }

    .footer__bottom-list_item {
        margin-bottom: 7px;
    }

    .footer__bottom-list_link {
        font-weight: 400;
        font-size: 14px;
        line-height: 15px;
        color: #a8a9ad;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .footer {
        padding: 60px 16px 0;
        max-width: 768px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 46% 46%;
        grid-template-rows: 1fr;
        gap: 0 10%;
    }

    .footer-navigations.center1128,
    .footer-menu-top.center1128,
    .footer-menu-middle.center1128,
    .footer-menu-bottom.center1128,
    .footer-menu-bottom__copyright.center1128 {
        padding: 0;
    }

    .footer-navigations {
        grid-area: 1 / 1 / 2 / 2;
        margin-bottom: 0;
        margin: unset;
    }

    .footer-menu-middle {
        justify-content: flex-start;
        grid-area: 1 / 2 / 2 / 3;
        height: 100%;
        margin: unset;

    }

    .footer-menu-top {
        grid-area: 2 / 1 / 3 / 2;
        margin-top: 35px;
    }

    .footer-menu-bottom {
        grid-area: 2 / 2 / 3 / 3;
        margin-top: 35px !important;
    }

    .footer-menu-bottom__copyright {
        grid-area: 4 / 1 / 5 / 3;
    }

    .footer-menu-bottom__public-info {
        margin: 0;
    }

    .shop-link_big {
        padding: 10px 20px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        max-width: 480px;
        margin: 0 auto;
        padding-top: 30px;
        width: 100%;
    }

    .footer-menu-copyright {
        margin-top: 10px;
    }

    .footer-navigations.center1128,
    .footer-menu-top.center1128,
    .footer-menu-middle.center1128,
    .footer-menu-bottom.center1128,
    .footer-menu-bottom__copyright.center1128 {
        padding: 0;
    }
}



.page-title {
    margin-bottom: 40px;
}

@media screen and (max-width: 425px) {
    .page-title {
        margin-bottom: 16px;
    }
}

.pb-0 {
    padding-bottom: 0 !important;
}

.video-wrap {
    position: relative;
    display: block;
}

.video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: url('../images/svg/play.svg');
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
    z-index: 8;
}

.mt-40 {
    margin-top: 40px;
}

@media screen and (max-width: 765px) {
    .mt-40 {
        margin-top: 20px;
    }
}

.carousel__slide.has-thumb.has-video::before {
    content: '';
    z-index: 1;
    background-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 68px;
    margin-top: -34px;
    margin-left: -48px;
    cursor: pointer;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA2NCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxjaXJjbGUgY3g9IjMyIiBjeT0iMzIiIHI9IjMyIiBmaWxsPSJ3aGl0ZSIvPg0KPHBhdGggZD0iTTI3IDM5LjY0NzFWMjRMNDEgMzEuOTgzMkwyNyAzOS42NDcxWiIgZmlsbD0iIzAwOUZDMiIvPg0KPC9zdmc+DQo=');
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-pagination {
    position: relative;
    bottom: unset !important;
    margin-top: 10px;
}

.swiper-pagination-bullet {
    margin: 0 7px !important;
    background-color: #ECECEC;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--blue-color);
}

.top-menu__hidden-links {
    position: relative;
    margin-right: 10px;
}

.hidden-toggler {
    height: 100%;
    transition: 0.3s;
}

.top-menu__hidden-links ul {
    background: rgba(240, 241, 245, 1);
    padding: 32px 24px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 100%;
    transition: .3s;
    height: 0;
    overflow: hidden;
    padding-block: 0;
    opacity: 0;
    z-index: 9;
}

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

.top-menu__hidden-links ul li a {
    margin: 0;
}

.switcher-text {
    font-size: 12px;
    line-height: normal;
    opacity: 0.5;
    white-space: nowrap;
}

.top-menu__hidden-links .header__bottom-line__lang-switcher {
    width: fit-content;
}


.top-menu__hidden-links:hover .hidden-toggler {
    color: var(--orange-color);
}

.top-menu__hidden-links:hover ul {
    height: auto;
    padding-block: 32px;
    opacity: 1;
}

.top-menu-wrap {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .top-menu-wrap {
        display: none;
    }
}

@media screen and (max-width:1023px) {
    .top-menu__hidden-links {
        display: none;
    }
}

.pt-0 {
    padding-top: 0 !important;
}

.w-100 {
    width: 100% !important;
}

/*Маркированный список*/
.mark-list ul li,
ul.mark-list li,
.contacts-notification ul li,
.news-detail ul li,
.news-detail__content ul li {
    position: relative;
    padding-left: 22px;
}

.mark-list ol li,
.news-detail ol li,
.news-detail__content ol li {
    position: relative;
    padding-left: 27px;
}

.mark-list ul li:not(:last-child),
ul.mark-list li:not(:last-child),
.contacts-notification ul li:not(:last-child),
.news-detail ul li:not(:last-child),
.mark-list ol li:not(:last-child),
.contacts-notification ol li:not(:last-child),
.news-detail__content ul li:not(:last-child),
.news-detail__content ol li:not(:last-child) {
    margin-bottom: 16px;
}

.mark-list ul>li::before,
ul.mark-list>li::before,
.contacts-notification ul>li::before,
.news-detail ul>li::before,
.news-detail__content ul>li::before {
    content: '';
    background: #009FC2;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 6px;
}

.mark-list ol,
.news-detail__content ol {
    counter-reset: li;
}

.mark-list ol>li::before,
.news-detail__content ol>li::before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    color: #009FC2;
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    position: absolute;
    left: 0;
}

.mark-list ul li ol,
.news-detail__content ul li ol {
    counter-reset: ulCounter;
}

.mark-list ul li ol>li::before,
.news-detail__content ul li ol>li::before {
    counter-increment: ulCounter;
    content: counter(ulCounter) ". ";
}

.mark-list ol li.list-title::before,
.news-detail__content ol li.list-title::before {
    top: 4px;
}

.mark-list ol li ol,
.mark-list ol li ul,
.mark-list ul li ol,
.mark-list ul li ul,
.news-detail__content ol li ol,
.news-detail__content ol li ul,
.news-detail__content ul li ol,
.news-detail__content ul li ul {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mark-list ol li ol>li:not(:last-child),
.mark-list ol li ul>li:not(:last-child),
.mark-list ul li ul>li:not(:last-child),
ul.mark-list li ul>li:not(:last-child),
.news-detail__content ol li ol>li:not(:last-child),
.news-detail__content ol li ul>li:not(:last-child),
.news-detail__content ul li ul>li:not(:last-child),
.news-detail__content {
    margin-bottom: 6px;
}

.mark-list ol li p,
.mark-list ul li p,
.news-detail__content ol li p,
.news-detail__content ul li p {
    margin-top: 16px;
}

.mark-list ul li ul>li::before,
ul.mark-list li ul>li::before,
.contacts-notification ul li ul>li::before,
.news-detail ul li ul>li::before,
.mark-list ol li ul>li::before,
.news-detail__content ul li ul>li::before,
.news-detail__content ol li ul>li::before {
    height: 1px;
    width: 8px;
    border-radius: 0;
    margin-top: 3px;
}

.mark-list ol li ol>li,
.news-detail__content ol li ol>li {
    padding-left: 40px;
}

.mark-list ol li ol li ol>li,
.news-detail__content ol li ol li ol>li {
    padding-left: 50px;
}

.mark-list ol li ol li ol li ol>li,
.news-detail__content ol li ol li ol li ol>li {
    padding-left: 65px;
}

.mark-list a:hover,
.news-detail__content a:hover {
    border-color: var(--orange-color);
}

.mark-list br+ul,
.mark-list p+ul {
    margin-top: 16px;
}

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

    .mark-list ol li ol,
    .mark-list ul li ol,
    .mark-list ol li ul,
    .news-detail__content ol li ol,
    .news-detail__content ul li ol,
    .news-detail__content ol li ul {
        margin-left: -25px;
    }

    .mark-list ol li.list-title::before,
    .news-detail__content ol li.list-title::before {
        top: 2px;
    }
}

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

    .mark-list ol li ol li ol,
    .mark-list ol li ul li ol,
    .news-detail__content ol li ol li ol,
    .news-detail__content ol li ul li ol {
        margin-left: -30px;
    }
}


.justify-between {
    justify-content: space-between !important;
}

@media screen and (max-width:768px) {
    .mt-sm-40 {
        margin-top: 40px;
    }
}

.d-none {
    display: none !important;
}

.section-title {
    margin-bottom: 55px;
}

@media screen and (min-width:1025px) {
    .w-md-90 {
        width: 90%;
        margin-left: auto;
    }
}

@media screen and (min-width:501px) {
    .ml-sm-auto {
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .offset-lg-1 {
        margin-left: 8.33333333%;
    }
}

p+ul {
    margin-top: 20px;
}

.mt-0 {
    margin-top: 0 !important;
}

@media screen and (max-width:768px) {
    .no-br-mobile br {
        display: none;
    }
}

.pt-120 {
    padding-top: 120px !important;
}

@media screen and (max-width: 768px) {
    .pt-120 {
        padding-top: 90px !important;
    }
}

@media screen and (max-width: 425px) {
    .pt-120 {
        padding-top: 64px !important;
    }
}

.pb-120 {
    padding-bottom: 120px !important;
}

@media screen and (max-width: 768px) {
    .pb-120 {
        padding-bottom: 90px !important;
    }
}

@media screen and (max-width: 425px) {
    .pb-120 {
        padding-bottom: 64px !important;
    }
}

.event-card__img,
.news-card__img {
    position: relative;
    z-index: 1;
}

.event-card__img img {
    filter: grayscale(1);
    transition: 0.5s ease;
}

.event-card__img::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 4px);
    background: #0085FF4D;
    mix-blend-mode: screen;
    transition: 0.5s ease;
    opacity: 1;
}

.event-card__img:hover::after,
.news-card:hover .news-card__img::after {
    opacity: 0;
}

.event-card__img:hover img {
    filter: grayscale(0);
}

.news-card__labels {
    z-index: 8;
    flex-wrap: wrap;
    justify-content: flex-end;
}

a {
    transition: .3s;
}

a:not(.title_link, .back-link, .shop-link_big, .question-section__link, .news-button, .button, .pagination__page):hover {
    color: var(--orange-color);
}

.news-button {
    margin: 24px auto 0 auto;
    background-color: transparent;
    color: var(--orange-color);
}

.news-button:hover {
    color: #fff;
}

@media screen and (min-width:641px) {
    .news-button {
        display: none;
    }
}

.heroblock+section:not(.service-bg-section, .company-info_section, .reset-padding) {
    padding-top: 80px !important;
}

.tab-list__content section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.tab-list__content section:not(.background-grey):last-child {
    padding-bottom: 0 !important;
}

.tab-list__content .background-grey {
    margin-top: 60px;
}

.background-grey+section,
.action-block+section {
    padding-top: 120px !important;
}

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

    .background-grey+section,
    .action-block+section {
        padding-top: 90px !important;
    }

    .tab-list__content .background-grey {
        margin-top: 30px;
    }

    .heroblock+section:not(.service-bg-section) {
        padding-top: 60px !important;
    }
    .tab-list__content .background-grey {
        margin-top: 30px;
    }
}

@media screen and (max-width: 425px) {
    .tab-list__content section {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .background-grey+section,
    .action-block+section {
        padding-top: 64px !important;
    }
}

/**checkbox, radio */
.check-list:not(:last-child) {
    margin-bottom: 32px;
}

.check-item:not(:last-child) {
    margin-bottom: 18px;
}

.check-item input {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    position: absolute;
}

.check-item label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin-right: 0;
    line-height: 18px;
    user-select: none;
}

.check-item label::after,
.check-item label::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.check-item label::before {
    border: 1px solid #A8A9AD;
    transition: .3s;
}

.check-item label:hover::before {
    border-color: var(--orange-color);
}

.check-item input:disabled+label {
    pointer-events: none;
}

.check-item input:disabled+label::after,
.check-item input:disabled+label::before {
    filter: grayscale(1);
    opacity: .6;
}

/**checkbox */
.check-item input[type=checkbox]+label {
    padding-left: 32px;
}

.check-item input[type=checkbox]+label::after,
.check-item input[type=checkbox]+label::before {
    width: 16px;
    height: 16px;
}

.check-item input[type=checkbox]:checked+label::after {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDExIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDMuNzk0MTJMNC40NjE1NCA3LjVMMTAuNSAxIiBzdHJva2U9IiNGMjc0MzUiLz4KPC9zdmc+Cg==') center no-repeat;
}

/** radio */
.check-item input[type=radio]+label {
    padding-left: 37px;
}

.check-item input[type=radio]+label::before {
    width: 21px;
    height: 21px;
    border-radius: 50%;
}

.check-item input[type=radio]+label::after {
    width: 11px;
    height: 11px;
    left: 5px;
    top: 5px;
    border-radius: 50%;
}

.check-item input[type=radio]:checked+label::after {
    background-color: var(--orange-color);
}

.swiper-wrapper {
    height: fit-content;
}

.tab-list__content .background-grey {
    margin-top: 32px;
}

.exam_04 {
    margin-block: 20px;
}

.news-detail__content .table-responsive {
    margin-bottom: 20px;
}

@media screen and (max-width:576px) {
    .heroblock__content br {
        display: none;
    }
}


/*строка с сортировкой и поиском*/
.news-section__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

@media screen and (min-width:769px) {
    .news-section__row--right {
        width: 30%;
        margin-left: auto;
        margin-top: -75px;
    }
}

@media screen and (max-width:768px) {
    .news-section__row--right form {
        width: 100%;
    }
    .news-section__row form,
    .news-section__row .dropdown,
    .news-section__row .dropdown__btn,
    .news-section__row .news-search {
        width: 100%;
    }
}

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

    .news-section__row>*,
    .news-section__row .dropdown__btn,
    .search-box .main-form__input {
        width: 100% !important;
    }
}

/*поле поиска*/
.search-box {
    background: rgba(235, 235, 235, 0.45);
    border-radius: 63px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(235, 235, 235, 0.45);
}

.search-box input {
    border: none;
    background-color: #F6F6F6;
    padding: 15px 24px;
    border-radius: 30px;
}

.search-box input:focus,
.search-box input:focus-visible {
    outline: none;
    box-shadow: none;
    background-color: #F6F6F6;
}

.search-box input:not(.search-box__btn) {
    width: 100%;
}

.search-box__btn {
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMTY2NjcgMTUuODMzM0MxMi44NDg2IDE1LjgzMzMgMTUuODMzMyAxMi44NDg2IDE1LjgzMzMgOS4xNjY2N0MxNS44MzMzIDUuNDg0NzcgMTIuODQ4NiAyLjUgOS4xNjY2NyAyLjVDNS40ODQ3NyAyLjUgMi41IDUuNDg0NzcgMi41IDkuMTY2NjdDMi41IDEyLjg0ODYgNS40ODQ3NyAxNS44MzMzIDkuMTY2NjcgMTUuODMzM1oiIHN0cm9rZT0iIzA0MTIyOSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTcuNTAwNSAxNy41TDEzLjg3NTUgMTMuODc1IiBzdHJva2U9IiMwNDEyMjkiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==') center no-repeat;
    border: none;
    padding: 15px 24px;
    height: 100%;
    border-radius: 30px;
}

.search-box__btn:hover {
    background: url('data:image/svg+xml;base64,PCEtLSBSZXBsYWNlIHRoZSBjb250ZW50cyBvZiB0aGlzIGVkaXRvciB3aXRoIHlvdXIgU1ZHIGNvZGUgLS0+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiIGZpbGw9Im5vbmUiPgo8cGF0aCBkPSJNOS4xNjY2NyAxNS44MzMzQzEyLjg0ODYgMTUuODMzMyAxNS44MzMzIDEyLjg0ODYgMTUuODMzMyA5LjE2NjY3QzE1LjgzMzMgNS40ODQ3NyAxMi44NDg2IDIuNSA5LjE2NjY3IDIuNUM1LjQ4NDc3IDIuNSAyLjUgNS40ODQ3NyAyLjUgOS4xNjY2N0MyLjUgMTIuODQ4NiA1LjQ4NDc3IDE1LjgzMzMgOS4xNjY2NyAxNS44MzMzWiIgc3Ryb2tlPSIjRjM3NzM2RkYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE3LjUwMDUgMTcuNUwxMy44NzU1IDEzLjg3NSIgc3Ryb2tlPSIjRjM3NzM2RkYiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+') center no-repeat;
}

.form-error .search-box {
    border-color: var(--error-color);
}

.other-pages {
    height: fit-content;
}

.news-detail__content table {
    margin-bottom: 20px;
}

.news-detail__content table td,
.news-detail__content table th {
    padding: 15px;
    text-align: left;
    line-height: 145%;
    /*min-width: 200px;*/
}

/* .news-detail__content table td:not(:last-child),
.news-detail__content table th:not(:last-child) {
    padding-right: 60px;
}

.news-detail__content table td:not(:first-child),
.news-detail__content table th:not(:first-child) {
    padding-left: 60px;
} */

.news-detail__content table td div {
    text-align: left;
}

.news-detail__content table tr:first-child {
    background: rgba(235, 235, 235, 0.45);
    font-weight: 600;
}

.news-detail__content table tr {
    border-bottom: 1px solid var(--light-grey-color);
}

.news-detail__content table tr:not(:first-child) td {
    vertical-align: baseline;
}

.table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #009FC2 rgba(168, 169, 173, .7);
    transition: .3s;
    margin-bottom: 20px;
}

.table-responsive table {
    margin-bottom: 0;
    border-bottom: 1px solid var(--light-grey-color);
    table-layout: fixed;
    display: block;
    width: max-content;
    max-width: 100%;
}

.table-responsive table tr:last-child {
    border-bottom: 0;
}

.table-responsive::-webkit-scrollbar {
    height: 5px;
    transition: .3s;
    cursor: grab;
}

.table-responsive::-webkit-scrollbar-track {
    background: rgba(168, 169, 173, .7);
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #009FC2;
}

.table-responsive table tr:not(:first-child) td[rowspan] {
    text-align: center !important;
    vertical-align: middle !important;
    border-left: 1px solid var(--light-grey-color);
}

.table-responsive table td[colspan] {
    text-align: center !important;
}

.table-responsive tr:first-child+.sub-row {
    background: rgba(235, 235, 235, 0.45);
}

.table-responsive tr,
.table-responsive th {
    position: relative;
}

.table-responsive .sticky td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    width: 270px;
    z-index: 9;
}

.table-responsive tr.sticky:first-child td:first-child {
    background: #f6f6f6;
}

.table-responsive.movied .sticky td:first-child::after {
    content: '';
    height: calc(100% + 1px);
    width: 8px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 269px;
    transition: .3s;
}

.table-responsive.movied .sticky td:first-child {
    border: none !important;
}

.table-responsive.movied td:first-child::after {
    box-shadow: inset 6px 0px 4px -2px rgb(0 0 0 / 30%);
    -webkit-box-shadow: inset 6px 0px 4px -2px rgb(0 0 0 / 30%);
}

.table-responsive.moveable {
    cursor: grab;
    user-select: none;
}

.table-responsive.moveable table {
    border-bottom: none;
}

.table-responsive.moving {
    cursor: grabbing;
}

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

    .table-responsive table td,
    .table-responsive table th {
        min-width: 120px;
        font-size: 14px;
    }

    .table-responsive .sticky td:first-child {
        width: 120px;
    }

    .table-responsive.movied .sticky td:first-child::after {
        left: 119px;
    }

    .table-responsive table tr:first-child br {
        display: none;
    }

    /* .table-responsive table td:not(:last-child),
    .table-responsivetable th:not(:last-child) {
        padding-right: 30px;
    }

    .table-responsive table td:not(:first-child),
    .table-responsive table th:not(:first-child) {
        padding-left: 30px;
    } */
}

@media screen and (max-width:425px) {
    .table-responsive table {
        border-bottom: none;
    }
}

.page-section.pb-0+section {
    padding-top: 120px;
}

.page-section.pb-0+section .news-section__link {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .page-section.pb-0+section {
        padding-top: 90px;
    }
}

@media screen and (max-width: 425px) {
    .page-section.pb-0+section {
        padding-top: 64px;
    }
}


.heroblock__content.mark-list ul li:not(:last-child),
.managment-card__text.mark-list ul li:not(:last-child) {
    margin-bottom: 8px;
}

@media screen and (max-width:559px) {
    .managment-card--horizontal .managment-card__text.mark-list ul li {
        width: fit-content;
        margin-inline: auto;
    }
}

section.mark-list a:not(.product-card),
.news-detail a:not(.button),
.news-detail__content a {
    border-color: var(--dark-blue-color);
}

section.mark-list a:hover,
.news-detail a:hover,
.news-detail__content a:hover {
    border-color: var(--orange-color);
}

.news-detail-banner__list {
    margin-bottom: 15px;
}

.document__download {
    border: none;
}


/*404*/
.error-page {
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/404-bg.png');
}

.error-page__text p {
    font-size: 15px;
}

.error-page__content a.button {
    padding-inline: 55px;
}

@media screen and (min-width:769px) {
    .error-page__content {
        padding-bottom: 100px;
        padding-top: 50px;
    }

    .error-page__info {
        margin-top: 40px;
        display: flex;
        align-items: center;
        width: 43%;
        margin-left: 16%;
        gap: 22px;
    }

    .error-page {
        height: 90vh;
        max-height: 800px;
    }

    .error-page__info {
        min-width: 560px;
    }
}

@media screen and (max-width:768px) {
    .error-page {
        height: fit-content;
    }

    .error-page__content {
        padding-bottom: 50px;
        padding-top: 100px;
    }

    .error-page__info {
        margin-top: 16px;
        max-width: 560px;

    }

    .error-page__text {
        margin-bottom: 35px;
    }
}

@media screen and (max-width:576px) {
    .error-page {
        background-image: url('../images/404-bg-mobile.png');
    }
}

.document {
    border: none;
}

.corp-form__msg {
    font-size: 12px;
    margin-top: 8px;
}

.corp-form__msg+.checkbox-field {
    margin-top: 8px;
}

p+p.corp-form__msg {
    margin-top: 8px;
}

.js-notification {
    transition: .3s;
}

.js-notification:hover {
    color: var(--orange-color);
}

.managment-section+.page-section {
    padding-top: 0;
}

.slick-table__detail {
    display: flex;
    flex-direction: column-reverse;
}

.slick-table__detail .slider-head--end {
    margin-top: 20px;
}

.slick-table__item.swiper-slide {
    height: unset !important;
}

.slick-table__item img {
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 275px;
    max-height: 275px;
    width: 100%;
}

.slick-table__detail {
    margin-bottom: 30px;
}

a[data-fancybox],
.back-link {
    border: none;
}

.video-gallery {
    margin-top: 20px;
}

.video-gallery .slider-head--end {
    margin-top: 0;
    margin-bottom: 15px;
}

.video-gallery .swiper-slide iframe {
    width: 100%;
}

/*цитата*/
.quote-block {
    background: rgba(240, 241, 245, 0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100vw;
}

@media (max-width:1200px) {
    .quote-block {
        margin-left: -12px;
        width: calc(100vw - 12px);
    }
}

.quote-block__content {
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    display: flex;
    gap: 4%;
}

.quote-block__content::before {
    content: '';
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNjIiIHZpZXdCb3g9IjAgMCA3MiA2MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDE1LjVWMzFIMTAuMjg1NkgyMC41NzEyTDIwLjQ4MDggMzIuNTIxN0MyMC4xOTE5IDM3LjM4NzQgMTguMDk3NCA0MS45NTY5IDE0LjQ5MDkgNDUuNTg5NUMxMC44ODA5IDQ5LjIyNTkgNi4zNzQxNSA1MS4zMTg5IDEuNTExNDkgNTEuNjE3MUwwIDUxLjcxVjU2Ljg1NVY2MkgxLjE2MzY0QzEuODAzNjcgNjIgMi44NjM1NCA2MS45MzQ2IDMuNTE4NzYgNjEuODU0OEMxNy42NjEgNjAuMTMxNSAyOC42OTMyIDQ5LjE3MTkgMzAuNTg4NiAzNC45NjM1QzMwLjc0OTYgMzMuNzU2MyAzMC43ODc0IDMwLjMzMzcgMzAuNzg5NSAxNi43Mzg2TDMwLjc5MjMgMEgxNS4zOTYySDBWMTUuNVpNNDEuMTk3IDE1LjVWMzFINTEuNDc5M0g2MS43NjE1TDYxLjY2NDEgMzIuMzA5NEM2MS4wMjg1IDQwLjg1MjEgNTUuNTUyIDQ3Ljk2MDUgNDcuNTE4NiA1MC42NzAxQzQ1Ljk3NzQgNTEuMTg5OSA0My4zODM4IDUxLjY2NjcgNDIuMDk3IDUxLjY2NjdINDEuMTk3VjU2LjgzMzNWNjJINDIuMzE0N0M0Mi45Mjk0IDYyIDQ0LjE3ODkgNjEuOTAyNSA0NS4wOTE2IDYxLjc4MzFDNTEuOTU3MyA2MC44ODU3IDU4LjAwMjMgNTcuODY5NSA2Mi45MjQ3IDUyLjg4NUM2Ny42Nzg3IDQ4LjA3MTEgNzAuNTAwOSA0Mi41MDYxIDcxLjY1NTggMzUuNjY4NUM3MS44ODQ4IDM0LjMxMzMgNzEuOTEwNCAzMi43MDYgNzEuOTUzMiAxNy4wOTI1TDcyIDBINTYuNTk4NUg0MS4xOTdWMTUuNVoiIGZpbGw9IiMwNDEyMjkiLz4KPC9zdmc+Cg==);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    max-width: 72px;
    min-width: 32px;
    width: 6%;
    height: 62px;
    display: block;
    flex: 0 0 auto;
}

.quote-block__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.quote-block::before,
.cricle-right::before,
.cricle-right::after {
    content: '';
    position: absolute;
    background: #009FC2;
    filter: blur(119px);
    border-radius: 50%;
    z-index: -1;
}

.quote-block::before {
    width: 202px;
    height: 202px;
    bottom: 0;
}

.cricle-right::before {
    width: 744px;
    height: 744px;
    left: 70%;
    top: -30%;
    opacity: 0.4;
}

.cricle-right::after {
    width: 472px;
    height: 472px;
    left: 80%;
    top: -40px;
}

.quote-block__img img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media screen and (min-width:769px) {
    .quote-block__text {
        /* font-size: 19px; */
        max-width: 54%;
    }

    .quote-block__img {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        max-width: 30%;
        display: flex;
        align-items: center;
        padding-right: 20px;
    }

    .quote-block__img img {
        max-height: 400px;
    }
}

@media screen and (max-width:768px) {
    .quote-block__content {
        padding-block: 48px;
    }

    .quote-block__img {
        max-width: 500px;
        height: auto;
        margin-inline: auto;
    }

    .quote-block__text {
        font-size: 15px;
        line-height: 140%;
    }

    .quote-block::before {
        bottom: 45%;
    }

    .cricle-right::before {
        left: 50%;
    }

    .cricle-right::after {
        left: 90%;
    }
}

.news-detail__content .quote-block {
    margin-bottom: 30px;
}

/*детальные проекты*/
.items-project {
    margin: 25px 0;
    display: inline-block;
    width: 100%;
}

.items-project .footer {
    padding: 0;
    display: block !important;
    max-width: unset !important;
    margin-bottom: 20px;
}

.items-project .footer p {
    font-size: 13px;
    color: #7a7a7a;
    line-height: 130%;
}

.items-project .footer a {
    border-color: #7a7a7a;
    color: #7a7a7a;
}

.items-project .footer a:hover {
    border-color: var(--orange-color);
    color: var(--orange-color);
}

.news-detail__content .items-project img {
    margin-top: 0;
    margin-bottom: 10px;
    height: auto;
}

@media (min-width: 768px) {
    .items-project .col-sm-5 {
        width: 41.66666667%;
    }

    .items-project .col-sm-7 {
        width: 58.33333333%;
    }

    .items-project .col-sm-2 {
        width: 16.66666667%;
    }

    .items-project .col-sm-3 {
        width: 25%;
    }

    .items-project .col-sm-8 {
        width: 66.66666667%;
    }

    .items-project .col-sm-6 {
        width: 50%;
    }

    .items-project .col-sm-9 {
        width: 75%;
    }

    .items-project .col-sm-4 {
        width: 33.33333333%;
    }

    .news-detail__content .items-project .col-sm-5 {
        float: left;
    }
}

.news-detail__content .table-responsive--auto td {
    min-width: 100px;
    padding: 8px !important;
}

.news-detail__content .table-responsive--auto td img {
    margin-top: 0;
    margin-bottom: 0;
}

.news-detail__content .table-responsive--auto table {
    border: none;
}

.checkbox-field:hover .text-field__fakeInput {
    border-color: var(--orange-color);
}

.checkbox-org-field:hover .text-field__fakeInput {
    border-color: var(--orange-color);
}

.checkbox-org-field {
    height: calc(2.25rem + 2px);
    align-items: center;
}

.checkbox-org-field__label {
    font-weight: 500;
}

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

.page-section-md+.directions-section,
.page-section+.directions-section {
    padding-top: 0;
}

@media screen and (max-width:425px) {
    .directions-section {
        padding-top: 40px;
    }

    .items-project--doc a {
        border: none;
    }

    .items-project--doc .row {
        align-items: center;
    }
}

@media screen and (max-width:767px) {
    .items-project--doc .row {
        flex-wrap: nowrap;
        width: 85%;
    }

    .items-project--doc .row>* {
        width: fit-content;
    }

    .items-project--doc .row img {
        width: 60px;
    }
}

.no-border {
    border: none;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

.news-detail__content p+iframe {
    margin-top: 30px;
}

.news-detail__content a+h3 {
    margin-top: 20px;
}

.items-project table td,
.items-project table th {
    min-width: unset;
    padding: 15px !important;
}

.news-detail__content table[cellspacing="1"] td {
    padding: 15px !important;
    min-width: unset !important;
}

.news-detail__content table img {
    margin-top: 0;
    margin-bottom: 0;
}

.table-middle td {
    vertical-align: middle !important;
}

.direction-card__content.mark-list ul li:not(:last-child) {
    margin-bottom: 10px;
}

.page-section:not(.pb-0)+.question-section {
    padding-top: 0;
}

@media screen and (max-width:640px) {
    .slider-head {
        /* flex-wrap: wrap; */
        gap: 30px;
        align-items: baseline;
    }

    .slider-head .slider-head__nav {
        display: none;
    }

    .slider-head h2 {
        margin-bottom: 15px;
    }

    .news-card__labels {
        gap: 10px;
    }

    .swiper-button-pagination_general:first-child {
        margin-right: 0;
    }
}

.main-filter:not(.main-filter--md) .main-filter__item .dropdown__item label::before {
    top: 2px;
}

.main-filter:not(.main-filter--md) .main-filter__item .dropdown__item label::after {
    bottom: unset;
    top: 5px;
}

@media screen and (max-width: 1024px) {
    .main-filter:not(.main-filter--md) .main-filter__item .dropdown__item:hover label {
        background: none;
    }

    .main-filter .dropdown__wrap {
        width: 100%;
    }
}

.badge {
    min-width: 17px;
    display: inline-block;
    text-align: center;
}

.corp-form__request_item-box+.corp-form__request_item-box {
    margin-top: 1rem;
}

.info-slider .swiper-slide {
    height: unset !important;
}

.icon-arrow {
    position: relative;
    transition: .3s;
}

.icon-arrow::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxMyAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNjQ2NDQ3IDEyLjMwMzJDMC40NTExODQgMTIuNDk4NCAwLjQ1MTE4NCAxMi44MTUgMC42NDY0NDcgMTMuMDEwM0MwLjg0MTcwOSAxMy4yMDU2IDEuMTU4MjkgMTMuMjA1NiAxLjM1MzU1IDEzLjAxMDNMMC42NDY0NDcgMTIuMzAzMlpNMTIuODEzNyAxLjM0MzAzQzEyLjgxMzcgMS4wNjY4OSAxMi41ODk5IDAuODQzMDMgMTIuMzEzNyAwLjg0MzAyOUw3LjgxMzcxIDAuODQzMDI5QzcuNTM3NTcgMC44NDMwMjkgNy4zMTM3MSAxLjA2Njg5IDcuMzEzNzEgMS4zNDMwM0M3LjMxMzcxIDEuNjE5MTcgNy41Mzc1NyAxLjg0MzAzIDcuODEzNzEgMS44NDMwM0wxMS44MTM3IDEuODQzMDNMMTEuODEzNyA1Ljg0MzAzQzExLjgxMzcgNi4xMTkxNyAxMi4wMzc2IDYuMzQzMDMgMTIuMzEzNyA2LjM0MzAzQzEyLjU4OTkgNi4zNDMwMyAxMi44MTM3IDYuMTE5MTcgMTIuODEzNyA1Ljg0MzAzTDEyLjgxMzcgMS4zNDMwM1pNMS4zNTM1NSAxMy4wMTAzTDEyLjY2NzMgMS42OTY1OEwxMS45NjAyIDAuOTg5NDc2TDAuNjQ2NDQ3IDEyLjMwMzJMMS4zNTM1NSAxMy4wMTAzWiIgZmlsbD0iIzA0MTIyOSIvPgo8L3N2Zz4K);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
}

.sevice-card__title .icon-arrow {
    margin-left: 3px;
}

.sevice-card__title {
    position: relative;
    width: fit-content;
    padding-right: 20px;
}

.sevice-card:hover .icon-arrow {
    filter: invert(54%) sepia(69%) saturate(2379%) hue-rotate(341deg) brightness(105%) contrast(91%);
}

.news-detail-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -40vw;
    margin-right: -50vw;
    padding: 40px 0;
    margin-bottom: 80px;
    margin-top: 40px;
    background-color: #f4fbfd;
}

.news-detail-banner__container {
    display: flex;
    gap: 32px;
}

.news-detail-banner__text {
    width: 50%;
}

.news-detail-banner__list h3 {
    margin-bottom: 24px;
}

.news-detail-banner__list_title {
    margin-bottom: 16px;

    font-weight: 400;
    font-size: 16px;
    line-height: 145%;

    color: #041229;
}

.news-detail-banner__list_item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;

    font-weight: 400;
    font-size: 16px;
    line-height: 145%;

    color: #041229;
}

.news-detail-banner__list_item:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #009fc2;
    border-radius: 50%;
}

.news-detail-banner__img img {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .news-detail-banner__container {
        flex-direction: column;
    }

    .news-detail-banner__text {
        width: 100%;
    }
}

@media (max-width:1375px) {
    .news-detail-banner {
        margin-left: -39vw;
    }
}

@media (max-width:1247px) {
    .news-detail-banner {
        margin-left: calc(-38vw + 8px);
    }
}

@media (max-width:1024px) {
    .news-detail-banner {
        margin-left: calc(-50vw + 8px);
    }
}

.news-detail-persons__container {
    margin-bottom: 80px;
}

.news-detail-persons__container h3 {
    margin-bottom: 40px;
}

.news-detail-persons__items {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 11px;
}

.news-detail-persons__item {
    display: flex;
    flex-direction: column;
    max-width: 206px;
}

.news-detail-persons__img {
    margin-bottom: 16px;
}

.news-detail-persons__item-title {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
}

.news-detail-persons__item-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #676767;
}

@media (max-width:1023px) {
    .news-detail-banner__list_item {
        margin-bottom: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 140%;
    }

    .news-detail-banner__container {
        flex-direction: column;
    }

    .news-detail-banner__text {
        width: 100%;
    }

    .news-detail-persons__items {
        justify-content: center;
    }
}

.no-after::after {
    display: none;
}

.carousel__slide {
    overflow-y: hidden;
}

.main-carousel .carousel__dots {
    gap: 8px;
    align-items: center;
    top: calc(100% + 24px);
    position: relative;
    margin-top: 20px;
}

.main-carousel .carousel__dots .carousel__dot {
    width: 100%;
    height: unset;
}

.main-carousel .carousel__dots .carousel__dot::after {
    background-color: #ECECEC;
    opacity: 1;
    border-radius: 0;
    height: 1px;
    width: 100%;
}

.main-carousel .carousel__dots .carousel__dot.is-selected::after {
    background-color: var(--blue-color);
    height: 2px;
}

@media screen and (min-width:1025px) {
    .main-carousel .carousel__dots {
        display: none;
    }
}

.mobile-slider__nav {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0px 4px 28px rgb(0 0 0 / 8%);
    height: 45px;
    width: 45px;
    line-height: 0;
    z-index: 9;
    position: absolute;
    top: 33%;
    z-index: 9;
    left: 5px;
}

.mobile-slider__nav.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}

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

.mobile-slider__nav.mobile-slider__next {
    right: 5px;
    left: auto;
}

.mobile-slider__nav.mobile-slider__next svg {
    transform: scale(-1);
}

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

@media (max-width:425px) {
    .info-slider .mobile-slider__nav {
        top: 24%
    }
}

.managment-slider .mobile-slider__nav {
    top: 160px;
}

.sales-slider .mobile-slider__nav,
.products-slider .mobile-slider__nav {
    top: 35%;
}

.sales-slider .swiper-slide {
    height: unset !important;
}

.testimonials-slider .mobile-slider__nav {
    top: 40%;
}

.text-slider .mobile-slider__nav,
.services-slider .mobile-slider__nav,
.brands-slider .mobile-slider__nav,
.slick-table__detail .mobile-slider__nav {
    top: 50%;
    transform: translateY(-50%);
}

.other-events-slider .mobile-slider__nav {
    top: 90px;
}

@media (max-width:640px) {
    .info-slider .news-card--file {
        padding-inline: 50px;
    }
}



@media screen and (min-width:1025px) {
    .news-card--small .news-card__img img {
        height: 230px;
    }

    .news-card--small .news-card__img::after {
        height: 230px;
    }
}

@media screen and (max-width:1024px) {
    .news-card--small .news-card__img img {
        height: 250px;
    }

    .news-card--small .news-card__img::after {
        height: 250px;
    }
}

@media screen and (max-width:425px) {
    .news-card--small .news-card__img img {
        height: 224px;
    }

    .news-card--small .news-card__img::after {
        height: 224px;
    }
}

@media (max-width:600px) {
    .direction-card__title {
        width: 95%;
    }
}

.main-carousel .carousel__slide,
.thumb-carousel .carousel__slide {
    overflow-y: hidden;
}

.main-carousel .carousel__dots {
    gap: 8px;
    align-items: center;
    top: calc(100% + 24px);
    position: relative;
    margin-top: 20px;
}

.main-carousel .carousel__dots .carousel__dot {
    width: 100%;
    height: unset;
}

.main-carousel .carousel__dots .carousel__dot::after {
    background-color: #ECECEC;
    opacity: 1;
    border-radius: 0;
    height: 1px;
    width: 100%;
}

.main-carousel .carousel__dots .carousel__dot.is-selected::after {
    background-color: var(--blue-color);
    height: 2px;
}

@media screen and (min-width:1025px) {
    .main-carousel .carousel__dots {
        display: none;
    }
}

.back-link__icon {
    line-height: 0;
}

@media (max-width:375px) {
    .back-link:hover::before {
        max-width: 334px;
    }
}

@media screen and (max-width: 1024px) {
    .products-section__grid {
        grid-template-columns: 31% 31% 31%;
    }
}

@media (max-width: 700px) {
    .products-section__grid {
        grid-template-columns: 49% 49%;
        gap: 10px;
    }
}

.product-card--populars .product-card__title {
    word-break: break-word;
}

.news-detail__content ul {
    margin-bottom: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

.news-card:not(.news-card--small) .news-card__img::after {
    height: 100%;
}

.news-card--with-links .news-card__img {
    margin-bottom: 0;
}

.news-card--with-links .news-card__content {
    margin-top: 24px;
    display: block;
}

.products-grid .product-card {
    height: 100%;
}

.general-link-pdf {
    border: none;
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.general-link-pdf__content {
    overflow: hidden;
}
.general-link-pdf__content p {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #a8a9ad;
}

.general-link-pdf__name {
    font-size: 14px;
    color: #041229;
    transition: color .3s ease;
    text-overflow: ellipsis;
    overflow: hidden;
}

.general-link-pdf:hover .general-link-pdf__name {
    color: #f37736;
}

.general-link-pdf__size {
    font-size: 10px;
    display: inline-block;
    margin-top: 8px;
    color: #858585;
}

.general-link-pdf__icon-container {
    flex: 0 0 21px;
    min-height: 28px;
    position: relative;
}

.general-link-pdf__icon-container+.general-link-pdf__content {
    flex: 0 0 calc(100% - 21px - 16px);
}

.general-link-pdf__icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 32px;
    transition: all .3s ease;
}

.general-link-pdf__icon-pdf {
    /*background-image: url("data:image/svg+xml,%3Csvg width='21' height='27' viewBox='0 0 21 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.999999C0.5 0.723857 0.723857 0.5 1 0.5H14.5858C14.7184 0.5 14.8456 0.552679 14.9393 0.646447L20.3536 6.06066C20.4473 6.15443 20.5 6.2816 20.5 6.41421V26C20.5 26.2761 20.2761 26.5 20 26.5H1C0.723858 26.5 0.5 26.2761 0.5 26V0.999999Z' fill='white' stroke='%23041229' stroke-linejoin='round'/%3E%3Cpath d='M14.5 1V6.5H20' stroke='%23041229' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.25502 11.8C7.71102 11.8 8.06702 11.926 8.32302 12.178C8.57902 12.426 8.70702 12.748 8.70702 13.144C8.70702 13.544 8.57702 13.872 8.31702 14.128C8.06102 14.384 7.70702 14.512 7.25502 14.512H6.06702V16H5.56902V11.8H7.25502ZM7.23702 14.038C7.55302 14.038 7.79302 13.954 7.95702 13.786C8.12102 13.618 8.20302 13.406 8.20302 13.15C8.20302 12.894 8.12102 12.684 7.95702 12.52C7.79302 12.356 7.55302 12.274 7.23702 12.274H6.06702V14.038H7.23702ZM11.0047 11.8C11.6207 11.8 12.1327 11.998 12.5407 12.394C12.9527 12.79 13.1587 13.292 13.1587 13.9C13.1587 14.504 12.9527 15.006 12.5407 15.406C12.1287 15.802 11.6167 16 11.0047 16H9.58269V11.8H11.0047ZM11.0107 15.526C11.4827 15.526 11.8747 15.374 12.1867 15.07C12.4987 14.762 12.6567 14.372 12.6607 13.9C12.6607 13.428 12.5027 13.04 12.1867 12.736C11.8747 12.428 11.4827 12.274 11.0107 12.274H10.0807V15.526H11.0107ZM16.694 12.274H14.528V13.636H16.55V14.11H14.528V16H14.03V11.8H16.694V12.274Z' fill='%23041229'/%3E%3C/svg%3E");*/
    background-image: url("/local/templates/.default/images/svg/pdf2.svg");
    background-repeat: no-repeat;
}

.general-link-jpg__icon-jpg {
    background-image: url("/local/templates/.default/images/svg/jpg2.svg");
    background-repeat: no-repeat;
}

.general-link-png__icon-png {
    background-image: url("/local/templates/.default/images/svg/png2.svg");
    background-repeat: no-repeat;
}

.general-link-doc__icon-doc {
    background-image: url("/local/templates/.default/images/svg/doc2.svg");
    background-repeat: no-repeat;
}

.corp-form__request_item {
    margin-bottom: 1rem;
}

.corp-form__request_item .dropdown.dropdown--expand {
    width: unset;
}

.corp-form__request_item .dropdown__btn {
    min-height: calc(3rem + 5px);
    width: 100%;
}

.corp-form__request_dropdown-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 1.6rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: #A8A9AD;
    line-height: 120%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    margin-bottom: 0.25rem;
}

.reset-padding {
    padding: initial;
}

[data-fancybox] {
    cursor: grab;
}

.splLink span {
    transition: .3s;
}

.splLink:hover span {
    color: var(--orange-color) !important;
}

.splCont {
    display: block !important;
    padding: 5px 5px;
    border: 1px solid #c4cacc;
    border-radius: 5px;
    width: 85%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    box-sizing: border-box;
}

.splCont.show {
    max-height: 3000px;
    opacity: 1;
    visibility: visible;
}

.splCont li {
    padding-top: 0 !important;
}

.splCont ul {
    margin-bottom: 30px;
}

@media (max-width:767px) {
    .splCont {
        width: 100% !important;
    }
}

.org-fields-wrapper {
    margin: 8px 0 24px;
}