.no-wrap {
    white-space: nowrap;
}

.bggray {
    background: #F8F8F8;
}

.section-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #151515;
}

@media screen and (max-width: 992px) {
    .section-title {
        font-size: 34px;
        line-height: 36px;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 32px;
        line-height: 34px;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 28px;
        line-height: 30px;
    }
}


/* button */

.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    outline: none !important;
    padding: 10px 43px;
    background: var(--main-color);
    border-radius: 7px;
    text-decoration: none;
    /* ff */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.button:hover {
    background: #fff;
    text-decoration: none;
    color: var(--main-color);
}

.button-red {
    border: 1px solid #BE2529;
    background: #BE2529;
    border-radius: 4px;
}

.button-red:hover {
    background: #fff;
    text-decoration: none;
    color: #BE2529;
}


/* burger */

.burger {
    display: none;
    height: 17px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    z-index: 10;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 4px;
    background: #151515;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.burger span:nth-child(2) {
    width: 16px;
}

.burger.active span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.burger.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    -ms-transform: rotate(-45deg) translate(-5px, 6px);
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-3px, -4px);
    -ms-transform: rotate(45deg) translate(-3px, -4px);
    transform: rotate(45deg) translate(-3px, -4px);
}

.burger-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 100;
    border-right: 1px solid lightgray;
}

.burger-menu.active {
    left: 0;
}

.burger-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: -webkit-calc(100vh - 124px);
    height: calc(100vh - 124px);
    list-style: none;
    overflow: auto;
}

.burger-menu_header {
    padding: 10px 0;
    text-align: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    color: #525050;
    border-bottom: 1px solid lightgray;
}

.burger-menu__item {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #151515;
    border-bottom: 1px solid lightgray;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    cursor: pointer;
}

.burger-menu__item:hover {
    color: var(--main-color);
    text-decoration: none;
}

@media screen and (max-width: 576px) {
    .burger-menu {
        width: 70%;
    }
}


/* header */

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-block-start: 12px;
    background: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(168, 168, 168, 0.15);
    z-index: 10;
}

.header>.container {
    padding-block-end: 12px;
}

.header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.header-logo img {
    width: 189px;
    height: 85px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.header-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: end;
    justify-content: end;
    -webkit-column-gap: 44px;
    -moz-column-gap: 44px;
    column-gap: 44px;
}

.header-up_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
}

.header-up_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 9px;
    -moz-column-gap: 9px;
    column-gap: 9px;
}

.header-up_item a,
.header__city {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #525252;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.header-up_item a:hover,
.header__city:hover {
    color: var(--main-color);
    text-decoration: none;
}

.header-up_link {
    position: relative;
}

.header-up_link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -23px;
    width: 1px;
    height: 100%;
    background: #DADADA;
}

.header-up_link svg {
    margin-bottom: 4px;
}

.header-down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 38px;
    -moz-column-gap: 38px;
    column-gap: 38px;
}

.menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    list-style-type: none;
}

.menu_item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: uppercase;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.menu_item:hover {
    color: var(--main-color);
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .header-logo img {
        width: 130px;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .header__wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .menu_item {
        font-size: 13px;
        line-height: 14px;
    }
    .header-down {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .header-button {
        padding: 10px 20px;
        font-size: 13px;
        line-height: 14px;
    }
}

@media screen and (max-width: 992px) {
    .menu {
        display: none;
    }
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .header-down {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: end;
        justify-content: end;
    }
    .button {
        padding: 9px 20px;
        font-size: 12px;
        line-height: 10px;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding-block-start: 8px;
    }
    .header>.container {
        padding-block-end: 8px;
    }
    .header__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        -webkit-justify-content: end;
        justify-content: end;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
    .header-up_block {
        display: none;
    }
    .header-logo img {
        width: 80px;
    }
    .header-up_link:before {
        content: none;
    }
}

@media screen and (max-width: 576px) {
    .header-button {
        display: none;
    }
    .burger-menu_header {
        font-size: 16px;
        line-height: 16px;
    }
    .header-up_link svg {
        margin-bottom: 2px;
    }
}


/* Страница контактов */

.contacts__content {
    margin-top: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-column-gap: 27px;
    -moz-column-gap: 27px;
    column-gap: 27px;
}

.contacts_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    row-gap: 10px;
    padding: 34px 30px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 10px;
}

.contacts_block-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.contacts_block-title span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #151515;
}

.contacts_block-item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.contacts_block-item.address {
    max-width: 321px;
}

a.contacts_block-item:hover {
    color: #BE2529;
    text-decoration: none;
}

.contacts__map {
    margin-top: 35px;
    /* max-width: 500px; */
    max-height: 300px;
    height: 300px;
}

.contacts__map iframe {
    height: 100%;
}

.contacts__map iframe {
    border: none !important;
    outline: none !important;
}

@media screen and (max-width: 1200px) {
    .contacts_block {
        padding: 20px;
    }
    .contacts_block-item {
        font-size: 15px;
        line-height: 20px;
    }
    .contacts__content {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media screen and (max-width: 992px) {
    .contacts__content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template: auto / repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .contacts_block-item.address {
        max-width: 287px;
    }
}

@media screen and (max-width: 540px) {
    .contacts_block-item.address {
        max-width: none;
    }
    .contacts__content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template: auto / repeat(2, 1fr);
        gap: 10px;
    }
    .contacts_block.add,
    .contacts_block.time {
        -ms-grid-column-span: 2;
        -ms-grid-column: span 2;
        grid-column: span 2;
    }
    .contacts_block-item {
        font-size: 14px;
        line-height: 16px;
    }
}

@media screen and (max-width: 378px) {
    .contacts__content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    }
    .contacts_block.add,
    .contacts_block.time {
        -ms-grid-column-span: 1;
        -ms-grid-column: span 1;
        grid-column: span 1;
    }
}


/* footer */

.footer {
    margin-top: 96px;
    padding: 41px 0 25px;
    background: #EFEFEF;
}

.footer_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.footer_up-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.footer_up-item svg {
    max-width: 36px;
    max-height: 36px;
    width: 100% !important;
    height: 100% !important;
}

.footer_up-link {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.footer_up-link.address {
    max-width: 324px;
}

a.footer_up-link:hover {
    color: var(--main-color);
    text-decoration: none;
}

.footer-button {
    max-width: 196px;
    height: 37px;
}

.footer_content {
    margin-top: 70px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.footer_content:before {
    content: "";
    position: absolute;
    left: 0;
    top: -27px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}

.footer-logo img {
    width: 241px;
    max-height: 109px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer_menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 20px;
    -ms-grid-columns: auto 127px auto 127px auto;
    grid-template: 20px / repeat(3, auto);
    grid-auto-rows: 20px;
    -webkit-column-gap: 127px;
    -moz-column-gap: 127px;
    column-gap: 127px;
    row-gap: 23px;
}

.footer_menu-item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.footer_menu-item:hover {
    color: #BE2529;
    text-decoration: none;
}

.footer_social {
    margin-top: 7px;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    -webkit-align-self: start;
    align-self: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
}

.footer_social a img {
    width: 32px;
    height: 32px;
}

.footer_down {
    margin-top: 53px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 4px;
    -moz-column-gap: 4px;
    column-gap: 4px;
}

.footer_down:before {
    content: "";
    position: absolute;
    left: 0;
    top: -23px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}

.footer_down a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #666666;
    text-transform: uppercase;
}

.footer_down a:hover {
    color: #666666;
    text-decoration: none;
}

.footer_down span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #151515;
}

