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

h1.center {
    display: none;
}

.content {
    padding: 0;
    margin: 0;
}

.jsk_header-container {
    margin-top: 123px;
    margin-bottom: 150px;
}

.jsk_header-container > h5 {
    color: #263238;
    text-align: center;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 34.1px */
    text-align: center;
}
.jsk_header-container > h1 {
    color: #263238;
    text-align: center;
    font-family: Roboto;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; /* 62.1px */
    margin-top: 32px;
}

.jsk_header-container > .jsk_main_title {
    color: #263238;
    text-align: center;
    font-family: Roboto;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%; /* 62.1px */
    margin: 0 0 70px 0;
}

.jsk_subtitle, .jsk_subtitle__green {
    color: #000;
    font-family: Roboto;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 48.6px */
    text-align: left;
    margin: 0 0 41px 0;
}

.jsk_subtitle__green {
    font-weight: 400;
    color: #009C4D;
}

.jsk_button-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 26px;
}

.jsk_button-container > a {
    cursor: pointer;
    text-decoration-line: none;
    display: flex;
    align-items: center;
}

.jsk_button__light {
    display: flex;
    width: auto;
    height: 72px;
    padding: 18px 20px;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    color: #3C6B9B;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 24.8px */
    border-radius: 10px;
    border: 1px dashed #3C6B9B;
    background-color: white;
}

.jsk_button__green {
    display: flex;
    width: auto;
    height: 72px;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #009C4D;
    color: #FFF;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
}

.jsk_button__green:hover {
    background: #00944a;
}

.jsk_button__light:hover {
    background: #fcfcfc;
}

.jsk_comparing-table {
    border-radius: 20px;
    border: 1px solid #C4C4C4;
}

.jsk_comparing-table_row, .jsk_comparing-table_row__green, .jsk_comparing-table_row__gray {
    width: 100%;
    display: flex;
}

.jsk_comparing-table_row__green {
    background: rgba(0, 156, 77, 0.10);
}

.jsk_comparing-table_row__gray {
    background: #F2F2F2;
}

.jsk_comparing-table_element {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jsk_comparing-table_element > .jsk_subtitle, .jsk_comparing-table_element > .jsk_subtitle__green {
    padding: 25px 0;
    margin: 0;
}

.jsk_left-border {
    border-left: 1px solid #C4C4C4;
}

.jsk_comparing-table_text {
    color: #000;
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 29.7px */
    width: 100%;
    text-align: center;
    padding: 10px;
}

.jsk_comparing-table_element > img {
    margin-top: 9px;
    margin-bottom: 16px;
}

.jsk_comparing-container {
    margin-bottom: 150px;
}

.jsk_products-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.jsk_product-element {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
    padding: 50px;
}

.jsk_product-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #3C6B9B;
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%; /* 35.1px */
    flex-shrink: 0;
    cursor: pointer;
}

.jsk_product-title_text {
    max-width: 90%;
}

.jsk_product-title_button {
    cursor: pointer;
    width: 36px;
    height: 36px;
}

.jsk_product-title_button > img {
    width: 36px;
    height: 36px;
}

.jsk_product-title_button img {
    transition: transform 0.3s ease;
}

.jsk_product-element {
    overflow-y: hidden;
}

.jsk_product-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.jsk_product-element.open .jsk_product-content {
    max-height: fit-content;
    opacity: 1;
    transform: translateY(0);
}

.jsk_product-element.open .jsk_product-title_button img {
    transform: rotate(90deg); /* поворачиваем стрелку вниз */
}

.jsk_product-content > div {
    margin-top: 35px;
}

.jsk_product-text {
    color: #000;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 31px */
}

.jsk_product-text ul > li {
    margin-left: 50px;
}

.jsk_product-text ul {
    margin: 10px 0;
}

.jsk_product-text ul > li::before {
    content: '';

    background-color: #000;
}

.jsk_product-footer {
    display: flex;
    align-items: center;
    gap: 65px;
}

.jsk_product-footer > div {
    color: #000;
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%; /* 40.3px */
}

.jsk_product-footer > .jsk_button__green {
    height: 56px;
    font-size: 22px;
    cursor: pointer;
}

.jsk_product-text a {
    color: black;
    text-decoration: underline;
}

.jsk_products-container {
    margin-bottom: 150px;
}

.mobile {
    display: none;
}

.jsk_bold {
    font-weight: 500;
}

@media (max-width: 1200px) {
    .jsk_button-container {
        flex-direction: column;
    }
}

@media (max-width: 1000px) {
    .jsk_product-footer {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .jsk_header-container > h1 {
        color: #263238;
        text-align: center;
        font-family: Roboto;
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 135%; /* 62.1px */
        margin-top: 32px;
    }

    .mobile {
        display: flex;
    }

    .jsk_header-container > h1 {
        /*color: #263238;*/
        /*font-family: Roboto;*/
        /*font-size: 18px;*/
        /*font-style: normal;*/
        /*font-weight: 400;*/
        /*line-height: 155%; !* 27.9px *!*/
        /*text-align: left;*/
        /*margin-bottom: 26px;*/
    }

    .jsk_header-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .jsk_header-container > .jsk_main_title {
        color: #263238;
        font-family: Roboto;
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 135%; /* 35.1px */
        margin-bottom: 50px;
        text-align: left;
    }

    .jsk_subtitle {
        color: #000;
        font-family: Roboto;
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%; /* 35.1px */
        margin-bottom: 26px;
        text-align: left;
    }

    .jsk_button__green {
        font-size: 18px;
    }

    .jsk_comparing-table_element > .jsk_subtitle, .jsk_comparing-table_element > .jsk_subtitle__green {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%; /* 24.3px */
    }

    .jsk_comparing-table_text {
        color: #000;
        font-family: Roboto;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%; /* 21.6px */
        text-align: left;
        padding: 10px 24px;
    }

    .jsk_comparing-table_element > img {
        margin-bottom: 12px;
    }

    .jsk_comparing-table_element > div {
        font-size: 12px;
        margin-left: 10px;
    }

    .jsk_comparing-container {
        margin-bottom: 52px;
    }

    .jsk_product-element {
        padding: 20px;
    }

    .jsk_product-title_text {
        color: #3C6B9B;
        font-family: Roboto;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 135%; /* 24.3px */
        width: 90%;
    }

    .jsk_product-title {
        align-items: start;
    }

    .jsk_product-text {
        font-size: 16px;
    }

    .jsk_product-footer > div {
        color: #000;
        font-family: Roboto;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 155%; /* 27.9px */
    }

    .jsk_product-footer {
        gap: 20px;
    }

    .jsk_product-footer > .jsk_button__green {
        font-size: 18px;
        padding: 10px 22px;
    }

    .jsk_product-text ul > li {
        margin-left: 15px;
    }
}

.jsk_comparing-table_element_big {
    width: 80%;
    padding: 10px 0px 10px 40px;
    justify-content: flex-start;
    font-size: 18px;
}
.jsk_comparing-table_element_small {
    width: 20%;
    font-size: 18px;
}
.jsk_comparing-table_row__green_title {
    background: rgba(0, 156, 77, 0.10);
}
@media (max-width: 991px) {
    .jsk_comparing-table_element_small .jsk_subtitle {
        text-align: center;
    }
}