/* style.css */
@font-face {
    font-family: 'PlusJakartaSans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --light-grey: #F9F9F9;
    --main-blue: #25BCC6;
    --black: #060813;
    --light-blue: #D8E9EE;
    --accent-color: #2388FF;
    --footer-grey: #27272A;
    --text-grey: #A1A1AA;
    --darck-blue: #115C81;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'PlusJakartaSans', sans-serif;
    color: var(--black);
    min-height: 100vh;

}

img {
    border-radius: 12px;
    height: auto;
    max-width: 100%;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5em;
}

ul, ol {
    padding-left: 20px;
    margin-left: 0;
}

a,
a:hover,
a:visited,
a:focus {
    text-decoration: none;
    color: var(--black);
}
.tac{
    text-align: center;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.header_container {
    padding-top: 7px;
    padding-bottom: 0;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-start {
    -ms-flex-align: flex-start !important;
    align-items: flex-start !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

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

.justify-content-center {
    -ms-flex-pack: justify !important;
    justify-content: center !important;
}

.bg-grey {
    background-color: var(--light-grey);
}

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

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }

    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

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

    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1440px) {}

.header_menu_wrap {
    background-color: #fff;
}


@media (min-width: 992px) {

    ul>li {
        margin: 9px 0;
    }

    .main_menu {
        padding: 2px 0;
    }

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

    .main_menu ul>li {
        font-weight: 500;
        position: relative;
        margin: 0;
    }

    .main_menu>div>ul {
        display: flex;
        justify-content: space-around;
    }

    .main_menu ul>li a {
        color: inherit;
        text-decoration: none;
        display: block;
        border: none;
        padding: 5px 5px;
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        text-align: center;
        text-transform: none;

    }

    .main_menu>div>ul>li>ul {
        transition: opacity .25s ease, transform .25s ease;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 0;
        background-color: #fff;
        z-index: 100;
        box-shadow: 0 0 4px rgba(0, 0, 0, .4);
        transform: translateY(10px);
        border-radius: 4px;
    }

    .main_menu ul>li>ul>li>a {
        white-space: nowrap;
        min-width: 125px;
        font-weight: 500;
        font-size: 15px;
        line-height: 24px;
        text-align: center;
        text-transform: none;
        padding: 5px 10px;
        color: #615f5f;
        border-bottom: 1px solid #dedede;
        transition: color .25s ease, background-color .25s ease;
    }

    .main_menu ul>li>ul>li:first-child>a {
        padding-top: 10px;
    }

    .main_menu ul>li:hover>ul {
        opacity: 1;
        transform: translateY(0px);
        visibility: visible;
    }
}

@media (min-width: 1200px) {
    .main_menu ul>li a {
        color: inherit;
        text-decoration: none;
        display: block;
        border: none;
        padding: 10px;
        font-size: 16px;
    }

    .main_menu ul>li>ul>li>a {
        text-transform: none;
    }
}

.actionsBtn-header {
    display: flex;
    justify-content: flex-end;
}

.btn {
    transition: background-color .25s ease, color .25s ease;
    padding: 14px 35px;
    text-decoration: none;
    display: block;
    text-align: center;
    border: 2px solid var(--main-blue);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    line-height: 133%;
    cursor: pointer;
    white-space: nowrap;
    width: fit-content;
}

.actionsBtn-header .btn,
.regim_header .btn {
    display: inline;
}

.btn-blue-border {
    color: var(--black);
    background-color: transparent;
}

.btn-blue-border:hover {
    color: #fff;
    background-color: var(--main-blue);
}

.site-header {
    width: 100%;
    position: fixed;
    z-index: 7;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, .6);
}

.regim_header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--black);
}

.regim_header strong,
.regim_header a {
    font-weight: 700;

    text-decoration: none;
    color: var(--black);
}

.regim_header a:hover {
    text-decoration: underline;

    color: var(--black);
}

.hamburger {
    display: flex;
    flex-direction: column;
}


