body, html {
    height: 100%
}

body {
    display: flex;
    flex-direction: column
}

.wrapper {
    flex: 1 0 auto
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px
}

.container.wide {
    max-width: 1126px
}

.container.default {
    max-width: 966px
}

.container.narrow {
    max-width: 800px
}

@media only screen and (max-width: 640px) {
    .container {
        padding: 0 16px
    }
}

.site-header {
    position: relative;
    z-index: 3
}

.site-header.default .site-nav .nav-list > li .nav-item {
    color: var(--header_link_color, var(--body_titles_color))
}

.site-header.default .site-nav .nav-list > li .nav-item:focus, .site-header.default .site-nav .nav-list > li .nav-item:hover {
    color: var(--header_link_color_hover, var(--adm_active_color_theme))
}

.site-header.default .hidden-btns .burger_btn .svg-icons {
    color: var(--header_link_color, var(--body_titles_color))
}

.site-header.default .hidden-btns .burger_btn.active {
    color: var(--header_link_color_hover, var(--adm_active_color_theme))
}

.site-header.secondary .hidden-btns .burger_btn .svg-icons {
    color: var(--header_link_color)
}

.site-header.secondary .hidden-btns .burger_btn.active {
    color: var(--header_link_hover_color)
}

@media only screen and (min-width: 768px) {
    .site-header.secondary .site-nav .nav-list > li .nav-item {
        color: var(--header_secondary_link_color)
    }

    .site-header.secondary .site-nav .nav-list > li .nav-item:focus, .site-header.secondary .site-nav .nav-list > li .nav-item:hover {
        color: var(--header_secondary_link_color_hover)
    }
}

@media only screen and (max-width: 767.9px) {
    .site-header.secondary .site-nav .nav-list > li .nav-item {
        color: var(--header_link_color, var(--body_titles_color))
    }

    .site-header.secondary .site-nav .nav-list > li .nav-item:focus, .site-header.secondary .site-nav .nav-list > li .nav-item:hover {
        color: var(--header_link_color_hover, var(--adm_active_color_theme))
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px
}

.header-content .site-logo {
    display: inline-flex
}

.header-content .right-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding-left: 60px
}

.header-content .site-nav {
    flex: 1;
    justify-content: flex-end
}

.header-content .site-nav, .header-content .site-nav .nav-list {
    display: flex;
    align-items: center
}

@media only screen and (min-width: 768px) {
    .header-content .site-nav .nav-list {
        margin-right: -10px
    }
}

.header-content .site-nav .nav-list > li {
    display: flex;
    align-items: center;
    margin: 0 15px
}

.header-content .site-nav .nav-list > li:first-child {
    margin-left: 0
}

.header-content .site-nav .nav-list > li:last-of-type {
    margin-right: 0
}

.header-content .site-nav .nav-list > li .nav-item {
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    font-size: 16px
}

.header-content .hidden-btns {
    display: none
}

@media only screen and (max-width: 1024px) {
    .header-content .site-nav .nav-list > li {
        margin: 0 8px
    }

    .header-content .site-nav .nav-list > li:first-child {
        margin-left: 0
    }

    .header-content .site-nav .nav-list > li:last-of-type {
        margin-right: 0
    }
}

@media only screen and (max-width: 767.9px) {
    .header-content {
        height: 60px
    }

    .header-content .site-logo img {
        height: 36px
    }

    .header-content .right-part {
        position: relative;
        padding-left: 40px
    }

    .header-content .site-nav {
        display: none;
        position: absolute
    }

    .header-content .site-nav.show {
        display: block;
        top: 100%;
        right: -15px;
        z-index: 4;
        padding: 0 16px;
        background-color: #fff;
        width: 320px;
        border-top: 1px solid #e6e9ee;
        border-bottom: 1px solid #e6e9ee;
        border-left: 1px solid #e6e9ee;
        border-radius: 0 0 0 4px;
        box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
        height: auto
    }

    .header-content .site-nav .nav-list {
        flex-direction: column;
        align-items: flex-end
    }

    .header-content .site-nav .nav-list > li {
        justify-content: flex-end;
        width: 100%;
        margin: 0;
        border-top: 1px solid #e6e9ee
    }

    .header-content .site-nav .nav-list > li:first-child {
        border-top: none
    }

    .header-content .site-nav .nav-list > li .nav-item {
        padding: 10px 0
    }

    .header-content .hidden-btns {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: flex-end
    }

    .header-content .hidden-btns > div {
        margin-right: 10px
    }

    .header-content .hidden-btns > div:last-of-type {
        margin: 0
    }

    .header-content .hidden-btns .burger_btn {
        display: inline-flex;
        align-items: center
    }

    .header-content .hidden-btns .burger_btn .svg-icons {
        font-size: 25px
    }
}

@media only screen and (max-width: 767.9px) {
    .site-header {
        position: relative
    }

    .header-content .right-part {
        position: static;
        justify-content: flex-end
    }

    .header-content .right-part .site-nav.show {
        right: 0
    }
}

@media only screen and (max-width: 414px) {
    .header-content .site-nav.show {
        left: 0;
        right: 0;
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0
    }
}

@media only screen and (max-width: 1023.9px) {
    .dropdown .dropdown-content {
        display: none !important
    }

    .dropdown.show .dropdown-content {
        display: block !important
    }
}

.site-footer {
    padding: 40px 0;
    background: var(--footer_background)
}

.site-footer .footer_content {
    display: flex
}

.site-footer .footer_content .copyright, .site-footer .footer_content .descr {
    font-size: 14px;
    line-height: 1.71;
    color: var(--footer_text_color)
}

.site-footer .footer_content .footer-list {
    display: flex;
    flex-wrap: wrap
}

.site-footer .footer_content .footer-list > li {
    margin-right: 50px;
    line-height: 1;
    font-size: 0
}

.site-footer .footer_content .footer-list > li:last-of-type {
    margin: 0
}

.site-footer .footer_content .footer-list > li .item {
    font-size: 16px;
    line-height: 1.5;
    color: var(--footer_link_color)
}

.site-footer .footer_content .footer-list > li .item:focus, .site-footer .footer_content .footer-list > li .item:hover {
    color: var(--footer_link_hover_color)
}

.site-footer.type-1 .footer_content {
    flex-direction: column
}

.site-footer.type-1 .footer_content .top-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start
}

.site-footer.type-1 .footer_content .top-part .descr {
    max-width: 412px;
    width: 100%;
    margin-right: 40px
}

.site-footer.type-1 .footer_content .top-part .footer-list_container {
    display: flex;
    justify-content: flex-end;
    flex: 1
}

.site-footer.type-1 .footer_content .top-part .footer-list_container .footer-list {
    justify-content: center
}