@media screen and (max-width: 1200px) {
    .footer {
        margin-top: 80px;
    }
    .footer_content {
        margin-top: 60px;
    }
    .footer_up {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template: auto / repeat(3, 1fr);
        gap: 20px;
    }
    .footer_up-item.address {
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-column: 1 / 4;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
    }
    .footer_up-link.address {
        max-width: none;
    }
    .footer_menu {
        -ms-grid-rows: 20px;
        -ms-grid-columns: auto 80px auto;
        grid-template: 20px / repeat(2, auto);
        grid-auto-rows: 20px;
        -webkit-column-gap: 80px;
        -moz-column-gap: 80px;
        column-gap: 80px;
        row-gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .footer {
        margin-top: 60px;
    }
    .footer_menu {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .footer_up {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto / repeat(2, 1fr);
    }
    .footer_up-item.address {
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-column: 1 / 3;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1 / 2;
    }
    .footer_up-link {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 576px) {
    .footer_content {
        margin-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: start;
        align-items: start;
        row-gap: 20px;
    }
    .footer_up {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    }
    .footer_up-item.address {
        -ms-grid-column-span: 1;
        -ms-grid-column: span 1;
        grid-column: span 1;
        -ms-grid-row-span: 1;
        -ms-grid-row: span 1;
        grid-row: span 1;
    }
    .footer_up-item svg {
        max-width: 28px;
        max-height: 28px;
    }
    .footer_content:before {
        top: -20px;
    }
    .footer_down {
        margin-top: 40px;
    }
    .footer_down:before {
        top: -20px;
    }
    .footer_down span {
        font-size: 13px;
        line-height: 14px;
    }
    .footer_down a {
        font-size: 13px;
        line-height: 15px;
    }
}


/* страница документов */

.document_content {
    margin-top: 48px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 280px 41px 1fr;
    grid-template: auto / 280px 1fr;
    -webkit-column-gap: 41px;
    -moz-column-gap: 41px;
    column-gap: 41px;
}

.document_menu {
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    -webkit-align-self: start;
    align-self: start;
}

.document_menu-header {
    padding: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.document_menu-header span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151515;
}

.document_menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.document_menu-item {
    height: 62px;
    padding: 0 9px 0 26px;
    border-top: 1px solid #E8E8E8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.document_menu-item span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.document_menu-item:hover {
    background: #00388C;
    text-decoration: none;
}

.document_menu-item:hover span {
    color: #fff;
    text-decoration: none;
}

.document_menu-item:hover svg path {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    stroke: #fff;
}

.document_menu-item.active {
    background: #00388C;
    text-decoration: none;
}

.document_menu-item.active:nth-last-child(1) {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.document_menu-item.active span {
    color: #fff;
    text-decoration: none;
}

.document_menu-item.active svg path {
    stroke: #fff;
}

.document_files {
    display: -ms-grid;
    display: grid;
    -ms-grid-row-align: start;
    align-self: start;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template: auto / repeat(2, 1fr);
    gap: 15px;
}

.document_file {
    padding: 30px;
    background: #F2F5F9;
    border-radius: 10px;
}

.document-date {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #888888;
}

.document-name {
    margin-top: 4px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #151515;
}

.document_links {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 36px;
    -moz-column-gap: 36px;
    column-gap: 36px;
}

.document_link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 7px;
    -moz-column-gap: 7px;
    column-gap: 7px;
}

.document_link:nth-child(1):before {
    content: "";
    position: absolute;
    top: 0;
    right: -22px;
    width: 1px;
    height: 100%;
    background: #C6C6C6;
}

.document_link a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #151515;
}

.document_link a:hover {
    color: #151515;
}

@media screen and (max-width: 1300px) {
    .document_file {
        padding: 20px;
    }
    .document_links {
        margin-top: 24px;
        -webkit-column-gap: 26px;
        -moz-column-gap: 26px;
        column-gap: 26px;
    }
    .document_link:nth-child(1):before {
        right: -16px;
    }
}

@media screen and (max-width: 1200px) {
    .document_content {
        margin-top: 30px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 260px 20px 1fr;
        grid-template: auto / 260px 1fr;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .document_menu-header {
        padding: 20px;
    }
    .document-name {
        font-size: 14px;
        line-height: 16px;
    }
    .document_link a {
        font-size: 14px;
        line-height: 16px;
    }
}

@media screen and (max-width: 992px) {
    .document_files {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .document_content {
        margin-top: 30px;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        row-gap: 20px;
    }
    .document_files {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto / repeat(2, 1fr);
    }
    .document_link:nth-child(1):before {
        content: none;
    }
    .document_links {
        margin-top: 14px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: start;
        align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        row-gap: 6px;
    }
    .document_link svg {
        width: 24px !important;
        height: 24px !important;
    }
    .document-name {
        font-size: 15px;
        line-height: 16px;
    }
    .document-date {
        font-size: 12px;
        line-height: 24px;
    }
}

@media screen and (max-width: 600px) {
    .document_menu-header {
        padding: 20px 14px;
    }
    .document_menu-item {
        height: 50px;
        padding: 0 4px 0 14px;
    }
    .document_files {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    }
}


/* страница о компании */

.about {
    position: relative;
    margin-top: 147px;
    padding-bottom: 173px;
    padding-top: 0;
}

.about_container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
    .about_container {
        width: 100%;
        max-width: unset;
        margin: unset;
    }
}

.about-bg {
    position: absolute;
    width: 100%;
    max-height: 515px;
    height: 100%;
    left: 0;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.about__wrapper {
    padding: 62px 57px;
    background: #fff;
    border-radius: 10px;
    max-width: 750px;
}

.about-text {
    margin-top: 23px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.about-text p {
    margin-bottom: 10px;
}

.about_button {
    margin-top: 30px;
    max-width: 256px;
    width: 100%;
    height: 50px;
}

@media screen and (max-width: 1200px) {
    .about {
        margin-top: 120px;
        padding-bottom: 120px;
    }
    .about__wrapper {
        padding: 3rem;
        max-width: 600px;
    }
    .about-text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .about-bg {
        max-height: 400px;
    }
    .about_button {
        height: 40px;
    }
}

@media screen and (max-width: 992px) {
    .about {
        margin-top: 100px;
        padding-bottom: 100px;
    }
    .about__wrapper {
        padding: 2rem;
        max-width: 520px;
    }
    .about-bg {
        max-height: 300px;
    }
    .about-text {
        margin-top: 20px;
        font-size: 13px;
        line-height: 18px;
    }
    .about_button {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-bg {
        display: none;
    }
    .about {
        margin-top: 100px;
        padding-bottom: 0;
    }
    .about__wrapper {
        padding: 0 2rem;
        max-width: none;
    }
}

@media screen and (max-width: 576px) {
    .about {
        margin-top: 80px;
    }
    .about__wrapper {
        width: 100%;
        padding: 0 10px;
    }
}


/* digit */

.digit_content {
    margin-top: 48px;
    position: relative;
}

.digit_card-value {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 60px;
    text-transform: uppercase;
    color: #00388C;
    opacity: 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.digit_card-text {
    margin-top: 13px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    text-transform: uppercase;
    color: #353535;
}

@media screen and (max-width: 1200px) {
    .digit_content {
        margin-top: 40px;
    }
}

@media screen and (max-width: 992px) {
    .digit_content {
        margin-top: 30px;
    }
    .digit_card-value {
        font-size: 40px;
        line-height: 48px;
    }
    .digit_card-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 768px) {
    .digit_content {
        margin-top: 20px;
    }
    .digit_card-value {
        font-size: 36px;
        line-height: 40px;
    }
    .digit_card-text {
        margin-top: 10px;
        font-size: 13px;
        line-height: 16px;
    }
}


/* gallery */

.gallery_content {
    margin-top: 40px;
}

.gallery_card {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 384px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template: 384px / repeat(3, 1fr);
    grid-auto-rows: 254px;
    gap: 10px;
}

.gallery_card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}

.gallery_card video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.gallery_card img:nth-child(1) {
    -ms-grid-column-span: 2;
    -ms-grid-column: span 2;
    grid-column: span 2;
}

@media screen and (max-width: 1300px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 334px;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template: 334px / repeat(3, 1fr);
        grid-auto-rows: 214px;
        gap: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 284px;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template: 284px / repeat(3, 1fr);
        grid-auto-rows: 184px;
        gap: 10px;
    }
}

@media screen and (max-width: 992px) {
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 220px;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template: 220px / repeat(3, 1fr);
        grid-auto-rows: 120px;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .gallery_content {
        margin-top: 30px;
    }
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 180px;
        -ms-grid-columns: 1fr 6px 1fr 6px 1fr;
        grid-template: 180px / repeat(3, 1fr);
        grid-auto-rows: 100px;
        gap: 6px;
    }
    .gallery_card img {
        border-radius: 10px;
    }
}

@media screen and (max-width: 576px) {
    .gallery_content {
        margin-top: 20px;
    }
    .gallery_card {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 200px;
        -ms-grid-columns: 1fr 4px 1fr;
        grid-template: 200px / repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 4px;
    }
}

@media screen and (max-width: 360px) {
    .gallery_card {
        -ms-grid-rows: 140px;
        -ms-grid-columns: (1fr)[2];
        grid-template: 140px / repeat(2, 1fr);
        grid-auto-rows: 100px;
    }
}


/* slider pagination */

.pagi {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.pagi .swiper-pagination-bullet {
    width: 4px;
    height: 10px;
    border-radius: 8px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.pagi .swiper-pagination-bullet-active {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    background: #00388C;
    width: 4px;
    height: 15px;
}

.fon-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 5px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.fon-pagination .swiper-pagination-bullet-active {
    width: 18px;
    height: 5px;
    background: #FFFFFF;
    border-radius: 10px;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

@media screen and (max-width: 768px) {
    .pagi {
        margin-top: 20px;
    }
}


/* partnres */

.partners {
    position: relative;
}

.partners__content {
    margin-top: 41px;
    position: relative;
}

.partners__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 166px;
    height: 72px;
    background: #FFFFFF;
    border: 1px solid #C6C6C6;
    border-radius: 10px;
}

.partners__card img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    padding: 10px;
}

@media screen and (max-width: 576px) {
    .partners__content {
        margin-top: 20px;
    }
}


/* Slick */

.slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    column-gap: 15px;
}

.slider-prev,
.slider-next {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #C8C8C8;
    background: #ffffff;
    border-radius: 100%;
}

.slider-prev:focus,
.slider-next:focus {
    outline: none;
}

.slick-arrow:hover svg path {
    stroke: var(--main-color);
}

.slick-arrow:hover {
    border: 1px solid var(--main-color);
}

.slider-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-next {
    position: absolute;
    right: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slick-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-column-gap: 8px;
    -webkit-column-gap: 8px;
    column-gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slick-dots li button {
    border: none;
    width: 4px;
    height: 10px;
    left: 698px;
    top: 6459px;
    background: #BDBDBD;
    border-radius: 7px;
    -webkit-transition: .4s all;
    transition: .4s all;
    font-size: 0;
}

.slick-dots li.slick-active button {
    -webkit-transition: .4s all;
    transition: .4s all;
    width: 4px;
    height: 15px;
    background: #00388C;
    outline: none;
    border: none;
}

@media screen and (max-width: 1300px) {
    .slider-prev {
        right: -50px;
    }
    .slider-prev {
        left: -36px;
    }
    .slider-next {
        right: -36px;
    }
    .slider-prev,
    .slider-next {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .slider-prev {
        left: -34px;
    }
    .slider-next {
        right: -34px;
    }
}

@media screen and (max-width: 992px) {
    .slider-prev {
        left: -20px;
    }
    .slider-next {
        right: -28px;
    }
    .slider-prev,
    .slider-next {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 576px) {
    .slick-track {
        -webkit-column-gap: 8px;
        -moz-column-gap: 8px;
        column-gap: 8px;
    }
}


/* страница поиск */

.poisk-title {
    position: relative;
}

.poisk-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #F1F1F1;
}

.poisk__search {
    margin-top: 40px;
}

.poisk__search .ss-search-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.poisk__search .ss-search-form__input input {
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #BE2529 !important;
    text-align: left;
    border-radius: 10px;
    width: 100%;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-edge: cap;
    color: #151515;
}

.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input::-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__input input::placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}

.poisk__search .ss-search-form__submit {
    padding: 10px;
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    outline: none !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    border: 1px solid #BE2529 !important;
}

.poisk__search .ss-search-form__submit:hover {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    background: #BE2529;
    color: #fff;
}

.poisk__search .ss-search-form__submit:hover svg path {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    fill: #DD137B;
    stroke: #fff;
}

.poisk__result {
    margin-top: 40px;
}

.poisk__result p {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #586667;
}

.poisk__result .ss-result__title a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #151515;
    text-decoration: none;
}

.poisk__result .ss-result__title a:hover {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    text-decoration: none;
    color: #BE2529;
}

.poisk__result .ss-result__text {
    margin-top: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #586667;
}

.poisk__result .ss-result__text mark {
    padding: 0.2em;
    color: #151515;
}

.poisk__result .ss-result__url a {
    margin-top: 12px;
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: #BE2529;
    text-decoration: none;
}

.poisk__result .ss-result hr {
    margin-top: 20px;
}


/* страница главная */

.fon {
    padding-top: 109px;
}

.fon_content {
    position: relative;
    height: 658px;
}

.fon_slide {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.fon_inner {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.fon_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: brightness(45%);
    filter: brightness(45%);
}

.fon_title {
    max-width: 568px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.fon_subtitle {
    max-width: 501px;
    margin-top: 14px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #EDEDED;
}

.fon_button {
    margin-top: 29px;
    max-width: 256px;
    height: 50px;
}

@media screen and (max-width: 1200px) {
    .fon {
        padding-top: 94px;
    }
    .fon_content {
        height: 566px;
    }
    .fon_title {
        font-size: 40px;
        line-height: 40px;
    }
    .fon_subtitle {
        font-size: 18px;
        line-height: 20px;
    }
    .fon_button {
        margin-top: 20px;
        max-width: 256px;
        height: 44px;
    }
}

@media screen and (max-width: 992px) {
    .fon {
        padding-top: 88px;
    }
    .fon_content {
        height: 500px;
    }
    .fon_title {
        font-size: 36px;
        line-height: 36px;
    }
    .fon_subtitle {
        font-size: 16px;
        line-height: 18px;
    }
    .fon_button {
        margin-top: 20px;
        max-width: 220px;
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .fon {
        padding-top: 52px;
    }
    .fon_title {
        font-size: 32px;
        line-height: 32px;
    }
    .fon_content {
        height: 400px;
    }
    .fon_subtitle {
        max-width: 400px;
    }
}

@media screen and (max-width: 576px) {
    .fon_content {
        height: 340px;
    }
    .fon-pagination {
        display: none;
    }
    .fon_title {
        font-size: 24px;
        line-height: 26px;
    }
    .fon_subtitle {
        font-size: 14px;
        line-height: 16px;
    }
    .fon_button {
        max-width: 200px;
        height: 36px;
    }
}


/* cards */

.cards {
    position: relative;
    z-index: 1;
    padding: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
}

.cards_wrapper {
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(260px, 1fr));
}

.cards_item {
    position: relative;
    padding: 30px 32px;
    background: #FFFFFF;
    border-right: 1px solid #E8E8E8;
    cursor: pointer;
    box-shadow: 14px 3.33495px 37.5182px rgba(0, 0, 0, 0.1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.9s all;
    transition: 0.9s all;
}

.cards_item:nth-child(1) {
    border-bottom-left-radius: 13px;
    border-top-left-radius: 13px;
}

.cards_item:nth-last-child(1) {
    border-right: none;
    border-bottom-right-radius: 13px;
    border-top-right-radius: 13px;
}

.cards_item-svg svg {
    width: 60px;
    height: 60px;
}

.cards_item-svg svg path {
    fill: #00388C;
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
}

.cards_item-title {
    margin-top: 37px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151515;
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
}

.cards_item-text {
    margin-top: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: #666666;
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
}

.cards_item:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    background: #00388C;
    border-radius: 13px;
    box-shadow: none;
    border: none;
}

.cards_item:hover .cards_item-svg svg path {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    fill: #fff;
}

.cards_item:hover .cards_item-title {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    color: #fff;
}

.cards_item:hover .cards_item-text {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .cards {
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    .cards_item {
        padding: 20px;
    }
    .cards_item-title {
        margin-top: 20px;
        font-size: 15px;
        line-height: 18px;
    }
    .cards_item-text {
        margin-top: 10px;
        font-size: 12px;
        line-height: 16px;
    }
    .cards_wrapper {
        grid-template: auto / repeat(auto-fit, minmax(220px, 1fr));
    }
    .cards_item-svg svg {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 992px) {
    .cards_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 6px 1fr;
        grid-template: auto / repeat(2, 1fr);
        gap: 6px;
    }
    .cards_item:nth-child(1) {
        border-bottom-left-radius: unset;
        border-top-left-radius: unset;
    }
    .cards_item:nth-last-child(1) {
        border-bottom-right-radius: unset;
        border-top-right-radius: unset;
    }
    .cards_item {
        border: 1px solid #E8E8E8;
        border-radius: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .cards {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    .cards_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        gap: 4px;
    }
    .cards_item {
        padding: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-column-gap: 14px;
        -moz-column-gap: 14px;
        column-gap: 14px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .cards_item-title {
        margin-top: 0;
        font-size: 13px;
        line-height: 16px;
    }
    .cards_item-svg svg {
        width: 40px;
        height: 40px;
    }
    .cards_item-text {
        margin-top: 6px;
        font-size: 10px;
        line-height: 12px;
    }
}


/* Blog */

.blog__content.count {
    grid-template: auto / repeat(auto-fit, minmax(280px, 342px));
}

.blog__card-img {
    position: relative;
}

.blog__card-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog__card-img a {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding-top: 6px;
    padding-left: 6px;
    border-top-left-radius: 10px;
}

.blog__card-title {
    display: block;
    margin-top: 21px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
    }
}

.blog__card-title:hover {
    color: var(--main-color);
    text-decoration: none;
}

.blog__card-date {
    position: relative;
    margin-top: 28px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
}

.blog__card-date:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}

@media screen and (max-width: 1024px) {
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -110px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
    .blog__content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .blog__card-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }
    .blog__card-img img {
        max-height: 160px;
        width: 200%;
    }
}

@media screen and (max-width: 390px) {
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -119px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
    .blog__content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .blog__card-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }
    .blog__card-img img {
        max-height: 160px;
        width: 200%;
    }
}

@media screen and (max-width: 430px) {
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -62px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
    .blog__content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    .blog__card-title {
        margin-top: 16px;
        font-size: 16px;
        line-height: 20px;
    }
    .blog__card-img img {
        max-height: 160px;
        width: 200%;
    }
}

@media screen and (max-width: 768px) {
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -110px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
    .blog__content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
        grid-template: auto / repeat(2, 1fr);
        gap: 20px;
    }
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
        grid-template: auto / repeat(2, 1fr);
    }
    .blog__card-title {
        margin-top: 14px;
        font-size: 14px;
        line-height: 16px;
    }
    .blog__card-img svg {
        width: 30px;
        height: 30px;
    }
    .blog__card-date {
        margin-top: 20px;
        font-size: 12px;
        line-height: 16px;
    }
    .blog__card-date:before {
        top: -6px;
    }
    .blog__card-img img {
        max-height: 160px;
        width: 200%;
    }
}

@media screen and (max-width: 768px) {
    blog__card-img img {
        max-height: 160px;
        width: 312%
    }
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -110px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
}

@media screen and (max-width: 420px) {
    .blog__content {
        margin-top: 20px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    }
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    }
    .blog__card-img img {
        max-height: 160px;
        width: 200%;
    }
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -114px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
}

@media screen and (max-width: 360px) {
    .blog__card-img img {
        max-height: 140px;
        width: 200%;
    }
    .blog__card-img a {
        display: block;
        position: absolute;
        right: -96px;
        bottom: 0;
        background: #fff;
        padding-top: 6px;
        padding-left: 6px;
        border-top-left-radius: 10px;
    }
}


/* Пагинация */

.pagination {
    margin: 60px auto 0;
}

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

.pagination__list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-column-gap: 34px;
    -moz-column-gap: 34px;
    column-gap: 34px;
    border: 1px solid #DFDFDF;
    padding: 13px 34px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.pagination__item {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #444444;
}

.pagination__list li.active>.pagination__item {
    color: var(--main-color);
}

.pagination__arrow {
    width: 37px;
    height: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background: #E8E8E8;
}


/* post */

.post_slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
}

.post_slider .slick-slide {
    height: auto
}

.post_slider .slick-track {
    margin-left: 0
}

@media screen and (max-width: 480px) {
    .slide_space .slick-slide {
        margin: 0 16px
    }
}

.slide_space .slick-list {
    margin: 0 -16px
}

.post-img {
    max-width: 396px;
    max-height: 247px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.post_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.post-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #151515;
}

.post-subtitle {
    margin-top: 12px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #151515;
}

.post-date {
    position: relative;
    margin-top: 28px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #888888;
}

.post-date:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}