.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;

}

.main-nav ul li {
    position: relative;
    /* чтобы подменю позиционировалось относительно родителя */
}

.main-nav ul li a {
    display: block;
    text-decoration: none;
    color: #222;
}


/* подменю */
.main-nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    z-index: 1000;
}

.main-nav ul li ul.sub-menu li {
    width: 100%;
}

.main-nav ul li ul.sub-menu li a {
    padding: 10px;
    color: #222;
    white-space: nowrap;
}

.main-nav ul li ul.sub-menu li a:hover {
    background: #eee;
}

.main-nav ul li:hover>ul.sub-menu {
    display: block;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/burger.png);
    background-repeat: no-repeat;
    background-position: center;
}


.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 65px;
    height: 20px;
    background-color: #fff;
    background-image: url(../images/close.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 65px 18px;
    border: none;
    cursor: pointer;
    z-index: 101;
}


.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #222;
}

.main-nav li:hover>.sub-menu {
    display: block;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
}

.lang-mobile {
    justify-content: flex-end;
}

.sng-ls ul {
    margin: 0;
    padding: 0;
}

.sng-ls li {
    margin: 0 4px 0 0;
    list-style-type: none;
}

.sng-ls li a {
    border: none;
    max-width: 38px;
    overflow: hidden;
    margin-right: 3px;
    display: inherit;
}

.sng-ls li a img {
    height: 34px;
    width: 34px;
    border: 1px solid initial;
    opacity: .6;
    border-radius: 50%;
}

.sng-ls li.sng-ls-active a img {
    opacity: 1;
    border: 2px solid #2388FF;

}

.cart-wrat {
    padding-right: 10px;
    display: flex;
    justify-content: flex-end;
}

.cart_link {
    display: inline-block;
    border-bottom: none;
    height: 34px;
    width: 34px;
    border-radius: 69px;
    background-color: #2388FF;
}

.cart_img {
    top: 10px;
    left: 8px;
    position: absolute;
    width: 19px;
    height: 17px;
}

.header_menu_top {
    padding: 5px 0;
}

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

ul.get_breadcrumbs li {
    display: inline-block;
    vertical-align: unset;
    margin: 0;
}
.block-breadcrumbs{
    margin-top: 30px;
}
.block-breadcrumbs-inner a,
.block-breadcrumbs-inner span {
    color: inherit;
    font-size: 13px;
    margin: 20px 0;
    margin-top: 10px;
}

ul.get_breadcrumbs li span {
    color: inherit;
    font-size: 13px;
    margin: 20px 0;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .lang-mobile.justify-content-end {
        justify-content: center !important;
    }
}

@media (max-width: 720px) {

    .logo-header img {
        width: 60px;
    }

    .cart-contain {
        padding-left: 0 !important;
    }

    .cart-wrat {
        justify-content: center;
    }

    .sng-ls li a img {
        height: 24px;
        width: 24px;
        border: 1px solid initial;
        opacity: .6;
        border-radius: 50%;
    }

    .cart_img {
        top: 4px;
        left: 5px;
        position: absolute;
        width: 15px;
        height: 17px;
    }

    .cart_link {
        display: inline-block;
        border-bottom: none;
        height: 24px;
        width: 24px;
        border-radius: 69px;
        background-color: #2388FF;
    }
}

@media (max-width: 992px) {
    .btn {
        padding: 14px 25px;
        font-size: 16px;

    }

    .mobile-menu-btn .btn {
        width: 370px;
        max-width: 370px;
    }

    .regim_header {
        margin: 0 auto;
        text-align: center;
        max-width: 280px;
        align-items: center;
        margin-bottom: 40px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li:hover>.sub-menu {
        display: none;
    }

    .main-nav li.open>.sub-menu {
        display: flex;
        flex-direction: column;
        position: static;
        box-shadow: none;
    }
}

@media (max-width: 1300px) {
    .main-nav a {
        font-size: 14px;
    }

    .main-nav {
        max-width: 85%;
    }
}

@media (min-width: 1350px) {
    .main-nav ul li a {
        font-weight: 600;
        font-size: 16px;
        line-height: 120%;
        text-transform: uppercase;

    }
}

.hide-nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99;
}