.site-footer.type-1 .footer_content .top-part .footer-list_container .footer-list > li {
    margin-bottom: 10px
}

.site-footer.type-1 .copyright {
    width: 100%;
    margin-top: 13px
}

.site-footer.type-2 .footer_content {
    flex-direction: column;
    text-align: center
}

.site-footer.type-2 .footer_content .top-part {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.site-footer.type-2 .footer_content .top-part .footer-list {
    justify-content: center;
    margin-bottom: 24px
}

.site-footer.type-3 .footer_content {
    flex-wrap: wrap
}

.site-footer.type-3 .footer_content .top-part {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px
}

.site-footer.type-3 .footer_content .top-part .descr {
    max-width: 807px;
    width: 100%
}

.site-footer.type-3 .footer_content .top-part .copyright {
    min-width: 240px;
    width: 240px;
    margin-left: 50px;
    text-align: right
}

.site-footer.type-3 .footer_content .footer-list {
    width: 100%
}

@media only screen and (max-width: 767.9px) {
    .site-footer {
        padding: 20px 0
    }

    .site-footer.type-1 .footer_content .top-part, .site-footer.type-2 .footer_content .top-part {
        flex-direction: column
    }

    .site-footer.type-1 .footer_content .top-part .descr, .site-footer.type-2 .footer_content .top-part .descr {
        max-width: 100%;
        width: 100%;
        margin: 0 0 12px
    }

    .site-footer.type-1 .footer_content .top-part .footer-list, .site-footer.type-2 .footer_content .top-part .footer-list {
        display: block;
        column-count: 2;
        column-gap: 30px
    }

    .site-footer.type-1 .footer_content .top-part .footer-list > li, .site-footer.type-2 .footer_content .top-part .footer-list > li {
        margin-right: 0;
        margin-bottom: 5px
    }

    .site-footer.type-1 .footer_content .top-part .footer-list > li:last-of-type, .site-footer.type-2 .footer_content .top-part .footer-list > li:last-of-type {
        margin-bottom: 0
    }

    .site-footer.type-3 .footer_content {
        flex-direction: column-reverse
    }

    .site-footer.type-3 .footer_content .top-part {
        flex-wrap: wrap;
        margin: 16px 0 0
    }

    .site-footer.type-3 .footer_content .top-part .copyright {
        min-width: unset;
        width: auto;
        margin: 12px 0 0
    }

    .site-footer.type-3 .footer_content .footer-list {
        display: block;
        column-count: 2;
        column-gap: 30px
    }

    .site-footer.type-3 .footer_content .footer-list > li {
        margin: 0;
        margin-bottom: 5px
    }

    .site-footer.type-3 .footer_content .footer-list > li:last-of-type {
        margin: 0
    }
}

@media only screen and (max-width: 414px) {
    .site-footer.type-1 .footer_content .top-part .footer-list, .site-footer.type-2 .footer_content .top-part .footer-list, .site-footer.type-3 .footer_content .footer-list {
        column-count: 1
    }
}

.promo_section.type-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    margin-bottom: 30px;
    height: 780px
}

.promo_section.type-1 .container {
    position: relative;
    z-index: 2
}

.promo_section.type-1 .section_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 740px;
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.promo_section.type-1 .section_content .page_title {
    margin: 0 0 12px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--main_header_title_color)
}

.promo_section.type-1 .section_content .descr {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: var(--main_header_title_color);
}

.promo_section.type-1 .section_content .simple-btn {
    background: var(--main_header_but_background);
    color: var(--main_header_but_text_color);
    margin-top: 24px;
}

.promo_section.type-1 .section_content .simple-btn:focus, .promo_section.type-1 .section_content .simple-btn:hover {
    background: var(--main_header_but_hover_background);
    color: var(--main_header_but_hover_text_color)
}

.promo_section.type-1 .page_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1
}

.promo_section.type-1 .page_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media only screen and (max-width: 767.9px) {
    .promo_section.type-1 .section_content .page_title {
        font-size: 54px
    }
}

.promo_section.type-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 90px
}

.promo_section.type-2 .section_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.promo_section.type-2 .section_content .page_title {
    margin: 0 0 12px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--main_header_title_color)
}

.promo_section.type-2 .section_content .descr {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    color: var(--main_header_title_color);
}

.promo_section.type-2 .section_content .simple-btn {
    background: var(--main_header_but_background);
    color: var(--main_header_but_text_color);
    margin-top: 24px;
}

.promo_section.type-2 .section_content .simple-btn:focus, .promo_section.type-2 .section_content .simple-btn:hover {
    background: var(--main_header_but_hover_background);
    color: var(--main_header_but_hover_text_color)
}

@media only screen and (max-width: 767.9px) {
    .promo_section.type-2 {
        padding-top: 100px
    }

    .promo_section.type-2 .section_content .page_title {
        font-size: 54px
    }
}

.promo_section.type-3 {
    justify-content: center;
    padding: 50px 0 30px
}

.promo_section.type-3, .promo_section.type-3 .section_content {
    display: flex;
    align-items: center
}

.promo_section.type-3 .section_content .one-half {
    max-width: 423px;
    width: 100%
}

.promo_section.type-3 .section_content .img-container {
    flex: 1;
    margin-left: 20px;
    text-align: right
}

.promo_section.type-3 .section_content .img-container img {
    max-width: 100%
}

.promo_section.type-3 .page_title {
    margin: 0 0 16px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.17;
    color: var(--main_header_title_color)
}

.promo_section.type-3 .descr {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.4;
    color: var(--main_header_title_color)
}

.promo_section.type-3 .simple-btn {
    background: var(--main_header_but_background);
    color: var(--main_header_but_text_color)
}

.promo_section.type-3 .simple-btn:focus, .promo_section.type-3 .simple-btn:hover {
    background: var(--main_header_but_hover_background);
    color: var(--main_header_but_hover_text_color)
}

@media only screen and (max-width: 1024px) {
    .promo_section.type-3 .section_content {
        flex-direction: column
    }

    .promo_section.type-3 .section_content .one-half {
        max-width: 100%;
        width: 100%;
        text-align: center
    }

    .promo_section.type-3 .section_content .img-container {
        width: 100%;
        margin: 20px 0 0;
        text-align: center
    }
}

@media only screen and (max-width: 767.9px) {
    .promo_section.type-3 .section_content .page_title {
        font-size: 54px
    }
}

.text-section h2, .text-styles h2 {
    margin: 20px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_titles_color,#181a1b)
}

.text-section p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}

.text-section p:first-of-type {
    margin-top: 0
}

.text-section.title-centered h2, .text-section.title-centered h3 {
    text-align: center
}

.text-section.type-2 {
    background: var(--body_text_color_background)
}

.text-section.type-2 h2, .text-section.type-2 h3 {
    color: var(--body_alternative_titles_color)
}