.post-text {
    margin-top: 30px;
    width: 100%;
}

.post_slider {
    margin-top: 40px;
}

@media screen and (max-width: 992px) {
    .post-img {
        max-width: 260px;
    }
    .post-title {
        font-size: 20px;
        line-height: 22px;
    }
    .post-subtitle {
        margin-top: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .post-date {
        font-size: 14px;
        line-height: 14px;
    }
}

@media screen and (max-width: 768px) {
    .post-img {
        max-width: 300px;
    }
    .post-title {
        font-size: 18px;
        line-height: 20px;
    }
    .post-subtitle {
        margin-top: 20px;
        font-size: 16px;
        line-height: 16px;
    }
    .post_up {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: start;
        align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }
}


/* catalog */

.catalog_content {
    margin-top: 48px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 280px 33px 1fr;
    grid-template: auto / 280px 1fr;
    -webkit-column-gap: 33px;
    -moz-column-gap: 33px;
    column-gap: 33px;
}

.catalog_menu {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    -webkit-align-self: start;
    align-self: start;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
}

.menu_head {
    padding: 25px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
}

.menu_head span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #151515;
}

.catalog_ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.catalog_a {
    padding: 12px 9px 12px 20px;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: #151515;
}

.catalog_menu .catalog_a:hover {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    color: #fff;
    background: var(--main-color);
    text-decoration: none;
}