.hide-nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-btn {
    display: flex;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: .3s;
    z-index: 100;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-menu-top {
    padding: 60px 30px 40px;
    display: flex;
    gap: 40px;
    background: #fff;
    flex-direction: column;

}

.mobile-menu-top ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-top li {
    margin-bottom: 19px;
}

.mobile-menu-top a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #3C3C3B;
}

.mobile-menu-info {

    background-color: #fff;
    padding-top: 15px;
}

.mobile-menu-info .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #3C3C3B;
    padding-left: 30px;

}

.info-item a {

    color: #3C3C3B;
}

.mobile-menu-info .btn.btn-green {
    width: 100%;
    margin: 0;
    max-width: unset;
}

.header-main {
    display: flex;
    justify-content: space-between;


    align-items: flex-start;
}

@media (max-width: 992px) {
    .mobile-menu .sub-menu {
        display: none;
        flex-direction: column;
        margin-top: 10px;
        padding-left: 15px;
        position: static;
        box-shadow: none;
        background: transparent;
    }


    .header-main {
        align-items: center;
    }

    .mobile-menu li.open>a {
        font-weight: 700;
    }
}

a.btn:hover {
    text-decoration: none;

}

.grecaptcha-badge {
    visibility: hidden !important;
}

.site-footer {
    background-color: var(--footer-grey);
    color: #fff;
}

.site-footer .regim_header,
.site-footer .regim_header strong,
.site-footer .regim_header a {
    color: #fff;
}

.btn-white.btn-blue-border {
    color: #fff;
    border: 2px solid #fff;
}

.btn-white.btn-blue-border:hover {
    color: var(--main-blue);
    background-color: #fff;
}

.footer_copyInfo {
    font-weight: 500;
    font-size: 18px;
    line-height: 44px;
    color: var(--text-grey);
    padding-top: 40px;
    border-top: 1px solid #525252;
}

.footer_menu .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-mid {
    padding-top: 30px;
}

.footer_menu .menu li {
    flex: 1 1 auto;
}