.text-section.type-2 p {
    color: var(--body_alternative_text_color)
}

.text-section.type-3 .text-block h2 {
    margin: 0 0 30px
}

.text-section.type-3 .text-billets_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px
}

.text-section.type-3 .text-billets_list > li {
    width: 50%;
    padding: 15px
}

@media only screen and (max-width: 767.9px) {
    .text-section.type-3 .text-billets_list {
        width: 100%;
        margin: 0
    }

    .text-section.type-3 .text-billets_list > li {
        width: 100%;
        margin-bottom: 20px;
        padding: 0
    }

    .text-section.type-3 .text-billets_list > li:last-of-type {
        margin: 0
    }
}

.text-section.type-4 .text-block h2 {
    margin: 0 0 30px
}

.text-section.type-4 .text-billets_list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 32px);
    margin: -15px
}

.text-section.type-4 .text-billets_list > li {
    width: 33.333%;
    padding: 16px
}

@media only screen and (max-width: 767.9px) {
    .text-section.type-4 .text-billets_list {
        width: 100%;
        margin: 0
    }

    .text-section.type-4 .text-billets_list > li {
        width: 100%;
        margin-bottom: 20px;
        padding: 0
    }

    .text-section.type-4 .text-billets_list > li:last-of-type {
        margin: 0
    }
}

.text-section.type-5.first .features > li, .text-section.type-5.third .features > li {
    line-height: 1;
    font-size: 0
}

.text-section.type-5.first .features .item, .text-section.type-5.third .features .item {
    position: relative
}

.text-section.type-5.first .features .item .icon, .text-section.type-5.third .features .item .icon {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--body_button_background)
}

.text-section.type-5.first .features .item .icon .svg-icons, .text-section.type-5.third .features .item .icon .svg-icons {
    font-size: 10px;
    color: var(--body_button_text_color)
}

.text-section.type-5.first .features .item .value, .text-section.type-5.third:not(.style-2) .features .item .value {
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color);
}

.text-section.type-5.first .descr, .text-section.type-5.third .descr {
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}

.text-section.type-5.first .text-block, .text-section.type-5.second .text-block {
    display: flex;
    align-items: center
}

.text-section.type-5.first .text-block h2, .text-section.type-5.second .text-block h2 {
    color: var(--body_titles_color)
}

.text-section.type-5.first .img-container img, .text-section.type-5.second .img-container img {
    max-width: 100%
}

.text-section.type-5.first .info-block, .text-section.type-5.second .info-block {
    flex: 1;
    padding-left: 30px;
    min-width: 439px
}

.text-section.type-5.first .features .value, .text-section.type-5.second .features .value, .text-section.type-5.third.style-2 .features .value {
    line-height: 1.63;
    color: var(--body_text_color);
}

.text-section.type-5.first .text-block h2 {
    margin: 0 0 12px
}

.text-section.type-5.first .features {
    display: inline-block;
    column-count: 2;
    margin-top: 21px
}

.text-section.type-5.first .features > li {
    margin-bottom: 9px
}

.text-section.type-5.second .text-block h2 {
    margin: 0 0 30px
}

.text-section.type-5.second .features > li {
    margin-bottom: 16px;
    line-height: 1;
    font-size: 0
}

.text-section.type-5.second .features > li:last-of-type {
    margin: 0
}

.text-section.type-5.second .features > li .item, .text-section.type-5.third.style-2 .features > li .item {
    padding-left: 13px;
    border-left: 2px solid var(--body_button_background);
    font-size: 16px;
}

.text-section.type-5.third .text-block {
    display: flex
}

.text-section.type-5.third .text-block .img-container {
    max-width: 448px;
    width: 100%
}

.text-section.type-5.third .text-block .img-container h2 {
    margin-bottom: 8px
}

.text-section.type-5.third .text-block .info-block {
    flex: 1;
    padding-left: 30px
}

.text-section.type-5.third .text-block .features > li {
    margin-bottom: 12px
}

.text-section.type-5.third .text-block .features > li:last-of-type {
    margin: 0
}

@media only screen and (max-width: 1024px) {
    .text-section.type-5.first .text-block, .text-section.type-5.second .text-block, .text-section.type-5.third .text-block {
        flex-direction: column
    }

    .text-section.type-5.first .text-block .img-container, .text-section.type-5.second .text-block .img-container, .text-section.type-5.third .text-block .img-container {
        max-width: 100%;
        margin-bottom: 10px
    }

    .text-section.type-5.first .text-block .info-block, .text-section.type-5.second .text-block .info-block, .text-section.type-5.third .text-block .info-block {
        width: 100%;
        min-width: unset;
        padding-left: 0
    }

    .text-section.type-5.third .text-block .img-container {
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 767.9px) {
    .text-section.type-5.first .features {
        column-count: 1
    }

    .text-section.type-5.second .text-block h2 {
        margin-bottom: 24px
    }
}

.text-section.type-6 .text-block h2 {
    margin-bottom: 30px
}

.text-section.type-6 .features {
    column-count: 2;
    column-gap: 50px;
    margin-bottom: -12px
}

.text-section.type-6 .features > li {
    margin: 0 0 12px;
    line-height: 1;
    font-size: 0;
    break-inside: avoid
}

.text-section.type-6 .features .item {
    position: relative
}

.text-section.type-6 .features .item .icon {
    position: absolute;
    left: 0;
    top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: var(--body_button_background)
}

.text-section.type-6 .features .item .icon .svg-icons {
    font-size: 10px;
    color: var(--body_button_text_color)
}

.text-section.type-6 .features .item .value {
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}

@media only screen and (max-width: 767.9px) {
    .text-section.type-6 .features {
        column-count: 1;
        margin: 0
    }

    .text-section.type-6 .features > li:last-of-type {
        margin: 0
    }
}

.text-section.bg {
    background: var(--body_text_color_background)
}

.text-section.bg h2, .text-section.bg h3 {
    color: var(--body_alternative_titles_color)
}

.text-section.bg p {
    color: var(--body_alternative_text_color)
}

.invoice_section h2 {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_titles_color)
}

.invoice_section.type-1 .invoice-billet, .invoice_section.type-2 .invoice-billet {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden
}

.invoice_section.type-1 .invoice-billet:before, .invoice_section.type-2 .invoice-billet:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(14, 15, 22, .42);
    border-radius: 6px;
    z-index: 1
}

.invoice_section.type-1 .invoice-billet .invoice-image, .invoice_section.type-2 .invoice-billet .invoice-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.invoice_section.type-1 .invoice-billet .links-list, .invoice_section.type-2 .invoice-billet .links-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2
}

.invoice_section.type-1 .invoice-billet .links-list > li, .invoice_section.type-2 .invoice-billet .links-list > li {
    margin-bottom: 20px
}