.catalog_menu .catalog_li.active .catalog_a {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    color: #fff;
    background: var(--main-color);
    text-decoration: none;
}

.catalog_menu .childmenu {
    display: none;
    list-style-type: none;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.catalog_menu .childmenu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.catalog_menu .childmenu_a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #444444;
}

.catalog_menu .childmenu .childmenu_a:hover {
    -webkit-transition: 0.6s all;
    transition: 0.6s all;
    color: var(--main-color);
    text-decoration: none;
}

.catalog_menu .childmenu_li.active .childmenu_a {
    color: var(--main-color);
    font-weight: 600;
}

.catalog_menu .childmenu_li {
    line-height: 16px;
}

.catalog_items {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    -webkit-align-self: start;
    align-self: start;
}


/* product */

.product_list {
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(240px, 1fr));
}

.product_list.count {
    grid-template: auto / repeat(auto-fit, minmax(240px, 314px));
}

.product_item {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: background 0.6s, -webkit-transform 0.6s, -webkit-box-shadow 0.6s;
    -webkit-transition: background 0.6s, box-shadow 0.6s, -webkit-transform 0.6s;
    transition: background 0.6s, box-shadow 0.6s, -webkit-transform 0.6s;
    transition: transform 0.6s, background 0.6s, box-shadow 0.6s;
    transition: transform 0.6s, background 0.6s, box-shadow 0.6s, -webkit-transform 0.6s;
    outline: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    row-gap: 14px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.product_item:hover {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
    background: #FFFFFF;
    border: none;
    box-shadow: 0px 4px 40px rgba(85, 85, 85, 0.2);
}

.product_item-availability,
.product_item-quantity {
    position: absolute;
    left: 0;
    background: hsl(127 53% 54%);
    color: white;
    font-weight: bold;
    padding-inline: 5px;
    text-transform: lowercase;
    z-index: 2;
    font-size: 14px;
}

.product_item-availability {
    top: 6%;
    &[data-availability="под заказ"] {
        background: #e9942e;
    }
}

.product_item-quantity {
    top: 11%;
}

@media (max-width: 1199px) {
    .product_item-quantity {
        top: 12%;
    }
}

@media (max-width: 1023px) {
    .product_item-quantity {
        top: 13%;
    }
}

@media (max-width: 639px) {
    .product_item-quantity {
        top: 15%;
    }
}

@media (max-width: 389px) {
    .product_item-availability,
    .product_item-quantity {
        font-size: 12px;
    }
    .product_item-quantity {
        top: 20%;
    }
}

.product_images {
    position: relative;
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 282px;
}

.product_images img {
    cursor: pointer;
    max-width: 290px;
    width: 100%;
    max-height: 282px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 2;
}

.product_content,
.product_block {
    padding: 38px 18px 18px 18px;
}

.product_name {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #00388C;
}

.product_descr {
    margin-top: 10px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #666666;
}

.product_block {
    padding-top: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.product_link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product_price {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #444444;
}

.link_for-catalog {
    width: 50px;
    height: 50px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    background: var(--main-color);
    border-radius: 100%;
    z-index: 200;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

@media screen and (max-width: 1200px) {
    .catalog_content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 260px 20px 1fr;
        grid-template: auto / 260px 1fr;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .product_images img {
        max-width: 240px;
        max-height: 240px;
    }
    .product_images {
        height: 240px;
    }
    .product_content {
        padding: 20px 18px 18px 18px;
    }
    .product_block svg {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 992px) {
    .menu_head {
        padding: 20px;
    }
    .product_list.count {
        grid-template: auto / repeat(auto-fit, minmax(220px, auto));
    }
    .catalog_a {
        padding: 8px 8px 8px 20px;
        font-size: 14px;
        line-height: 16px;
    }
    .catalog_content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 240px 20px 1fr;
        grid-template: auto / 240px 1fr;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .product_list {
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(220px, 1fr));
    }
    .product_images {
        padding: 10px;
        height: 200px;
    }
    .product_content,
    .product_block {
        padding: 16px;
    }
    .product_descr {
        font-size: 13px;
        line-height: 16px;
    }
    .product_block svg {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .product_list.count {
        grid-template: auto / repeat(auto-fit, minmax(220px, auto));
    }
    .catalog_menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 50%;
        height: 100vh;
        overflow: auto;
        -webkit-transition: 0.4s all;
        transition: 0.4s all;
        z-index: 200;
        background: #fff;
    }
    .catalog_menu.active {
        left: 0;
    }
    .catalog_content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }
    .link_for-catalog {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    .catalog_content {
        margin-top: 20px;
    }
    .product_list {
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    .product_images {
        padding: 10px;
        height: 160px;
    }
    .product_images img {
        max-width: 200px;
        max-height: 200px;
    }
    .product_content,
    .product_block {
        padding: 12px;
    }
    .product_name {
        font-size: 13px;
        line-height: 14px;
    }
    .product_descr {
        font-size: 10px;
        line-height: 12px;
    }
    .product_block {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
    .product_price {
        font-size: 12px;
        line-height: 13px;
    }
    .product_block svg {
        width: 26px;
        height: 26px;
    }
    .catalog_menu {
        width: 100%;
    }
}


/* страница продукт */

.prod_slider {
    display: -ms-grid;
    display: grid;
}

.prod_back {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 18px;
    -moz-column-gap: 18px;
    column-gap: 18px;
}

.prod_back:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 100%;
    height: 1px;
    background: #EAEAEA;
}

.prod_back span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.04em;
    color: #525252;
}

.prod_back:hover {
    text-decoration: none;
}

.prod_back:hover span {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    color: var(--main-color);
}

.prod_back:hover svg path {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    stroke: var(--main-color);
}

.prod_content {
    margin-top: 74px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(400px, 824px) 32px 396px;
    grid-template: auto / minmax(400px, 824px) 396px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
}

.prod_block {
    padding: 30px 40px;
    background: #FFFFFF;
    border-radius: 5px;
}

.prod_category {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #666666;
}

.prod_title {
    margin-top: 14px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #222222;
}

.prod_thumbs {
    margin-top: 26px;
    padding: 56px 34px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    display: -ms-grid;
    display: grid;
}

.prod_thumbs::before,
.prod_thumbs::after {
    position: absolute;
    left: 0;
    background: hsl(127 53% 54%);
    color: white;
    font-weight: bold;
    padding-inline: 20px 10px;
    text-transform: lowercase;
    z-index: 2;
}

.prod_thumbs::before {
    content: attr(data-availability);
    top: 5%;
}

.prod_thumbs[data-availability="под заказ"]::before {
    background: #e9942e;
}

.prod_thumbs::after {
    content: attr(data-quantity);
    top: 11%;
}

@media (max-width: 639px) {
    .prod_thumbs::after {
        top: 12%;
    }
}

.prod-thumb {
    cursor: pointer;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 360px;
}

.prodSlider {
    margin-top: 20px;
}

.prod-slide {
    padding: 24px 15px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    height: 160px;
    -o-object-fit: contain;
    object-fit: contain;
}

.prod_spec {
    margin-top: 38px;
    padding: 27px 34px 45px;
    background: #FFFFFF;
    border-radius: 5px;
}

.prod_spec-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 57px;
    -moz-column-gap: 57px;
    column-gap: 57px;
    position: relative;
}

.prod_spec-up:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #DEDEDE;
}

.prod_spec-item {
    position: relative;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #8C8C8C;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
    cursor: pointer;
}

.prod_spec-item:hover {
    color: #00388C;
}

.prod_spec-item.active {
    color: #151515;
}

.prod_spec-item.active:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #00388C;
}

.prod_spec-info {
    margin-top: 40px;
}

.prod_spec-block {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #555555;
}

.prod_spec-block p {
    margin-bottom: 8px;
}

.prod_spec-block ul {
    margin-bottom: 8px;
    padding-left: 20px;
}

.prod_spec-block-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #555555;
}


/* prod form */

.prod_form {
    padding: 84px 43px 75px;
    background: #FFFFFF;
    border-radius: 5px;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    -webkit-align-self: start;
    align-self: start;
}

.prod_form-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #151515;
}

.prod_form-decsr {
    margin-top: 18px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}

.button_whatsapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-top: 7px;
    width: 100%;
    height: 50px;
    background: #4CC85B;
    border-radius: 4px;
    border: 1px solid #4CC85B;
}

.button_whatsapp:hover {
    color: #4CC85B;
}

.prodForm {
    margin-top: 36px;
}

.prodForm-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    row-gap: 17px;
}

.prodForm-data input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 18px;
    height: 50px;
    background: #F8F8F8;
    border-radius: 4px;
    border: none !important;
    outline: none !important;
}

.prodForm-data input::-webkit-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input::-moz-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input:-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input::-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input::-webkit-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input::-moz-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input:-ms-input-placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input::placeholder {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}

.prodForm-data input {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #151515;
}