.footer_menu .menu a {
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.footer_menu {
    width: 100%;
}

@media (max-width: 991px) {
    .footer_menu .menu li {
        flex: 0 0 50%;
    }
}

@media (max-width: 992px) {
    .footer-main {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;

    }

    .footer_copyInfo p {
        font-size: 16px;
        line-height: 100%;

    }

    .footer-main .btn {
        width: 370px;
        max-width: 100%;
    }

    .footer-mid {
        padding-top: 20px;
    }

    .footer-main .regim_header {
        max-width: unset;
    }
}

@media (max-width: 1200px) {
    .footer-main .regim_header .btn {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .footer_menu .menu {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .footer_container {
        padding-top: 40px;
        border-top: 1px solid #525252;
    }
}

.hero_slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero_slide_title {
    font-weight: 700;
    font-size: 82px;
    line-height: 150%;
    text-align: center;
    padding-bottom: 10px;

}

.hero_slide_desc {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    padding-bottom: 60px;

}

.hero_slide_img {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 60px;
}
.hero_slide_img.test_banner{
    background-size: cover;
}
.btn_blue,
a.btn_blue, a.btn_blue:visited, a.btn_blue:focus {
    color: #fff;
    background-color: var(--main-blue);

}

.btn_blue:hover, a.btn_blue:hover {
    color: var(--main-blue);
    background-color: #fff;
    border: 2px solid var(--main-blue);

}

.hero_slide_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero_slide_price {
    margin-top: 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: center;

}

@media (max-width: 992px) {
    .hero_slide_title {
        font-weight: 700;
        font-size: 36px;
        line-height: 150%;

    }

    .hero_slide_desc {
        font-weight: 600;
        font-size: 20px;
        line-height: 150%;

    }

    .hero_slide_img {
        height: 400px;
        margin-bottom: 30px;
    }

}

@media (max-width: 720px) {
    .hero_slide {
        padding-top: 25px;
    }

    .hero_slide_title {
        font-weight: 700;
        font-size: 36px;
        line-height: 150%;

    }

    .hero_slide_desc {
        font-weight: 600;
        font-size: 20px;
        line-height: 150%;
        padding-bottom: 30px;

    }

    .hero_slide_img {
        height: 250px;
        margin-bottom: 0;
        margin-top: 30px;
    }

    .hero_slide_content {
        flex-direction: column-reverse;
    }

}

.fishki_section {
    background-color: var(--light-grey);
    padding-top: 60px;
    padding-bottom: 20px;
}

.fiski_item {
    padding-bottom: 45px;
}

.fiski_img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

.fiski_title {

    padding-bottom: 10px;

}

.name_regular {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
}

.name_semibold {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;

}

.text_light {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;

}

.fiski_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;

}

.best_item {
    padding-bottom: 33px;
}

.best_title {
    padding-bottom: 8px;
}

.best_icon {
    display: block;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    background-size: 50px 50px;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
}

.section_title, .h1, .h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 150%;

}

.h1_title {
    text-align: center;
    font-weight: 700;
    font-size: 52px;
    line-height: 150%;

}

.the_best .section_title {
    text-align: center;
}

.block_title {
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;

}

.the_best_content {

    text-align: center;
}

.the_best_content {
    padding-top: 85px;
    margin: 0 auto;
}

.section_padding {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section_padding.section_padding_sm {
    padding-top: 60px;
    padding-bottom: 60px;
}

.the_best {
    padding-top: 90px;
    padding-bottom: 60px;
}

@media (max-width: 992px) {
    .h1_title {
        font-weight: 700;
        font-size: 52px;
        line-height: 150%;
    }
}

@media (max-width: 720px) {
    .fiski_img {
        margin-bottom: 24px;
        aspect-ratio: 37 / 16;
    }

    .section_title, .h1, .h2   {
        font-weight: 600;
        font-size: 30px;
        line-height: 150%;

    }

    .h1_title {
        font-weight: 700;
        font-size: 36px;
        line-height: 150%;
    }

    .block_title {
        font-weight: 600;
        font-size: 30px;
        line-height: 150%;

    }

    .the_best_content {
        padding-top: 40px;
    }

    .the_best {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .section_padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .section_padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.license {
    padding-top: 90px;
    padding-bottom: 90px;
}

.subtitle_text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    padding-top: 18px;
}

.licensed-slide>a {
    padding-top: 66%;
    position: relative;
    margin: 0 auto;
    display: block;
    max-width: 550px;
    background-size: 0;
    border-radius: 10px;
}

.licensed-slide>a:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-size: cover;
    background-position: 50% 0%;
    background-image: inherit;
    border-radius: 10px;
}

.title_row {

    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .license {
        text-align: center;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .subtitle_text {
        font-weight: 400;
        font-size: 20px;
        line-height: 150%;

    }




}

@media (min-width: 1200px) {
    .the_best_title {
        max-width: 750px;
        margin: 0 auto;
    }

}

.tests_section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.tests_title {
    text-align: center;
}

.tests_text {
    text-align: center;
}

.test_item {
    padding-top: 60px;
}

.test_title {
    height: 72px;
}

.test_img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.test_info {
    padding-left: 20px;
    padding-bottom: 15px;
}

.test_btn {
    max-width: 250px;
}

@media (max-width: 720px) {
    .test_btn {
        max-width: 100%;
    }

    .test_img {

        aspect-ratio: 37/20;
    }
}




@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

}

.form_wrap {
    padding: 50px 65px 80px 40px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-label {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 32px;

}

.input__error-msg {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 32px;
    padding-top: 10px;
}

.wpcf7-response-output {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

input[type='text'],
input[type='tel'],
input[type='email'],
select,
textarea {
    color: var(--text-grey);
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    border-radius: 10px;
    border-color: #DFE6ED;
    padding: 11px 19px;
    min-width: 400px;
    max-width: 400px;
    height: 58px;
}

.checkbox,
.radio {
    margin-top: 5px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox-label,
.radio-label {
    display: flex;
    padding-left: 5px;
}

.checkbox-input,
.radio-input {
    appearance: none;
    position: relative;
    width: 27px;
    min-width: 27px;
    height: 27px;
    background: #fff;
    border-radius: 10px;
    border: 2px solid #DFE6ED;
    transition: 500ms;
}

.radio-input {
    border-radius: 50%;
}

.checkbox-input::after,
.radio-input::after {
    content: "\2714";
    position: absolute;
    top: -3px;
    left: -2px;
    width: 0px;
    height: 0px;
    font-size: 26px;
    transition: 500ms;
    overflow: hidden;
}


.checkbox-input::after,
.radio-input::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='30' viewBox='0 -960 960 960' width='30' stroke='%2325BCC6' stroke-width='30' fill='%2325BCC6'%3E%3Cpath d='M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transition: 500ms;
}

.checkbox-input:checked::after,
.radio-input:checked::after {
    width: 27px;
    height: 27px;
    transition: 500ms;
}

.checkbox-input:disabled,
.radio-input:disabled {
    background: #ccc;
    border-color: #ccc;
}

.checkbox-input:disabled::after,
.radio-input:disabled::after {
    filter: grayscale(100%);
}

.form-button {
    padding-top: 25px;
}

.privacy a {
    padding-left: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;

}

.wpcf7-form-control-wrap {
    padding-bottom: 15px;
    max-width: 400px;
}

.form_title {
    font-weight: 700;
    font-size: 38px;
    line-height: 150%;
    color: #fff;


}

@media (max-width: 992px) {
    .form_container.container {
        padding: 0;
        max-width: 100%;

    }

    .form_title {
        font-weight: 700;
        font-size: 40px;
        line-height: 150%;

    }

    .form_wrap {
        border-radius: 0;
        padding: 60px 15px 70px;
    }

    .form_title_wrap {
        justify-content: center;
    }

    input[type='text'],
    input[type='tel'],
    input[type='email'],
    select,
    textarea {
        max-width: 100%;

        min-width: 320px;

    }
}

.video {

    display: flex;
    max-width: 1000px;
    margin: 60px auto;
}

.video-cont {
    position: relative;
}

.video-cont .video-wrapper {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
}

.video-cont .playvideo {
    display: block;
    width: 55px;
    height: 55px;
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 auto;
    transform: scale(.95) translateZ(0) translateY(-50%);
    transition: transform .25s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    color: #fff;
    line-height: 58px;
    font-size: 18px;
    position: relative;
    top: 50%;
    transform-origin: top;
}

.video-cont .playvideo:after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--main-blue);
}


.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.split_text,
.split_text_smart {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;

}

.split_text>div:last-child {
    border-left: 1px solid #D7E3E4;
}

@media (max-width: 768px) {
    .video {
        margin: 40px auto;
    }

    .split_text>div:last-child {
        border-left: none;
    }


}

.step_item {
    background-color: var(--light-blue);
    position: relative;
    border-radius: 12px;
    padding: 70px 40px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.step_num {
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 14px;
    border-radius: 100px;
    width: fit-content;

    position: relative;
    z-index: 2;
}

.step_name {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 14px;
    z-index: 2;

    position: relative;
}

.step_text {
    max-width: 350px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;

    position: relative;
    z-index: 2;

}
@media (min-width: 768px) {
    .step_text {
    height: 100px;
}
}
.step_text a {
    color: var(--black);
    text-decoration: underline;
}

.step_img {
    position: absolute;
    width: 282px;
    height: 180px;
    background-repeat: no-repeat;
    background-size: cover;
    right: -100px;
    top: 40px;
}


@media (max-width: 576px) {
    .step_item {

        padding: 30px 30px 150px;

    }

    .step_img {
        right: -45px;
        top: unset;
        bottom: -40px;
    }
}

.btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.img-gde-sect_text ul {

    list-style-type: disc;
}

.img-gde-sect_content {
    padding-top: 60px;
}

.img-gde-sect_img {
    display: flex;
}

.img-gde-sect_img img {
    margin: 0 auto;
}

@media (max-width: 992px) {
    .img-gde-sect_content {
        padding-top: 40px;
        flex-direction: column-reverse;
    }

    .img-gde-sect_text {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

.banner {
    background-color: #23231F;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    height: 462px;
    margin-top: 60px;

}

.btn_text_white.btn_blue,
.btn_text_white.btn-blue-border {
    color: #fff;
}

.btn_text_white.btn_blue:hover {
    color: var(--main-blue);
}

.banner_left {
    display: flex;
    color: #fff;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.banner_gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(90.17deg, #111112 41.51%, rgba(17, 17, 18, 0.9) 44.93%, rgba(17, 17, 18, 0.8) 48.09%, rgba(17, 17, 18, 0.5) 54.41%, rgba(17, 17, 18, 0) 59.96%);

}

.banner_table {

    padding-left: 80px;
    padding-bottom: 15px;
}

.banner .btn-wrap {

    padding-left: 80px;
}

.banner_table tr {}

.banner_table tr td {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;

    padding-left: 25px;

    padding-bottom: 15px;
}

.banner_table tr td:first-child {
    padding-left: 50px;
    position: relative;
}

.banner_table tr td:first-child:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 20px;
    left: 0;
    top: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/triangle.png");
}


@media (max-width: 1200px) {

    .banner_gradient {
        padding: 60px 40px;
    }

    .banner_table tr td {
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
    }

    .banner_table tr td:first-child:before {
        top: 4px;

    }
}

@media (max-width: 992px) {
    .banner {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 12px;
        overflow: hidden;
background-color: var(--black);
background-image: none !important;
        margin-top: 40px;
        height: unset;
    }

    .banner_gradient {
        background: none;
    }

    .banner .btn-wrap,
    .banner_table {

        padding-left: 40px;
    }
}

@media (max-width: 576px) {
    .banner_gradient {
        padding: 40px 10px;
    }

    .banner_table tr td:first-child:before {
        width: 18px;
        height: 16px;
    }

    .banner_table tr td {
        font-size: 16px;
        font-weight: 600;
    }

        {
        width: 20px;
        height: 16px;
        left: 0;
        top: 8px;
        background-size: cover;
    }

    .btn-wrap .btn {
        width: 100%;
        max-width: 100%;
    }

    .banner .btn-wrap,
    .banner_table {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.promo_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.promo_info {
    border-radius: 12px;
    background-color: var(--light-blue);
    display: flex;
    flex-direction: column;
    padding: 40px;
}
.promo_price_step{
    color:  var(--accent-color);
}
.promo_info_ins{
    display: flex;
    align-items: center;
    justify-content: space-between;
        gap: 10px;
}
.promo_price {
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    padding-bottom: 16px;

}

.promo_price.before {
    font-weight: 500;
    font-size: 22px;
    color: #8f8d8d;
    ;

}

.promo_descr {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;

    padding-bottom: 16px;
}
@media (max-width: 992px) {
    .promo_info_ins{
        flex-direction: column;
    }
}

.courier_content {
    border-radius: 12px;
    background-color: var(--darck-blue);
    padding: 30px 50px;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    color: #fff;

}

.phone_link {
    display: block;
    position: relative;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-decoration: underline;

}

.phone_link:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 20px;
    left: 0;
    top: 24px;

    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/triangle_blue.png);
}


.review_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px 45px 35px 35px;
    margin-bottom: 20px;
}

.review_info {
    margin-top: 18px;
    display: flex;
    align-items: center;
}

.review_img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 30px;
}

.review_person {
    display: flex;
    flex-direction: column;
}

.review_name {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: #777373;

}

.review_spec {
    color: #777373;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;

}

@media (max-width: 768px) {
    .promo_info {
        margin-top: 30px;
    }

    .courier_content {
        padding: 15px;
        font-size: 20px;

    }
}

@media (max-width: 576px) {
    .phone_link:before {
        top: 22px;
        width: 18px;
        height: 16px;
    }

    .phone_link {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .left_slider .review_item {
        height: 726px;
    }
}



.responsive-table li {
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 25px;
}

.responsive-table .table-header {
    background-color: var(--main-blue);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    justify-content: center;
}

.responsive-table .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.responsive-table .table-col-1 {
    flex-basis: 40%;
}

.responsive-table .table-col-2 {
    flex-basis: 20%;
}

.responsive-table .table-col-3 {
    flex-basis: 20%;
}

.responsive-table .table-col-4 {
    flex-basis: 20%;
}

@media all and (max-width: 767px) {
    .responsive-table .table-header {
        display: flex;
    }

    .responsive-table .table-row {}

    .responsive-table .table-header .table-col {
        justify-content: center;
    }

    .responsive-table li {
        display: block;
    }

    .responsive-table .table-col {

        flex-basis: 100%;

    }

    .responsive-table .table-col {
        display: flex;
        padding: 10px 0;
    }

    .responsive-table .table-col span {
        display: none;
    }

    .responsive-table .table-col:before {
        color: #6C7A89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: left;
    }
.responsive-table .table-col:last-child{
    justify-content: center;
}
    .responsive-table .table-col:first-child {
        font-size: 16px;
        font-weight: 600;
    }

    .responsive-table .table-col:first-child:before,
     .responsive-table .table-col:last-child:before{
        display: none;
    }

}



.split_text_smart {
    column-gap: 20px;
}


.js-success .form{
    display: none;
}

.js-success .wpcf7-response-output{
    font-weight: 700;
    font-size: 38px;
    line-height: 150%;
}
@media (min-width: 768px) {
    .split_text_smart {
        column-count: 2;
        column-gap: 40px;
        column-rule: 1px solid #D7E3E4;
        padding: 0 10px;
    }
    .js-success .wpcf7-response-output{
        text-align: center;
    }
}

.split_text_smart p,
.split_text_smart ul {
    break-inside: avoid;
    margin-bottom: 1em;
}

.modal-One.fancybox__content,
.modal-One.fancybox-content {
    background-color: #105c80;
    border-radius: 12px;
    color: #fff;
    padding: 20px;
}

.modal-One.fancybox-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.accordion-js>* {
    border-top: none;
    display: block;
}

.accordion-js>*:first-child .acr-action {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-top: 1px solid #E3E3E3;

}

.acr-action {
    position: relative;
}

.acr-action:after {
    position: absolute;
    right: 10px;
    top: 30%;
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all .35s;
}

.acr-action.is-active:after {
    transform: rotate(90deg);


}

.accordion-js>*:last-child .acr-action {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.accordion-js .acr-action {
    position: relative;
    font-weight: 500;
    padding: 15px 20px;
    background-color: var(--main-blue);
    color: #fff;
border: 1px solid #1eb7c1;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease;
}

.accordion-js>*>:last-child {
    padding: 10px 20px;
    display: none;
}


.kak_oplatit-kakZap, .kak_zakaz_oplata-content {
    padding: 20px;
    padding-bottom: 30px;
}

.col-kak_oplatit{
    text-align: center;
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.b24-widget-button-position-bottom-right {
    right: 27px !important;
}

.carousel__button.fancybox__button--zoom,
.carousel__button.fancybox__button--fullscreen{
    display: none;
}