.invoice_section.type-1 .invoice-billet .links-list > li:first-of-type a, .invoice_section.type-2 .invoice-billet .links-list > li:first-of-type a {
    color: var(--body_button_text_color)
}

.invoice_section.type-1 .invoice-billet .links-list > li:last-of-type, .invoice_section.type-2 .invoice-billet .links-list > li:last-of-type {
    margin: 0
}

.invoice_section.type-1 .invoice-billet .links-list > li .simple-btn, .invoice_section.type-1 .invoice-billet .links-list > li a, .invoice_section.type-2 .invoice-billet .links-list > li .simple-btn, .invoice_section.type-2 .invoice-billet .links-list > li a {
    font-size: 20px
}

.invoice_section.type-1 .invoice-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px
}

.invoice_section.type-1 .invoice-list > li {
    width: 50%;
    padding: 15px
}

.invoice_section.type-1 .invoice-billet, .invoice_section.type-2 .invoice-billet {
    height: 580px
}

.invoice_section.type-3 .invoice-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin: -15px
}

.invoice_section.type-3 .invoice-list > li {
    width: 33.333%;
    padding: 15px
}

.invoice_section.type-3 .invoice-billet .title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    color: var(--body_titles_color);
    text-align: center;
}

.invoice_section.type-3 .invoice-billet .img-container {
    font-size: 0
}

.invoice_section.type-3 .invoice-billet .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 28px 0 rgba(35, 79, 150, .16)
}

.invoice_section.type-4 .invoice_block {
    display: flex;
    align-items: center
}

.invoice_section.type-4 .invoice_block .img-container {
    max-width: 100%;
    flex: 1
}

.invoice_section.type-4 .invoice_block .img-container img {
    max-width: 100%
}

.invoice_section.type-4 .invoice_block .text-part {
    padding-right: 30px;
    min-width: 439px;
    width: 439px
}

.invoice_section.type-4 .invoice_block .text-part h2 {
    margin-bottom: 12px;
    color: var(--body_titles_color)
}

.invoice_section.type-4 .invoice_block .text-part .descr {
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}

.invoice_section.type-4 .invoice_block .text-part .simple-btn {
    margin-top: 24px
}

@media only screen and (max-width: 1023.9px) {
    .invoice_section.type-4 .invoice_block {
        flex-direction: column-reverse;
        align-items: flex-start
    }

    .invoice_section.type-4 .invoice_block .text-part {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 20px 0 0
    }

    .invoice_section.type-4 .invoice_block .img-container {
        min-width: unset
    }
}

@media only screen and (max-width: 767.9px) {
    .invoice_section.type-1 .invoice-billet, .invoice_section.type-2 .invoice-billet {
        height: 400px
    }

    .invoice_section.type-3 .invoice-list {
        flex-direction: column;
        width: 100%;
        margin: 0
    }

    .invoice_section.type-3 .invoice-list > li {
        width: auto;
        margin: 0 0 20px;
        padding: 0
    }

    .invoice_section.type-3 .invoice-list > li:last-of-type {
        margin: 0
    }

    .invoice_section.type-3 .invoice-billet {
        max-width: 414px
    }
}

@media only screen and (max-width: 565px) {
    .invoice_section.type-1 .invoice-list {
        width: 100%;
        margin: 0
    }

    .invoice_section.type-1 .invoice-list > li {
        width: 100%;
        margin-bottom: 20px;
        padding: 0
    }

    .invoice_section.type-1 .invoice-list > li:last-of-type {
        margin: 0
    }
}

.text-billet.type-3 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 30px 32px 32px;
    background: var(--body_grey_block_background)
}

.text-billet.type-3 .top-part {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 13px
}

.text-billet.type-3 .top-part .title {
    flex: 1;
    padding-right: 24px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--body_titles_color)
}

.text-billet.type-3 .top-part .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--body_button_background)
}

.text-billet.type-3 .top-part .svg-icons {
    font-size: 16px;
    color: var(--body_button_text_color)
}

.text-billet.type-3 .concise-info {
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: normal;
    color: var(--body_text_color)
}

@media only screen and (max-width: 767.9px) {
    .text-billet.type-3 {
        padding: 20px 15px 15px
    }

    .text-billet.type-3 .top-part {
        align-items: flex-start
    }
}

.text-billet.type-4 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 24px 24px 30px;
    border-radius: 6px
}

.text-billet.type-4 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    background: var(--body_button_background)
}

.text-billet.type-4 .icon .svg-icons {
    font-size: 16px;
    color: var(--body_button_text_color)
}

.text-billet.type-4 .title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--body_titles_color)
}

.text-billet.type-4 .descr {
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}

.text-billet.first {
    background: var(--body_grey_block_background);
    text-align: left
}

.text-billet.first .icon {
    border-radius: 10px
}

.text-billet.second {
    align-items: center;
    border: 1px solid var(--body_button_background);
    text-align: center;
    background: var(--body_background)
}

.text-billet.second .icon {
    border-radius: 50%
}

.question-block .block-wrap {
    background-color: var(--body_text_color_background)
}

.question-block .btn-block {
    display: flex
}

.question-block .block-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25
}

.question-block.type-4 .block-wrap {
    background-color: var(--body_button_background);
    padding: 45px 60px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 991px) {
    .question-block.type-4 .block-wrap {
        flex-direction: column;
        padding: 40px 30px
    }
}

@media only screen and (max-width: 767px) {
    .question-block.type-4 .block-wrap {
        padding: 20px 16px
    }
}

.question-block.type-4 .text-part {
    flex: 1;
    text-align: left
}

.question-block.type-4 .block-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_button_text_color)
}

.question-block.type-4 .descr {
    margin-top: 12px;
    font-size: 16px;
    color: var(--body_button_text_color)
}

.question-block.type-4 .btn-block {
    margin-left: 70px
}

@media only screen and (max-width: 991px) {
    .question-block.type-4 .btn-block {
        margin-left: 0
    }
}

@media only screen and (max-width: 991px) {
    .question-block.type-4 .text-part {
        flex: none;
        max-width: 583px;
        margin-bottom: 24px;
        text-align: center
    }
}

@media only screen and (max-width: 767.9px) {
    .question-block.type-4 .block-title {
        font-size: 28px;
        line-height: 1.36
    }
}

.blog-billet.card3 {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.blog-billet.card3:focus .concise-info .text-part .title, .blog-billet.card3:hover .concise-info .text-part .title {
    color: var(--body_button_background)
}

.blog-billet.card3 .poster-container {
    display: flex
}

.blog-billet.card3 .poster-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px
}

.blog-billet.card3 .concise-info .text-part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%
}