.prodForm__button {
    margin-top: 36px;
    height: 50px;
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .prod_back:before {
        bottom: -10px;
    }
    .prod_content {
        margin-top: 50px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(400px, 824px) 20px 340px;
        grid-template: auto / minmax(400px, 824px) 340px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .prod_form {
        padding: 60px 30px 50px;
    }
    .prod_spec {
        margin-top: 30px;
        padding: 28px;
    }
}

@media screen and (max-width: 992px) {
    .prod_content {
        margin-top: 40px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(400px, 824px) 20px 260px;
        grid-template: auto / minmax(400px, 824px) 260px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .prod_form {
        padding: 40px 20px 40px;
    }
    .prod_form-title {
        font-size: 20px;
        line-height: 20px;
    }
    .prod_form-decsr {
        margin-top: 14px;
        font-size: 14px;
        line-height: 18px;
    }
    .prodForm {
        margin-top: 20px;
    }
    .prodForm-data {
        row-gap: 12px;
    }
    .prodForm__button {
        margin-top: 20px;
        height: 40px;
    }
    .button_whatsapp {
        height: 40px;
    }
    .prod_block {
        padding: 30px;
    }
    .prod_spec {
        margin-top: 20px;
        padding: 20px;
    }
    .prod_spec-item {
        font-size: 16px;
        line-height: 24px;
    }
    .prod_spec-up {
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
    }
    .prod_spec-info {
        margin-top: 20px;
    }
    .prod_spec-block {
        font-size: 14px;
        line-height: 20px;
    }
    .prod_spec-block-text {
        font-size: 14px;
        line-height: 20px;
    }
    .prod-slide {
        padding: 10px;
    }
}

@media screen and (max-width: 768px) {
    .prod_content {
        margin-top: 40px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 100%;
        grid-template: auto / 100%;
        row-gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .prod_block {
        padding: 20px;
    }
    .prod_title {
        margin-top: 10px;
    }
    .prod_thumbs {
        margin-top: 20px;
        padding: 20px;
    }
    .prodSlider {
        margin-top: 10px;
    }
    .prod_spec-up {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }
    .prod_spec-item {
        font-size: 14px;
        line-height: 22px;
    }
    .prod_spec-block {
        font-size: 12px;
        line-height: 16px;
    }
    .prod_spec-block-text {
        font-size: 12px;
        line-height: 16px;
    }
    .prod_form {
        padding: 20px;
    }
    .prod-slide {
        height: 100px;
    }
}

.prod_spec-block-text {
    position: relative;
    margin-bottom: 20px;
}

.prod_spec-block-text:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: gray;
}

.prod_spec-block-file {
    display: block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #151515;
    padding: 8px 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
}

.prod_spec-block-file:hover {
    color: var(--main-color);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .prod_spec-block-file {
        font-size: 14px;
        line-height: 16px;
        padding: 6px 0;
    }
}

@media screen and (max-width: 576px) {
    .prod_spec-block-file {
        font-size: 13px;
        line-height: 15px;
        padding: 4px 0;
    }
}


/* modal */

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 396px;
    height: auto;
    z-index: 500;
}

.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.modal-close svg {
    width: 34px;
    height: 34px;
}

.prod_form.modal-content {
    padding: 40px;
}

@media screen and (max-width: 576px) {
    .modal-content {
        width: 90%;
    }
    .prod_form.modal-content {
        padding: 20px;
    }
    .modal-close {
        right: 6px;
        top: 6px;
    }
    .modal-close svg {
        width: 30px;
        height: 30px;
    }
}


/* our-prod_content */

.our-prod {
    padding-top: 20px;
}

.our-about {
    margin-top: 38px;
}

.our-prod_content {
    margin-top: 37px;
}

.our-prod_card-img {
    position: relative;
    display: block;
}

.our-prod_card-img img {
    border-radius: 10px;
    width: 100%;
    height: 277px;
    -o-object-fit: cover;
    object-fit: cover;
}

.our-prod_card-img .arrow__link {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding-top: 6px;
    padding-left: 6px;
    border-top-left-radius: 10px;
}

.our-prod_card-title {
    display: block;
    margin-top: 21px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    color: #151515;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}

.our-prod_card-title:hover {
    color: var(--main-color);
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    .our-prod_card-img img {
        height: 260px;
    }
    .our-about {
        margin-top: 10px;
    }
}

@media screen and (max-width: 992px) {
    .our-prod_card-img img {
        height: 220px;
    }
    .our-prod_card-title {
        margin-top: 16px;
        font-size: 15px;
        line-height: 18px;
    }
    .our-prod_card-img svg {
        width: 34px;
        height: 34px;
    }
}

@media screen and (max-width: 768px) {
    .our-about {
        margin-top: 40px;
    }
    .our-prod_card-img img {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .our-about {
        margin-top: 30px;
    }
    .our-prod_content {
        margin-top: 20px;
    }
    .our-prod_card-img svg {
        width: 30px;
        height: 30px;
    }
    .our-prod_card-title {
        margin-top: 14px;
        font-size: 13px;
        line-height: 15px;
    }
    .our-prod_card-img img {
        height: 140px;
    }
}

.document_no-files {
    margin-top: 20px;
    -ms-grid-column-span: 2;
    -ms-grid-column: span 2;
    grid-column: span 2;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #151515;
}

@media screen and (max-width: 992px) {
    .document_no-files {
        margin-top: 20px;
        font-size: 20px;
        line-height: 24px;
    }
}

@media screen and (max-width: 576px) {
    .document_no-files {
        margin-top: 10px;
        font-size: 18px;
        line-height: 20px;
    }
}

@media screen and (max-width: 389px) {
    .product_item {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .product_item__bottom {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.section-text {
    color: var(--main-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    margin: 10px;
}

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

.blog__card {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.contacts__offices {
    margin-block-start: 35px;
}

.offices__title {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
}

.offices__item {
    margin-block-start: 20px;
}

.header__city {
    cursor: pointer;
}

.modal-cities__content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.modal-cities__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.modal-cities__list {
    margin-block-start: 20px;
    columns: 2;
    column-gap: 40px;
    list-style-type: none;
}

.modal-cities__list>li {
    cursor: pointer;
    transition: color 0.4s;
}

@media (hover: hover) {
    .modal-cities__list>li:hover {
        color: var(--main-color);
    }
}

@media (max-width: 1023px) {
    .header-up_block {
        column-gap: 16px;
    }
    .header-up_item>a,
    .header__city {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .modal-cities__list {
        columns: 1;
    }
}

.header__bottom {
    font-size: 28px;
    color: white;
    text-align: center;
    background-color: #00388c;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 639px) {
    .header__bottom {
        font-size: 22px;
    }
}

.blog__content {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, 33%);
    margin: 0 -15px;
    align-items: stretch;
    gap: 0;
}

.blog__card {
    margin: 0 15px 30px;
    height: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    justify-content: space-between;
    position: relative;
}

.blog__card-block {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}

@media screen and (max-width: 1024px) {
    .blog__content {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        align-items: stretch;
        gap: 0px;
    }
    .blog__card {
        width: calc(50% - 30px);
        margin: 0px 15px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    .blog__card-img img {
        max-width: 100%;
    }
    .blog__card-img a {
        right: 0px;
    }
}

@media screen and (max-width: 550px) {
    .blog__content {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        align-items: stretch;
        gap: 0px;
    }
    .blog__card {
        width: calc(100% - 30px);
        margin: 0px 15px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    .blog__card-img img {
        max-width: 100%;
    }
    .blog__card-img a {
        right: 0px;
    }
}

.blog__wrapper .block > p {
    text-align: justify;
}

.price-accent {
    color: #4cc85a;
    font-weight: 700;
}

.product__price {
    position: absolute;
    top: 5%;
    right: 2%;

    @media (max-width: 479px) {
        font-size: 14px;
    }
}


.hero {
    margin-bottom: 20px;
    color: var(--main-color);

    .hero__wrap {
        padding: 26px 43px 8px 22px;
        display: grid;
        grid-template-areas:
            "a c"
            "b c";
        grid-template-columns: 1fr 135px;
        gap: 26px 32px;
        border-radius: 7px;
        border: 1px solid hsl(0 0 90);

        @media (width < 992px) {
            display: flex;
            flex-direction: column;
            row-gap: 5px;
            padding: 9px;
        }

        .hero__header {
            grid-area: a;

            .hero__title {
                line-height: normal;
                font-weight: 700;
                text-transform: uppercase;
            }
        }
        .hero__main {
            grid-area: b;
            font-weight: 300;

            .hero__list {
                --hero-list-font-size: 14px;

                list-style: outside '✓ ';
                columns: 2;
                column-gap: 16px;
                font-size: var(--hero-list-font-size);
                line-height: normal;

                @media (width < 992px) {
                    --hero-list-font-size: 12px;

                    columns: unset;
                    padding-left: 7px;
                }

                & > li {
                    margin-left: var(--hero-list-font-size);
                }
            }
        }
        .hero__footer {
            grid-area: c;

            .hero__img-wrap {
                max-width: 126px;
                width: fit-content;
                height: 103px;
                margin-inline: auto;

                @media (width < 992px) {
                    display: none;
                }

                & > img {
                    width: auto;
                    height: 100%;
                    object-fit: contain;
                }
            }
            .hero__btn.button {
                background-color: hsl(127 53 54);
                border: none;
                border-radius: unset;
                padding: 4px 13px !important;
                font-size: 14px;
                line-height: normal;

                @media (width < 992px) {
                    margin-inline: auto;
                }
            }
        }
    }
}


.faq {
    margin-bottom: 57px;

    .faq__title {
        width: 100%;
        text-align: center;
        color: #00388C;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1.2rem;
    }
    .faq__main {
        margin-top: 28px;
    }
    .faq__items-wrap {
        display: flex;
        flex-direction: column;
        row-gap: 14px;
    }
}
details.faq-item {
    padding-left: 40px;
    overflow: hidden;

    &::details-content {
        height: 0;
        transition-property: height, content-visibility;
        transition-duration: 0.3s;
        transition-timing-function: ease;
        transition-behavior: allow-discrete;
    }
    &[open]::details-content {
        height: auto;
        height: calc-size(auto, size);
    }

    & > summary {
        list-style: none;
        position: relative;

        &::before {
            content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxyZWN0IHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0idXJsKCNwYXR0ZXJuMF80MDcwXzQxMjQpIi8+CjxkZWZzPgo8cGF0dGVybiBpZD0icGF0dGVybjBfNDA3MF80MTI0IiBwYXR0ZXJuQ29udGVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgd2lkdGg9IjEiIGhlaWdodD0iMSI+Cjx1c2UgeGxpbms6aHJlZj0iI2ltYWdlMF80MDcwXzQxMjQiIHRyYW5zZm9ybT0ic2NhbGUoMC4wMDE5NTMxMikiLz4KPC9wYXR0ZXJuPgo8aW1hZ2UgaWQ9ImltYWdlMF80MDcwXzQxMjQiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bGluazpocmVmPSJkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQWdBQUFBSUFDQVlBQUFEMGVOVDZBQUFBQ1hCSVdYTUFBQTdEQUFBT3d3SEhiNmhrQUFBQUdYUkZXSFJUYjJaMGQyRnlaUUIzZDNjdWFXNXJjMk5oY0dVdWIzSm5tKzQ4R2dBQUd1MUpSRUZVZUp6dDNVMnNaT2RaSi9EbjNIdHBwKzMyakoxRWltYWt4R2xqYUNLakNFR2taSWtoc1ltaktNbFlZd25IWVVjRXMwbFE0Z3p4aklTRkdKaklTQ1MyaFZteGlCTkx1R1ZOQ0VON2xIVGliRUJJU1JBQ2VXUWo0clpibVVVTWpnMXVmM1pYdmJQbzI5MzMxSzJQYzZycWREM24zTjl2Z2Z2VVUxMGY0dUg5LzZuNzBSRUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBSkZKdCtnVUEzVHI2UUxsdWF4dzNsVEorVHhYVnNTamxuUkh4bGlqbHlPNWR6cFNJNXlQS3FSaFgvMWhWOGQyeWZmYnhwejkxK1BRR1h6YlFNUVVBQnVqWS9lWG9xTVFuU2lrZmo0aWZqbExxZDloelhTYXVJOHJ1amZGa0ZkWERvNjF6RHozelc0ZWY2ZmdsQTVlWkFnQURjdlNMNWQzYjFmaXpFZFVkSldJN0ltTEo4TDk0WFVxTUkrSkVGZFh2UHYzWlE5L3Q1cFVEbDVzQ0FBTnc5SXZsYmR0YmNXK1VjbWRFVkJjemZQWHdyLy9sVW4wbGZ1THNYYWMrZmVSSGEzdnh3RVlvQU5CelAzVmYrZFVTOGNkUnlqVVJleko4dmVHL2QvNUN4UGczVHQxMTVTTXJ2M2hnWXhRQTZLa2I3eW1IWG45elBCQVJ2MzRoclM5RCtPK2RQM2pWSzIvNjlCUDNWRzhzL1NhQWpWRUFvSWZlZlcrNTZwVXI0dEdJdUdWRDRSOFJFVldVYngwcWh6LzIxSCt0WGxybWZRQ2Jvd0JBenh6N1FybDZkR1Y4TTBxOGQ1UGh2MmYrTjFlOWV2Z0RUOXhUblduN1hvRE4yZHIwQ3dDYXUvR2VjbWgwT0k0bkN2K0lpUGU5Zk9XcmYzN0RmZVdLTnU4RjJDd0ZBSHBrOTJ2K0cvM1lmOW84eHVXWHpyN3l5aDgxZlIvQTV2a1NBUFRFRFY4cXQwY1ZmNVl1L0MvZVZDSkszUG5zNTQ5OHRkazdBalpKQVlBZTJQMDUveWN2NDQvNk5acFBoSDlFeEFzN08rVm5mbkRYMWM4MWVWL0E1dmdTQVBUQWRoVi8ySVB3ajRpNDl1eTU2Z3VMM2crd2VUNEJnT1J1ZUtEOGZJeks5Nks3My9DM3J2Qy9jRjIyU3ZWenAvN2JrYitmLzg2QVRmSUpBR1EzS25kSGY4SS9JcUlhVmVYdU9lOElTTUFuQUpEWXNmdkwwZEc0L0ZPNVVOYnpoLytGUnhwdmowZlhuL3J2MXo0Nys5MEJtK1FUQUVoc05JNWY2Mkg0UjVUWU9sZnQzRG43blFHYnBnQkFZaVhLSGVmLzBLdndqNGlJS3NySHA3OHJJQU5mQW9Da3J2OVNlVWNWNWRrK2h2K0ZXM2EyUjljOS9kdHZQajNsN1FFYjVoTUF5T3VYK3h6K1VTTE9qYlovY2YvYkFqSlFBQ0N0OFMvVUxuc1cvcnQvckw4SElBMEZBSktxb2pwMjhhS1A0WDkrZml5QWxCUUF5S3FVNjNmL2UrbW1pZXZrNFI4UjhaUDczeGlRZ1FJQVNWVVIxL1E2L0V0RWxMaG0rcnNETmswQmdLUktLVWN1L3ZuOERYdW4rY1Avdkt2M3ZURWdCUVVBOGpvVTBldndqNGh5eGY2M0JXU2dBRUJpUFEvL2lXc2dFd1VBa2hMK1FKY1VBTWhxRU9HdkJVQldDZ0NrSi95QjlWTUFJTFYraC8va2J6SUc4bEFBSUMzaEQzUkhBWUNzQmhIK1dnQmtwUUJBZXNJZldEOEZBRkxyZWZqckFKQ1dBZ0JwQ1grZ093b0FKRFdNOE5jQ0lDc0ZBTklUL3NENktRQ1FXcy9EWHdlQXRCUUFTS3YvNFMvL0lTOEZBTElhUlBpckFKQ1ZBZ0RwQ1g5Zy9SUUFTSzNuNGE4RFFGb0tBS1FsL0lIdUtBQ1ExRERDWHd1QXJCUUFTRS80QSt1bkFFQnFQUTkvSFFEU1VnQWdyZjZIdi95SHZCUUF5R29RNGE4Q1FGWUtBS1FuL0lIMVV3QWd0WjZIdnc0QWFTa0FrTllRd2w4RGdLd1VBTWhLK0FNZFVnQWdLZUVQZEVrQmdMUUdFUDU2QUtTbEFFQldnd2gvRFFDeVVnQWd2ZjZHdi9pSHZCUUFTRTM0QTkxUUFDQ3RBWVMvRmdCcEtRQ1ExU0RDWHdPQXJCUUFTRTc0QTExUUFDQXg0UTkwUlFHQXBBWVIvbm9BcEtVQVFGYURDSDhOQUxKU0FDQzkvb2EvK0llOEZBQklyZWZocndGQVdnb0FwQ1g4Z2U0b0FKRFZJTUpmQzRDc0ZBQklUdmdEWFZBQUlMSGVoNzhPQUdrcEFKQ1U4QWU2cEFCQVZvTUlmeTBBc2xJQUlEM2hENnlmQWdDcDlUdjhpdzRBYVNrQWtOWVF3bDhEZ0t3VUFNaEsrQU1kVWdBZ05lRVBkRU1CZ0xRR0VQNTZBS1NsQUVCaS9ROS9EUUN5VWdBZ0tlRVBkRWtCZ05TRVA5QU5CUURTR2tENDZ3R1FsZ0lBbWZVOC9Jc0dBR2twQUpDVjhBYzZwQUJBYXNJZjZJWUNBR2tOSVB6MUFFaExBWURNZWgvK0dnQmtwUUJBVnNJZjZKQUNBRWtKZjZCTENnQ2tOWUR3MXdNZ0xRVUFNdXQ1K1B0cEFNaExBWUNzaEQvUUlRVUFVaFArUURjVUFFaHJBT0d2QjBCYUNnQmsxdnZ3MXdBZ0t3VUFzaEwrUUljVUFFaEsrQU5kVWdBZ3JRR0VmMUVFSUNzRkFESVQva0JIRkFESWFnRGhyd0pBWGdvQXBDWDhnZTRvQUpCZG44UGZsd0VnTFFVQU1oUCtRRWNVQU1oSytBTWRVZ0FnTGVFUGRFY0JnS1FHRWY3S0FLU2xBRUJtd2gvb2lBSUFXUWwvb0VNS0FLVFYvL0JYQXlBdkJRQ3k2M1A0K3lRQTBsSUFJRFBoRDNSRUFZQ3NoRC9RSVFVQTBoTCtRSGNVQUVocUVPR3ZERUJhQ2dCa0pmeUJEaWtBa0pyd0I3cWhBRUJhL1E5L05RRHlVZ0Fnczc2SHYwOENJQzBGQUxJUy9rQ0hGQUJJVGZnRDNhZzIvUUxZdktNUGxPdTJ4bkZUS2VQM1ZGRWRpMUxlR1JGdmlWS09STVJQUkV3NzFNdkVGM2pMeEpuZmZuN3BwdW16UFkrMHdueHZvRjY2bnB6WFhrdmorZjZBTFJQWFUrY0xYa3Z2dzcvVW42dk1taldjejM2dDY5eVQzWHUwMlpNWmo3VjRweGZ2UWZNOW1aeVhzMVVWWjBxSjU2UEVxWEdVZjR5STcrN3NsTWRmUGY2QjA4R0JwZ0FjVU1mdUwwZEhKVDVSU3ZsNFJQeDB1ME5kK0F2Lzl2TkJoLy9rUEVmNFR6emx4QjZVOG1SVTFjTmJjZmFoMTc3MndXZUNBMGNCT0dDT2ZyRzhlN3NhZnphaXVxTkViRWRFeTBOZCtBdi85dk5CaC8rTXgwb2QvdlhyY1pRNFVVcjF1MmYvNHYzZkRRNE1CZUNBT1ByRjhyYnRyYmczU3JreklxcmxEbjNoTC96Ynp3Y2QvcFB6L29YLzVNWis1V3padWl1Ky92NGZCWU9uQUJ3QVAzVmYrZFVTOGNkUnlqVVJ5eDc2d2wvNHQ1OEwvMm5QbFRMODk4NWZxRXI1alRmKzRsY2VDUVpOQVJpd0crOHBoMTUvY3p3UUViKysycUhmUHR5Ri80eDVvME45bFhBWC9zdk1NNFYveE9LZDdURDg5MTQvZVBaTi8vYnBPSDc3RzhFZ0tRQUQ5ZTU3eTFXdlhCR1BSc1F0d3YvU3RmQmZkZy9hellYL3RPZnFWZmhmK00rM3ptMjkvckg0K2tkZUNnWkhBUmlnWTE4b1Y0K3VqRzlHaWZjSy8wdlh3bi9aUFdnM0YvN1RucXVYNFgvaGYvek51Y052K2tBY3YrbE1NQ2grRWREQTNIaFBPVFE2SE1lRmYvMWErQys3QiszbXduL2FjL1U2L0NNaTNyZno2bXQvSGg4OGNVVXdLQXJBd094K3pkL0gvbnV1aGYreWU5QnVMdnluUFZmdncvLzhIMHY1cGUydCtLTmdVSHdKWUVCdStGSzVQYXI0TStGLzZWcjRMN3NIN2ViQ2Y5cHpwZjl1LzlwMW1UTzdlRG1PTzBlUDNmclZZQkFVZ0lIWS9Ubi9KOE9QK2wyOGJuV296NXpQT0NnWHpSc2Q2cXNkMnNLLy9ieStzMHZzU2UybStUdTVhQSthNzhua2ZKMTdNdmxhWnQ5M2QyZGZHSjNiK1puNHhpM1BCYjNuU3dBRHNWM0ZId3IvUzlldER2V1o4eGtINWFKNW8wTjl0VU5iK0xlZjEzZDJpVDJwM1RSL0p4ZnRRZk05bVp5dmMwOG1YOHZzKys3WjJXdTNkODU5SVJnRW53QU13QTBQbEorUFVmbGUrQTEvdGY4ME90Um56bWNjbEl2bWpRNzExUTV0NGQ5K1h0L1pKZmFrZHRQOG5WeTBCODMzWkhLK3pqMlpmQzJ6N3p0bFo4dDJPZmR6Yi95ZmoveDkwR3MrQVJpQ1ViazdoSC90UDQwTzlabnpHUWZsb25talEzMjFRMXY0dDUvWGQzYUpQYW5kTkg4bkYrMUI4ejJabks5elR5WmZ5K3o3enRqWmFsVHQzQjMwbms4QWV1N1kvZVhvYUZ6K3FWd29jOEsvZGozelVKODVuM0ZRTHBvM090UlhPN1NGZi90NWZXY2I3TUdNeDFxODB3Y20vQzljalVkVmRYMmMrTkN6UVcvNUJLRG5SdVA0dFNMODV4L3FqZWN6RHNwRjgwYUgrbXFIdHZCdlA2L3ZiSU05bVBGWWkzZjZ3SVYvbEJKYlcyVjBaOUJyQ2tEUGxTaDNuUDlEbTBOOTNrRzUzTHpKUWJyN1NDdk01eDJVOWV2U2VqN2pvRncwYjNTb3IzWm9DLy8yOC9yT050aURHWSsxZUtjUFpQaWZ2eDVYSHc5NnpaY0FldXo2TDVWM1ZGR2VGZjcxNjlKNlB1T2dYRFJ2ZEtpdmRtZ0wvL2J6K3M0MjJJTVpqN1Y0cHc5dytPOGFuNHZyNHVTSFR3ZTk1Qk9BZnZ0bDRWKy9McTNuTXc3S1JmTkdoL3BxaDdid2J6K3Y3MnlEUFpqeFdJdDNXdmhIaWRqZWpsOE1la3NCNkxYeEw5UXVoWC9MK1l5RGN0RzgwYUcrMnFFdC9OdlA2enZiY0ErbVBOYmluVzYyQjgzMlpISyt6ajNaODFwait1emk1WUtkblRVdnBkVFBJSHBGQWVpeEtxcGpGeStFZjh2NW5JTnkzcnpSb2I3YW9TMzgyOC9yTzd2RW50UnVtcitUemZlZzdYeWRlN0xudGRhZmNOOTlsdzMvaUloU2xVdG5FTDJqQVBSWktkZnYvdmZTVFJQWDh3L0s1ZWExZzNTRlExdjR0NTNQQzlUNjlmNDlhRGNYL3RPZVMvaFB6cXNTUHhuMGxnTFFZMVhFTmNLLzdYemVRVGxuM3VoUVgrM1FGdjd0NS9XZFhXSlBhamZOMzhubWU5QjJ2czQ5MmZOYTYwKzQ3NzZyaG4rVUVxV0thNExlVWdCNnJKUnk1T0tmejkrd2R6cm5vRnh1WGp0SVZ6aTBoWC9iK2J4QXJWL3YzNE4yYytFLzdibUUvN1NkM0wzcDZxQzNGSUFCMkgrb3p6c29sNXZYRHRJVkRtM2gzM1krTDFEcjEvdjNvTjFjK0U5N0x1RS9iU2NuL2pkUFR5a0FQVlpGbk5sL3FNODdLSmViMXc3U0ZRNXQ0ZDkyUGk5UTY5Zjc5NkRkWFBoUGU2NGVobitwUGVHKys2NDkvRXQ1S2VndEJhREhSaEV2Q3Y5Rjh4a0g1YUo1bzBOOXRVTmIrTGVmMTNkMmlUMnAzVFIvSnhmdFFUMXI1KzNKNUh5ZGV6TDVXbWZmdDRQd2o0aDRNZWd0QmFESHFsS2V2blExNzZCY2JsNDdTRmM0dElWLzIvbThRSzFmbHhYbnduL2FjelVMLzJaN01qbGY1NTVNdnBiWjkrMG8vQ01pZmhEMGxnTFFaNlY2YXZjUGN3N0s1ZWExZzNTRlExdjR0NTNQQzlUNmRWbHhQdWp3THhQejJsK1p2NU9MOXFENW5rek8xN2tuazY5bDluMDdEUCtvSXA0S2VtdG4weStBRlZUajcwZkVuSU55ZDloeXZ1OGduWEZmNGIvL1d2anYzcnEyUGRtOVI1czltZkZZaTNkYStFL2J5WGw3TUk3eXZhQzNmQUxRWjl1amI4MCtLTTlmdDUwM09VaDNIMm1GK2J5RHNuNWRXczluSEpTTDVvME85ZFVPYmVIZmZsN2YyWVo3TU9XeEZ1OTBzejFvdGllVDgzWHV5WjdYR3RObkZ5OFg3T3lxNFIrbFJKd2RQeDcwbGdMUVkwOS82dkRwaUhqeS9KWHduM3RRenBzM090UlhPN1NGZi90NWZXZVgySlBhVGZOM3N2a2V0SjJ2YzAvMnZOYjZFKzY3NzJVSi82bzhFZCs1N1lkQmJ5a0FQVmRGOVhEOW9JeVlmNUJPbjljTzBoVU9iZUhmZGo0dlVPdlhaY1c1OEovMlhNSi8yazQyMm9OeDlkV2cxeFNBbmh0dG5YdW9sQmhmdW1YZVFUcDlMdnpuSGVxckhkckN2LzI4dnJOTDdFbnRwdms3Mlh3UDJzN1h1U2Q3WG12OUNmZmQ5N0tGZjhRb3FoMEZvT2NVZ0o1NzVyY09QeE1SajU2L21uZVFUcC9YRHRJVkRtM2gzM1krTDFEcjEyWEZ1ZkNmOWx6Q2Y5cE90dGlEUitMa2gwOEh2YVlBREVBWlY3OC81Zjk2aGIvd2IzU290emowUS9ndm1xOXpUeVplYTU3d0x4SFZId1M5cHdBTXdET2ZPL1IzVWFvdlg3cEYrTTg5U09jOGwvRGZmejM5dGE1elQzYnZzY3FlMUc2YXY1T0w5cUNldGZQMlpISyt6ajJaZksyejczdVp3eitpalA4MFRuNzBINExlVXdBRzRvMnpyMzhtb25xK2ZwQkd6RG9NRngrVXF4N3E4dzdLK3ZYTVEzM21mTVpCdVdqZTZGQmY3ZEFXL3UzbjlaMXRzQWRsWWw3N0svTjNjdEVlTk4rVHlmazY5MlR5dGN5KzcrVVAvL0xqT0RUNmZEQUlDc0JBL0wrNy85M3pVVWEvS2Z6bkhhU3puMHY0NzcrZS9sclh1U2U3OTJpekp6TWVhL0ZPQy85cE85bDZENnJxay9IWTdmOGNESUlDTUNDblBuZmw4WWg0OFB6VjlNTnc4VUc1NnFFKzc2Q3NYNWZXOHhrSDVhSjVvME45dFVOYitMZWZSeXp4c2YrVXgxcTgwODMySUZYNHgvVFp4Y3NGTzl0SitKZnEvamo1c1VlRHdWQUFCdVl0Ly81Tm40b1Nqd2wvNFQrNDhOODdyOTAwZnllYjcwSGIrVHIzWk05cnJUL2h2dnR1NlAvelB4SC8rdHhuZ2tHcE52MENXTDhiN3lsSFhqNzg2amNqNG4wWERzUEZCK1dxaDNxemcxVDR4Nzc1cGIrNi9GejRUM3N1NGIrVzhJL3kxN0Y5NU9iNHhpMHZCNE9pQUF6VTIrNHRWeDBldjNJOFNueHc4VUc1NnFIZTdDQVYvckZ2ZnVtdkxqOFgvdE9lcTRmaHYySzRkeFArMWNsNGJlcy94Vjk5NUtWZ2NId0pZS0IrZEZmMThsV3ZYdm5SRXZIZy9JTnkxVU85MlVFcS9HUGYvTkpmWFg0KzZQQXZFL1BhWDVtL2s0djJvTlRlNnJ3OW1aeXZjMDhtWCt2cysyN3NhLzR2UG5lcjhCOHVud0FjQU8vNG55L2RYcFhxVHlMaTJ2VWU2dk1PeXZyMS9uQmZOSjl4VUM2YU56clVWenUwaFgvN2VTd1QvbE1lYTlHOHlSNDAzNVBKK1RyM1pQSzFMQi91SFlUL2o2T3FQdWtiL29iUEp3QUh3T25mdnZxUjBSV2pHNm9vOThXZWZ6ZEErTysvRnY2N3QyNHkvT3N2ZEszaDMrVDZzbi9OUDAvNGw0aDRLTGJqWGNML1lQQUp3QUh6OXYveDBzOXVWZVZ6SmVLT0tMRjlhU0w4aGYvdXJac08vNzN6TllkL3FvLzk2MCs0eWZBZlI4U0pHSTkvSjc1OTI5OEdCNFlDY0VBZC9iMFhyaHR2N1h5aWxISkhSSG1YOEJmK3duL2FmTURoWDVVblNtdzlIR1g3Sy81aG40TkpBU0QrNCs4OS8vYWRhdWVtaUhoUEtlVllqT09kVWNWYkkrSklSRGtrL0lWLzUrRS80N0hXRWY3TGw0T093bi9GY0c4Wi9tOUVLV2NpNGw4aTRsUVY4ZFM0eFBmajNPamI4WjNiZmhnY2FBb0FKUFhtLy9KL2E2ZCtYOFAvekpmZjY1eUJoSHdUSUdUWDQvQUg4bElBSUxPK2g3OE9BR2twQUpDVjhBYzZwQUJBVXNNSWZ5MEFzbElBSUR2aEQzUkFBWURNK2g3K09nQ2twUUJBVmdNSWYva1BlU2tBMEFlOURYOFZBTEpTQUNDN1BvZS8vSWUwRkFESVRQZ0RIVkVBSUN2aEQzUklBWUNrZWh2K3M5OEZrSWdDQU5uMUxmejN6dVUvcEtVQVFHYkNIK2lJQWdCWkRTRDhkUURJU3dHQVB1aHQrS3NBa0pVQ0FObjFPZnpsUDZTbEFFQm13aC9vaUFJQVdRbC9vRU1LQUNUVy8vRFhCQ0NyblUyL0FHQzZsT0UvNDdFV3pZRjhmQUlBbVFsL29DTUtBR1ExaVBEWEFpQXJCUURTUy9BMS95bVAxU1Q4eFQva3BRQkFhZ25DZisrOGJmaHJBSkNXQWdCcENYK2dPd29BWkRXSThOY0NJQ3NGQUpJVC9rQVhGQUJJclBmaHJ3TkFXZ29BSkNYOGdTNHBBSkRWSU1KZkM0Q3NGQUJJcjcvaEwvNGhMd1VBVXV0NStHc0FrSlovREFqUzZqajhaenlXOEllRHdTY0FrTlVnd2w4TGdLd1VBRWhPK0FOZFVBQWdzWFQvc0UrRDU1cCtEV1NqQUVCU2ZmcUd2NGlZODFxQWpCUUF5R29RNGE4RlFGWUtBS1FuL0lIMVV3QWd0WDZIZjlFQklDMEZBTklTL2tCM0ZBRElhaERocndWQVZuNFRJS1NYSi95WEtnZEFTajRCZ05SNkh2NDZBS1RsRXdCSUsvbHYrR3NVL2hvQVpPVVRBRWhLK0FOZFVnQWdOZUVQZEVNQmdMUWFmczEvNy8zWEdQNU5yaGVHdng0QWFTa0FrTm1pOE44N1gzUDR0LzVSdnluaFh6UUFTRXNCZ0t5RVA5QWhCUUJTRS81QU54UUFTR3NBNGE4SFFGb0tBR1RXKy9EWEFDQXJCUUN5RXY1QWh4UUFTRXI0QTEzeXE0QWhyVzdEZi9seTBDTDg5UUJJU3dHQXJHYUVlNS9DMzA4RFFGNitCQURwQ1g5Zy9SUUFTRTM0QTkxUUFDQ3Q5WVovayt1MWg3OGVBR2twQUpEVm1zTy84Ky8yWHpRSFVsRUFJREhoRDNSRkFZQ2toRC9RSlFVQTBocEErT3NCa0pZQ0FGa05JdncxQU1oS0FZRDAraHYrNGgveVVnQWd0WjZIdndZQWFmbFZ3SkJXdS9CZnZoeDBHZjRhQUdUbEV3RElTdmdESFZJQUlEWGhEM1JEQVlDMEJoRCtlZ0NrcFFCQVVzTUlmdzBBc2xJQUlLc0Y0WjRxL0dQNkRNaExBWURVMm9UN29ubUg0VitFUC9TTkFnQnA5VC84aXg0QWFTa0FrRm52dzE4RGdLd1VBTWhLK0FNZFVnQWdOZUVQZE1PdkFvYTBFb2Ivak5uRnk2bHpJQ01GQUpLcVoybGZ3MThEZ0t4OENRQ3lFdjVBaHhRQVNFMzRBOTFRQUNDdC9vZS8zd01BZVNrQWtGbnZ3MThEZ0t3VUFNaHFrK0VmMDJjWEw0VS85SjRDQUtsdEtQemIvSnkvOElkZVVnQWdyUUdFdng0QWFTa0FrRmovdzE4RGdLd1VBRWhLK0FOZFVnQWdOZUVQZEVNQmdMUUdFUDUrRVFDazVkOENnTXk2RFA4Vnc3MUorSXQveU1zbkFKQ1Y4QWM2cEFCQVd1V05TMy9zYmZpL3Z1OXRBU2tvQUpCVUZYRW1Jdm9jL2hHbHZEVGxyUUVKS0FDUVZJbDRzZWZoSHhIeDRyVDNCbXllQWdCWmphdW5leDcrRVJFL21IeGJRQTRLQUNRMXJzWlBYYnhZSmZ4ait1emlaWGZoSDFYRVV3R2twQUJBV3RYM0kyTDE4Ty80NS94bmhYOUV4RGpLOXdKSVNRR0FwSFoyeHQvcWMvaEhLUkZueDQ5UHZpOGdCd1VBa25yMStBZE9SeWxQWHJ5aGIrRmZsU2ZpTzdmOWNNcGJBeEpRQUNDenFubzRJdm9YL2hGUnh0VlhwNzBsSUFjRkFCTGJpck1QUllseHErLzJ6eEQrRWFPb2RoUUFTRXdCZ01SZSs5b0hueWxWZWZUaURZdkNmMFBmN2IvM2V2ZldSK0xraDA5UGYxZEFCZ29BNVBmN1VVLzU4L0tHZjRtby9tRGVHd0kyVHdHQTVNNSs3ZWEvaXhKZjdrbjRSNVR4bjhiSmovN0QzRGNGYkp3Q0FEMXdkbnZyTXhIeGZFVHMvNGEvVk9GZmZoeUhScCtmLzI2QURCUUE2SVAvOWY3bnE2aCtNK1YzKysrOXJxcFB4bU8zLzNPRGR3UnNtQUlBUGZIRzEyOCtIbEVlVEJ2K3Biby9UbjdzMFFCNlFRR0FIam43SDk3NnFZaDRMRjM0VjlXSitOZm5QdFA4blFDYlZtMzZCUUF0L2VmSGoreTgrdG8zSStKOUtjSS95bC9IOXBHYjR4dTN2Tno2dlFBYjR4TUE2SnZqTjUwNTk4YlcreU9xeHpZZi90WEplRzNuVjRRLzlJOENBSDMwalZ0ZVBuZjQzejVhSWg2TTJPRFgvRjk4N3RiNHE0Kzh0UHdiQVRiRmx3Q2c1N1p2L2N2YkkrSlBJdUxhaUxnOFArcFhWWi8wRFgvUWJ6NEJnSjRibmZqUUk2UFI5ZzFWeEgxUll0eGgrSmVJZUNpMjQxM0NIL3JQSndBd0lJYys5TDkvZGpRcW40dXF1cU9VMkY1VCtJOGo0a1NNeDc4VDM3N3RiN3Q1NWNEbHBnREFFTjM2bDlkdGpjZWZpQkozUkJYdldpcjhxL0pFaWEySG8yeC94VC9zQThPakFNRFEzZnkxdDI5WDJ6ZVZxcnluUkJ5clNubG5LZFZiSThxUmlJZ281VXhFL0V0RW5Lb2luaHFYK0g2Y0czMDd2blBiRHpmNnVnRUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBRG83L0Q3b0l6N2tOMzBCbEFBQUFBRWxGVGtTdVFtQ0MiLz4KPC9kZWZzPgo8L3N2Zz4K);
            display: block;
            width: 40px;
            height: 40px;
            position: absolute;
            top: 0;
            left: -40px;
            transition: rotate 0.3s ease;
        }
        &::-webkit-details-marker {
            display: none;
        }

        .faq-item__question {
            font-size: 20px;
            line-height: 40px;
            font-weight: 700;
            user-select: none;
            -webkit-user-select: none;
        }
    }
    .faq-item__answer {
        font-size: 16px;
        line-height: 28px;
    }
    &[open] > summary::before {
        rotate: 45deg;
    }
}

.category__attention--block + .category__description--block {
    margin-top: 27px;
}


.document-files {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    font-size: 15px;
    line-height: 22px;

    .document-files__group-header {
        margin-bottom: 15px;

        .document-files__group-title {
            font-weight: 700;
        }
    }
    .document-files__group-main {
        display: flex;
        flex-direction: column;
        row-gap: 5px;

        .document-files__item-link {
            color: #000;
        }
    }
}


.bold {
    font-weight: 700;
}
.bta-mt-18px {
    margin-top: 18px;
}


.max-fixed-link {
    --max-fixed-link-size: 56px;

    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9999;
    display: block;
    line-height: 0;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgb(0 0 0 / 0.2);
    transition-property: transform, box-shadow;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    animation: max-float 3s ease-in-out infinite;

    @media (hover: hover) {
        &:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 16px rgb(0 0 0 / 0.25);
            animation: none;
        }
    }
    @media (width <= 480px) {
        --max-fixed-link-size: 48px;

        right: 16px;
        bottom: 16px;
    }

    &::before, &::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: var(--max-fixed-link-size);
        height: var(--max-fixed-link-size);
        margin-left: calc(-0.5 * var(--max-fixed-link-size));
        margin-top: calc(-0.5 * var(--max-fixed-link-size));
        border-radius: 50%;
        border: 2px solid rgb(100 120 240 / 0.55);
        box-shadow: 0 0 12px rgb(83 78 238 / 0.25);
        opacity: 0;
        pointer-events: none;
        animation: max-ripple 2.5s ease-out infinite;
    }
    &::after {
        animation-delay: 1.25s;
    }

    .max-fixed-link__icon {
        display: block;
        width: var(--max-fixed-link-size);
        height: var(--max-fixed-link-size);
    }
}
@keyframes max-float {
    0%, 100% {transform: translateY(0)}
    50% {transform: translateY(-6px)}
}
@keyframes max-ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}