.blog-billet.card3 .concise-info .text-part .descr, .blog-billet.card3 .concise-info .text-part .title {
    display: -webkit-box;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
    /*! autoprefixer: on */
    overflow: hidden
}

.blog-billet.card3 .concise-info .text-part .title {
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
    line-height: 1.33;
    font-size: 18px;
    font-weight: 700;
    color: var(--body_titles_color)
}

.blog-billet.card3 .concise-info .text-part .descr {
    -webkit-line-clamp: 3;
    line-height: 1.6;
    font-size: 15px;
    color: var(--body_text_color)
}

.blog-billet.card3 .concise-info .bottom-part {
    display: flex;
    justify-content: space-between
}

.blog-billet.card3 .concise-info .bottom-part .details-list {
    display: flex;
    max-width: calc(100% - 140px)
}

.blog-billet.card3 .concise-info .bottom-part .details-list li {
    max-width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
    line-height: 1.71;
    font-size: 14px;
    color: var(--body_date_color)
}

.blog-billet.card3 .concise-info .bottom-part .details-list li:last-of-type {
    margin: 0
}

.blog-billet.card3 .concise-info .bottom-part .read-more_link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 600;
    color: var(--body_button_background)
}

.blog-billet.card3 .concise-info .bottom-part .read-more_link:hover {
    text-decoration: underline
}

.blog-billet.card3.vertical {
    flex-direction: column
}

.blog-billet.card3.vertical .poster-container {
    width: 100%;
    height: 204px
}

.blog-billet.card3.vertical .concise-info {
    padding: 16px 0 0
}

.blog-billet.card3.vertical .concise-info .text-part {
    margin: 0 0 16px
}

@media only screen and (max-width: 767.9px) {
    .blog-billet.card3.horizontal {
        flex-direction: column;
        padding: 24px
    }

    .blog-billet.card3.horizontal .poster-container {
        min-width: 0;
        width: 100%
    }

    .blog-billet.card3.horizontal .concise-info {
        padding: 16px 0 0
    }
}

@media only screen and (max-width: 640px) {
    .blog-billet.card3.vertical .poster-container {
        height: 164px
    }

    .blog-billet.card3.vertical .concise-info {
        padding-top: 16px
    }

    .blog-billet.card3.vertical .concise-info .text-part {
        margin-bottom: 16px
    }

    .blog-billet.card3.vertical .concise-info .text-part .title {
        line-height: 1.33;
        font-size: 18px
    }

    .blog-billet.card3.vertical .concise-info .bottom-part .read-more_link .svg-icons {
        display: none
    }
}

.blog-billet.card7 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 298px;
    padding: 24px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden
}

.blog-billet.card7:after, .blog-billet.card7:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 4px;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.blog-billet.card7:before {
    background: linear-gradient(180deg, rgba(14, 15, 22, .16), rgba(14, 16, 22, .75));
    opacity: 1;
    z-index: 1
}

.blog-billet.card7:after {
    background: linear-gradient(180deg, rgba(14, 15, 22, .4), rgba(14, 16, 22, .92));
    opacity: 0;
    z-index: 2
}

.blog-billet.card7:focus:after, .blog-billet.card7:hover:after {
    opacity: 1
}

.blog-billet.card7:focus:before, .blog-billet.card7:hover:before {
    opacity: 0
}

.blog-billet.card7 .poster-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 4px;
    display: flex
}

.blog-billet.card7 .poster-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px
}

.blog-billet.card7 .concise-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 3;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.blog-billet.card7 .concise-info .text-part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 8px 0 0
}

.blog-billet.card7 .concise-info .text-part .title {
    display: -webkit-box;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
    /*! autoprefixer: on */
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-height: 1.33;
    font-size: 18px;
    font-weight: 700;
    color: var(--body_date_color)
}

.blog-billet.card7 .concise-info .bottom-part {
    display: flex
}

.blog-billet.card7 .concise-info .bottom-part .details-list {
    display: flex;
    align-items: center;
    width: 100%
}

.blog-billet.card7 .concise-info .bottom-part .details-list li {
    display: flex;
    align-items: center;
    white-space: nowrap
}

.blog-billet.card7 .concise-info .bottom-part .details-list li:before {
    position: relative;
    top: 1px;
    content: "";
    width: 4px;
    height: 4px;
    margin: 0 4px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .8)
}

.blog-billet.card7 .concise-info .bottom-part .details-list li:first-of-type {
    max-width: calc(100% - 94px)
}

.blog-billet.card7 .concise-info .bottom-part .details-list li:first-child:before {
    display: none
}

.blog-billet.card7 .concise-info .bottom-part .details-list .author {
    display: flex;
    align-items: center;
    width: 100%
}

.blog-billet.card7 .concise-info .bottom-part .details-list .author .name {
    flex: 1
}

.blog-billet.card7 .concise-info .bottom-part .details-list .author .name, .blog-billet.card7 .concise-info .bottom-part .details-list .date {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.43;
    font-size: 14px;
    font-weight: 600;
    color: var(--body_date_color)
}

.blog-billet.card7 .concise-info .bottom-part .details-list .date {
    max-width: 94px
}

@media only screen and (max-width: 640px) {
    .blog-billet.card7 {
        height: 220px;
        padding: 20px 20px 24px
    }

    .blog-billet.card7 .concise-info .text-part .title {
        -webkit-line-clamp: 3
    }
}

.blog-billet.card9 {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 24px 0 rgba(35, 79, 150, .12);
    cursor: pointer;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.blog-billet.card9:focus, .blog-billet.card9:hover {
    box-shadow: 0 6px 28px 0 rgba(35, 79, 150, .16)
}

.blog-billet.card9 .poster-container {
    position: relative;
    display: flex;
    height: 204px
}

.blog-billet.card9 .poster-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px
}

.blog-billet.card9 .concise-info .text-part {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 8px
}

.blog-billet.card9 .concise-info .text-part .title {
    display: -webkit-box;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
    /*! autoprefixer: on */
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-height: 1.33;
    font-size: 18px;
    font-weight: 700;
    color: var(--body_titles_color)
}

.blog-billet.card9 .concise-info .bottom-part .details-list {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.blog-billet.card9 .concise-info .bottom-part .details-list li {
    display: flex;
    align-items: center
}

.blog-billet.card9 .concise-info .bottom-part .details-list .date {
    line-height: 1.7;
    font-size: 14px;
    color: var(--body_date_color)
}

.blog-billet.card9.vertical {
    flex-direction: column
}

.blog-billet.card9.vertical .poster-container {
    width: 100%
}

.blog-billet.card9.vertical .concise-info {
    padding: 16px 24px 30px
}

@media only screen and (max-width: 640px) {
    .blog-billet.card9.vertical {
        flex-direction: column;
        padding: 8px
    }

    .blog-billet.card9.vertical .poster-container {
        height: 180px;
        min-width: 100%;
        width: 100%
    }

    .blog-billet.card9.vertical .poster-container .category {
        top: 12px;
        right: 12px
    }

    .blog-billet.card9.vertical .concise-info {
        padding: 16px 12px 22px
    }
}

.faq-block {
    width: 100%
}

.faq-block.type-1 .faq-list {
    margin: -20px 0
}

.faq-block.type-1 .faq-list > li {
    border-bottom: 1px solid #dae0e8
}

.faq-block.type-1 .faq-list > li:last-of-type {
    border: none
}

.faq-block.type-1 .faq-item .question {
    padding: 20px 100px 20px 0
}

.faq-block.type-1 .faq-item .question .text {
    color: var(--body_titles_color)
}

.faq-block.type-1 .faq-item .svg-icons {
    right: 0;
    top: 21px
}

.faq-block.type-1 .faq-item .svg-icons .plus {
    color: var(--body_titles_color)
}

.faq-block.type-1 .faq-item .svg-icons.minus {
    color: var(--body_button_background)
}

.faq-block.type-1 .faq-item.open .question {
    padding-bottom: 12px
}

/*.faq-block.type-1 .faq-item.open .question .text {*/
/*    color: var(--body_button_background)*/
/*}*/

.faq-block.type-1 .faq-item.open .answer {
    margin-bottom: 20px
}

.faq-block.type-2 .faq-list > li {
    margin-bottom: 16px
}

.faq-block.type-2 .faq-list > li:last-of-type {
    margin: 0
}

.faq-block.type-2 .faq-item .question {
    padding: 20px 32px;
    border: 1px solid var(--body_button_background);
    border-radius: 6px;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.faq-block.type-2 .faq-item .question .text {
    width: 100%;
    padding-right: 70px;
    color: var(--body_titles_color)
}

.faq-block.type-2 .faq-item .svg-icons {
    right: 32px;
    top: 21px
}

.faq-block.type-2 .faq-item .svg-icons.plus {
    color: var(--body_titles_color)
}

.faq-block.type-2 .faq-item .svg-icons.minus {
    color: var(--body_button_text_color)
}

.faq-block.type-2 .faq-item .answer {
    padding: 20px 70px 16px 32px
}

.faq-block.type-2 .faq-item.open .question {
    background: var(--body_button_background)
}

.faq-block.type-2 .faq-item.open .question .text {
    color: var(--body_button_text_color)
}

.faq-block.type-3 .faq-list > li {
    margin-bottom: 16px
}

.faq-block.type-3 .faq-list > li:last-of-type {
    margin: 0
}

.faq-block.type-3 .faq-item .question {
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.faq-block.type-3 .faq-item .question .text {
    width: 100%;
    padding-right: 70px;
    color: var(--body_titles_color)
}

.faq-block.type-3 .faq-item .svg-icons {
    right: 30px;
    top: 21px
}

.faq-block.type-3 .faq-item .svg-icons.plus {
    color: var(--body_button_background)
}

.faq-block.type-3 .faq-item .svg-icons.minus {
    color: var(--body_button_text_color)
}

.faq-block.type-3 .faq-item .answer {
    padding: 20px 30px 16px
}

.faq-block.type-3 .faq-item.open .question {
    background: var(--body_button_background)
}

.faq-block.type-3 .faq-item.open .question .text {
    color: var(--body_button_text_color)
}

.faq-block .faq-list {
    margin: 0;
    padding: 0;
    background: none;
    list-style: none
}

.faq-block .faq-list li {
    padding: 0;
    line-height: 1
}

.faq-block .faq-item {
    display: flex;
    flex-direction: column
}

.faq-block .faq-item.open .question .svg-icons.plus {
    display: none
}

.faq-block .faq-item.open .question .svg-icons.minus {
    display: inline-flex
}

.faq-block .faq-item.open .answer {
    display: block
}

.faq-block .faq-item .question {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color .3s ease-in-out
}

.faq-block .faq-item .question .svg-icons {
    position: absolute;
    font-size: 24px;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.faq-block .faq-item .question .svg-icons.minus {
    display: none
}

.faq-block .faq-item .question .text {
    line-height: 1.63;
    font-size: 16px;
    font-weight: 700
}

.faq-block .faq-item .answer {
    display: none;
    padding-right: 100px;
    line-height: 1.63;
    font-size: 16px;
    color: var(--body_text_color)
}

.faq-block .faq-item .answer p {
    margin: 0 0 12px;
    color: var(--body_text_color)
}

.faq-block .faq-item .answer p:last-of-type {
    margin: 0
}

@media only screen and (max-width: 640px) {
    .faq-block.type-1 .faq-item .answer, .faq-block.type-1 .faq-item .question {
        padding-right: 40px
    }

    .faq-block.type-2 .faq-item .question, .faq-block.type-3 .faq-item .question {
        padding-left: 20px;
        padding-right: 20px
    }

    .faq-block.type-2 .faq-item .answer, .faq-block.type-3 .faq-item .answer {
        padding: 20px 0 10px
    }
}

@media only screen and (max-width: 375px) {
    .faq-block.type-1 .faq-item .answer {
        padding-right: 0
    }
}

.breadcrumbs-block {
    display: flex;
    margin-bottom: 20px
}

.breadcrumb-item {
    display: flex;
    color: var(--body_text_color)
}

.breadcrumb-item:first-of-type .svg-icons {
    position: relative;
    font-size: 15px
}

.breadcrumb-item .breadcrumb-link {
    font-size: 14px;
    line-height: 1.43;
    transition: all .3s;
    display: flex;
    align-items: center;
    color: var(--body_titles_color)
}

.breadcrumb-item .breadcrumb-link.active {
    color: var(--body_text_color)
}

.breadcrumb-item .breadcrumb-link:not(.active):hover {
    text-decoration: underline
}

.breadcrumb-item .svg-icons {
    font-size: 22px
}

.breadcrumb-item .breadcrumb-separator {
    display: flex;
    align-items: center;
    height: 28px;
    margin: 0 1px;
    overflow: hidden
}

.breadcrumb-item .breadcrumb-separator .svg-icons {
    width: 16px;
    font-size: 9px;
    overflow: hidden
}

.simple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: none;
    padding: 0;
    background: none;
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

.simple-btn.default-size {
    max-width: 100%;
    min-width: 200px;
    min-height: 58px;
    padding: 16px 30px;
    line-height: 1.35;
    font-size: 20px
}

@media only screen and (max-width: 414px) {
    .simple-btn.default-size {
        width: 100%
    }
}

.simple-btn.wide-size {
    max-width: 268px;
    height: 58px;
    min-height: 58px;
    padding: 0 30px;
    font-size: 20px
}

@media only screen and (max-width: 414px) {
    .simple-btn.wide-size {
        width: 100%
    }
}

.simple-btn.full-width {
    max-width: 100%
}

.simple-btn.default-color {
    background: var(--body_button_background, var(--adm_active_color_theme));
    color: var(--body_button_text_color, #fff)
}

.simple-btn.default-color:focus, .simple-btn.default-color:hover {
    background: var(--body_button_background_hover, var(--adm_active_hover-color_theme));
    color: var(--body_button_text_color_hover, #fff)
}

.simple-btn.black-color {
    background: var(--body_black_button_background, #080504);
    color: var(--body_black_button_text_color, #fff)
}

.simple-btn.black-color:focus, .simple-btn.black-color:hover {
    background: var(--body_black_button_background_hover, #080504);
    color: var(--body_black_button_text_color_hover, #fff)
}

.simple-btn.bordered.sm {
    border-radius: 6px
}

.simple-btn.bordered.md {
    border-radius: 10px
}

.simple-btn.bordered.lg {
    border-radius: 29px
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.custom-label {
    display: inline-flex;
    margin: 0 0 16px 2px;
    line-height: 1.19;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #394652
}

.checkbox-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    cursor: pointer
}

.checkbox-label .square {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border: 1px solid #fff
}

.checkbox-label .square:before {
    content: "";
    display: none;
    position: relative;
    width: 3px;
    height: 6px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg)
}

.checkbox-label .text {
    font-size: 14px;
    line-height: 1.43;
    color: #bac1d2
}

.checkbox-label .text a {
    color: #fff;
    text-decoration: underline
}

.checkbox-label .text a:focus, .checkbox-label .text a:hover {
    text-decoration: none
}

input[type=checkbox]:checked + label .square {
    border-color: #fff
}

input[type=checkbox]:checked + label .square:before {
    display: block
}

.custom-input {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 6px 24px -6px rgba(160, 179, 235, .5);
    background-color: #fff;
    border: none;
    color: #6a7f9e
}

.custom-input:focus, .custom-input:hover {
    outline: none
}

.custom-input::-webkit-input-placeholder {
    color: #6a7f9e
}

.custom-input:-moz-placeholder, .custom-input::-moz-placeholder {
    color: #6a7f9e
}

.custom-input:-ms-input-placeholder {
    color: #6a7f9e
}

.form-group {
    margin-bottom: 16px;
    font-size: 0
}

.form-group:last-of-type {
    margin-bottom: 0
}

.custom-textarea {
    width: 100%;
    height: 156px;
    padding: 10px 15px;
    resize: none;
    font-size: 16px;
    font-family: Open Sans, sans-serif;
    border-radius: 8px;
    box-shadow: 0 6px 24px -6px rgba(160, 179, 235, .5);
    background-color: #fff;
    border: none;
    color: #6a7f9e
}

.custom-textarea:focus, .custom-textarea:hover {
    outline: none
}

.custom-textarea::-webkit-input-placeholder {
    color: #6a7f9e
}

.custom-textarea:-moz-placeholder, .custom-textarea::-moz-placeholder {
    color: #6a7f9e
}

.custom-textarea:-ms-input-placeholder {
    color: #6a7f9e
}

input::-webkit-input-placeholder {
    font-family: Open Sans, sans-serif;
    opacity: 1;
    color: #a7aab5;
    transition: opacity .3s ease
}

input:-moz-placeholder, input::-moz-placeholder {
    font-family: Open Sans, sans-serif;
    opacity: 1;
    color: #a7aab5;
    transition: opacity .3s ease
}

input:-ms-input-placeholder {
    font-family: Open Sans, sans-serif;
    opacity: 1;
    color: #a7aab5;
    transition: opacity .3s ease
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

input:focus:-moz-placeholder, input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

textarea::-webkit-input-placeholder {
    font-family: Open Sans, sans-serif;
    opacity: 1;
    color: #6a7f9e;
    transition: opacity .3s ease
}

textarea:-moz-placeholder, textarea::-moz-placeholder {
    font-family: Open Sans, sans-serif;
    opacity: 1;
    color: #6a7f9e;
    transition: opacity .3s ease
}

textarea:-ms-input-placeholder {
    font-family: Open Sans, sans-serif;
    color: #6a7f9e;
    opacity: 1;
    transition: opacity .3s ease
}

textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

textarea:focus:-moz-placeholder, textarea:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

textarea:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity .3s ease
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

input[type=search]::-ms-clear, input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=number] {
    -moz-appearance: textfield
}

input[type=number]::-ms-clear, input[type=number]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.checkbox-container {
    display: flex;
    align-items: center
}

.checkbox-container input[type=checkbox] {
    cursor: pointer
}

.checkbox-container label {
    position: relative;
    margin-left: 5px;
    top: -2px;
    cursor: pointer
}

.cover-as-bg {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}

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

.section {
    padding: 50px 0
}

.section.text-section.bg {
    margin: 50px 0;
    padding: 100px 0
}

.section.text-section.bg + .bg {
    margin-top: -50px;
    padding-top: 0
}

.section:last-child {
    padding-bottom: 0
}

section h2 {
    margin: 0 0 30px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_titles_color)
}

.btn-container {
    display: flex;
    margin-top: 30px
}

.btn-container.center {
    justify-content: center
}

.bgg {
    background: #f8f7ff
}

.default-styles {
    padding: 20px;
    border: 1px solid #e6e9ee;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
    border-radius: 4px
}

@media only screen and (max-width: 640px) {
    .default-styles {
        padding: 15px
    }
}

.pagination-container {
    margin-top: 30px
}

.breadcrumbs-container {
    margin-top: 20px
}

.breadcrumbs-and-title {
    margin-bottom: 20px;
    padding: 10px 0;
    background-color: #f8f7ff;
    border-bottom: 1px solid #e6e9ee
}

.breadcrumbs-and-title .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.breadcrumbs-and-title .page-title {
    flex: 1;
    margin: 0;
    padding-right: 40px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 700;
    color: #394652
}

.text-styles {
    color: var(--body_text_color, #4d5458)
}

.text-styles > :first-child {
    margin-top: 0
}

.text-styles > :last-child {
    margin-bottom: 0
}

.text-styles p {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.63;
    font-size: 16px
}

.text-styles p:last-of-type {
    margin: 0
}

.text-styles p a {
    font-weight: 600;
    color: var(--adm_active_color_theme)
}

.text-styles p a:focus, .text-styles p a:hover {
    text-decoration: underline
}

.text-section h3, .text-styles h3 {
    margin: 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_titles_color,#181a1b)
}

.text-section h4, .text-styles h4 {
    margin: 13px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--body_titles_color,#181a1b)
}

.text-styles img {
    max-width: 100%
}

.text-styles ul {
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px
}

.text-styles ul li {
    line-height: 1.75
}

.text-styles .features-list {
    padding: 0;
    list-style: none
}

@media only screen and (max-width: 640px) {
    .text-styles h3, .text-styles h4 {
        margin-top: 10px
    }
}

.desktop-visible {
    display: flex
}

@media only screen and (max-width: 1024px) {
    .desktop-visible {
        display: none
    }
}

.tablet-visible {
    display: none
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .tablet-visible {
        display: flex
    }
}

.mobile-visible {
    display: none
}

@media only screen and (max-width: 767.9px) {
    .mobile-visible {
        display: block
    }
}

.section_title {
    margin: 0 0 32px;
    font-size: 32px;
    line-height: 1.25
}

.page_title, .section_title {
    font-weight: 700;
    color: var(--body_titles_color)
}

.page_title {
    margin: 0 0 40px;
    font-size: 50px;
    line-height: 1.2
}

@media only screen and (max-width: 640px) {
    .page_title {
        margin: 0 0 32px;
        font-size: 32px
    }
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 32px);
    margin: -16px
}

.features-list > li {
    width: 33.3333%;
    padding: 16px
}

@media only screen and (max-width: 700px) {
    .features-list {
        width: 100%;
        margin: 0
    }

    .features-list > li {
        width: 100%;
        margin: 0 0 24px;
        padding: 0
    }

    .features-list > li:last-of-type {
        margin: 0
    }
}

.blog-list {
    display: flex;
    flex-wrap: wrap
}

.blog-list.for-vertical.full-width {
    width: calc(100% + 28px);
    margin: -14px
}

.blog-list.for-vertical.full-width > li {
    width: 33.3%;
    padding: 14px;
}

.blog-post_page .blog-list.for-vertical.full-width > li {
    width: 50%;
}

@media only screen and (max-width: 767.9px) {
    .blog-list.for-vertical.full-width > li {
        width: 100%
    }
}

@media only screen and (max-width: 640px) {
    .blog-list.for-vertical.full-width {
        width: 100%;
        margin: 0
    }

    .blog-list.for-vertical.full-width > li {
        margin: 0 0 24px;
        padding: 0
    }

    .blog-list.for-vertical.full-width > li:last-of-type {
        margin: 0
    }
}

.blog-list.for-horizontal.full-width {
    width: calc(100% + 30px);
    margin: -15px
}

.blog-list.for-horizontal.full-width > li {
    width: 50%;
    padding: 15px
}

@media only screen and (max-width: 640px) {
    .blog-list.for-horizontal.full-width {
        flex-direction: column;
        width: 100%;
        margin: 0
    }

    .blog-list.for-horizontal.full-width > li {
        width: 100%;
        margin-bottom: 20px;
        padding: 0
    }

    .blog-list.for-horizontal.full-width > li:last-of-type {
        margin: 0
    }
}

.review_features-list {
    display: flex;
    align-items: center
}

.review_features-list li {
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    color: #728095
}

.review_features-list li:after {
    content: "|";
    line-height: 1;
    position: absolute;
    right: 6px;
    top: 3px
}

.review_features-list li:last-child {
    padding-right: 0
}

.review_features-list li:last-child:after {
    display: none
}

.review_features-list li > span {
    display: inline-flex;
    align-items: center;
    line-height: 1.57
}

.review_features-list li > span .svg-icons {
    position: relative;
    margin-right: 4px
}

@media only screen and (max-width: 414px) {
    .review_features-list li:first-child {
        display: none
    }
}

.adsbygoogle, .adsense {
    width: 100%
}

@media only screen and (max-width: 374.9px) {
    .g-recaptcha {
        transform: scale(.77);
        transform-origin: 0 0
    }
}

* {
    box-sizing: border-box
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

a {
    transition: all .3s cubic-bezier(.2, .57, .36, .8)
}

a, a:focus, a:hover {
    text-decoration: none
}

a:focus, a:hover {
    outline: none
}

.svg-icons {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    fill: currentColor
}

img.lazy {
    opacity: 0;
    transition: opacity .2s
}

img.lazy.error, img.lazy.loaded {
    opacity: 1
}

img:not([src]) {
    visibility: hidden
}

.wrapper {
    padding-bottom: 100px;
    background: var(--body_background)
}

@media only screen and (max-width: 640px) {
    .wrapper {
        padding-bottom: 80px
    }
}

.wrapper.title-centered .faq_section h2, .wrapper.title-centered .invoice_section h2, .wrapper.title-centered .latest-news_section h2, .wrapper.title-centered .text-section .text-block h2, .wrapper.title-centered .text-section .text-block h3 {
    text-align: center
}

.wrapper.about-us_page .about-us_section, .wrapper.about-us_page .latest-news_section, .wrapper.blog-list_page .about-us_section, .wrapper.blog-list_page .latest-news_section, .wrapper.blog-post_page .blog-post_section {
    padding-top: 0
}

.blog-post_page .latest-news_section {
    padding-top: 30px
}

.blog-post_section .top-part {
    margin: 0 0 30px
}

.blog-post_section .text-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 32px;
    text-align: center
}

.blog-post_section .text-part .page_title {
    margin: 0 0 9px
}

.blog-post_section .text-part .details-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.blog-post_section .text-part .details-list li {
    display: flex;
    align-items: center;
    white-space: nowrap
}

.blog-post_section .text-part .details-list li:before {
    position: relative;
    top: 1px;
    content: "";
    width: 4px;
    height: 4px;
    margin: 0 4px;
    border-radius: 50%;
    background: #4d5458
}

.blog-post_section .text-part .details-list li:first-of-type {
    max-width: calc(100% - 94px)
}

.blog-post_section .text-part .details-list li:first-child:before {
    display: none
}

.blog-post_section .text-part .details-list .author {
    display: flex;
    align-items: center;
    width: 100%
}

.blog-post_section .text-part .details-list .author .name {
    line-height: 1.43;
    font-size: 16px;
    font-weight: 700;
    color: var(--body_titles_color)
}

.blog-post_section .text-part .details-list .date {
    display: inline-block;
    line-height: 1.43;
    font-size: 16px;
    color: var(--body_text_color)
}

.blog-post_section .poster img {
    width: 100%;
    max-width: 100%
}

.not-found_section {
    padding-top: 50px
}

.not-found_block {
    margin: 0 auto;
    position: relative
}

.not-found_block img {
    max-width: 100%;
    width: 100%
}

.not-found_block .content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.not-found_block .content .emoji {
    font-size: 32px;
    line-height: 1.25
}

.not-found_block .content .page_title {
    margin: 12px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.28
}

.not-found_block .content .descr {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.63;
    color: var(--body_text_color)
}
