@font-face{font-family:"Montserrat";src:url("../fonts/Montserrat-Regular.woff2")format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url("../fonts/Montserrat-Medium.woff2")format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Montserrat";src:url('../fonts/Montserrat-Bold.woff2')format("woff2");font-weight:700;font-style:normal;font-display:swap}
:root {
    --main-bg: #1d3837;
    --header-bg: #3a7c77;
    --table-bg: #244847;
    --intro-bg: #111215;
    --main-button-bg: #FF7A00;
    --main-button-hover-bg: #FFA200;
    --main-button-color-text: #fff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background-color: var(--main-bg);
    overflow-x: hidden;
}
h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.h2--second {
    font-size: 16px;
}

h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

h1.h1 {
    font-size: 24px;
}

p {
    font-size: 14px;
    color: #ECECECA6;
}

a {
    text-decoration: none;
}

.button {
    font-size: 14px;
    font-weight: 700;
    color: var(--main-button-color-text);
    padding: 16px 26px;
    width: 100%;
    border-radius: 32px;
    background: var(--main-button-bg);
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.button:hover {
    background: var(--main-button-hover-bg);
}

.button:active {
    background: var(--main-button-bg);
}

ul {
    margin-left: 20px;
}

ul li::marker {
    color: #FF7A00;
    font-size: 24px;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-icon {
    background: transparent;
    width: 50px;
    height: 50px;
    margin: 0 0 0 auto;
    position: relative;
    cursor: pointer;
}

.menu-icon span,
.menu-icon span:before,
.menu-icon span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 2px;
    width: 35px;
    background: white;
    position: absolute;
    left: 30%;
    top: 50%;
    display: block;
    content: '';
    transition: all 0.5s ease-in-out;
}

.menu-icon span:before {
    left: 0;
    top: -10px;
}

.menu-icon span:after {
    left: 0;
    top: 10px;
}

.menu-icon.active span {
    background-color: transparent;
}

.menu-icon.active span:before,
.menu-icon.active span:after {
    top: 0;
}

.menu-icon.active span:before {
    transform: rotate(135deg);
}

.menu-icon.active span:after {
    transform: rotate(-135deg);
}

.header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--header-bg);
    z-index: 99;
    box-shadow: 1px 2px 24px rgba(0, 0, 0, .3);
    flex-direction: column;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 250px;
    padding: 60px 40px 0;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    height: calc(100% - 60px);
    z-index: 99;
    background-color: var(--header-bg);
    box-shadow: 1px 2px 24px rgba(0, 0, 0, .3);
}

.header__buttons {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.header__container .button {
    width: 100%;
}

.header__container.show {
    transform: translateX(0);
    opacity: 1;
}

.header__logo img {
    width: 133px;
    height: 40px;
}

main {
    padding-top: 60px;
}

.banner {
    background-color: var(--table-bg);
}

.content-box {
    text-align: center;
    max-width: 650px;
    width: 100%;
    margin: 0 auto 40px auto;
}

.content-box h2 {
    margin-bottom: 16px;
}

.main-banner a {
    display: block;
}

.main-banner__links {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.main-banner__links::-webkit-scrollbar {
    display: none;
}

.main-banner__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d3837;
    color: #fff;
    padding: 20px;
    border-radius: 14px;
    font-weight: 700;
}

.container__small {
    max-width: 840px;
}

.link {
    font-weight: 700;
    color: #FF7A00
}

.link:hover {
    color: #FFA200;
}

.link:active {
    color: #FF7A00;
}

section {
    padding: 30px 0;
}

/*.main-banner {*/
/*    padding-top: 50px;*/
/*}*/

.main-banner .content-box {
    margin-bottom: 0;
}

.main-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.card {
    background-color: var(--table-bg);
    border-radius: 20px;
    box-shadow: 1px 2px 24px rgba(0, 0, 0, 0.3);
}

.table-card {
    background-color: var(--table-bg);
    width: 100%;
    margin: 0 auto;
}

.table-card + h2, h3, p {
    margin-top: 16px;
}

.table {
    color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0;
    padding: 10px;
    font-size: 14px;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody:not(#nav-menu) tr td:first-child {
    border-right: 1px solid #ECECECA6;
}

.table tbody tr td {
    padding: 5px;
    border-bottom: 1px solid #ECECECA6;
}

.section--white {
    padding: 0;
}

.section--white-container {
    background-color: #fff;
    border-radius: 48px;
    padding: 20px;
}

.section--white .contents-block {
    display: flex;
    flex-direction: column;
}

.section--white .contents-block__img {
    order: 1;
}

.section--white .contents-block__content {
    order: 2;
}

.section--white + section {
    padding-top: 40px;
}

section p {
    margin-bottom: 16px;
}
.button__container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.not-padding {
    padding: 0;
}

ul {
    margin-bottom: 40px;
    color: #ECECEC;
    line-height: 24px;
}

ul li {
    padding: 3px 0;
    font-size: 14px;
}

ol {
    color: #ECECEC;
    line-height: 24px;
    margin-left: 20px;
    margin-bottom: 16px;
}

ol li {
    padding: 5px;
}

ol li::marker {
    color: #FF7A00;
    font-weight: 700;
}

.contents-block h2 {
    font-weight: 700;
    color: #0B0121;
    margin-bottom: 14px;
    line-height: 120%;
}

.contents-block p {
    color: #2D445C;
    margin-bottom: 10px;
    font-size: 14px;
}

.contents-block ul li {
    color: #2D445C;
}

.contents-block__img {
    margin: 0 auto;
    width: 200px;
}

.contents-block__img img {
    width: 100%;
    height: auto;
    display: block;
}

.contents-block__content {
    max-width: 100%;
    overflow-wrap: break-word;
}

.contents-block__content a {
    width: 100%;
}

.contents-block__container:first-child {
    margin-bottom: 44px;
}

.pros--cons .table {
    padding: 0;
}
.pros--cons .table thead th {
    padding: 20px 10px;
    background: var(--header-bg);
    font-size: 16px;
}

.pros--cons .table td {
    padding: 8px;
}

.pros--cons .table thead th:first-child {
    border-right: 1px solid #ECECECA6;
    border-top-left-radius: 20px;
}

.pros--cons .table thead th:last-child {
    border-top-right-radius: 20px;
}

.faq h2 {
    margin-bottom: 20px;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq__item {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    font-weight: 500;
    line-height: 24px;
}

.faq__item:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--table-bg);
    background-image: url("../img/icon/icon-arrow.svg");
    background-repeat: no-repeat;
    background-position: 7px 10px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq__item.active::after {
    transform: rotate(180deg);
}

.faq__question {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 24px 50px 24px 24px;
    cursor: pointer;
}

.faq__question h3 {
    font-weight: 500;
    font-size: 18px;
    margin: 0;
}

.faq__answer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    padding: 0 24px 24px;
    display: none;
    font-size: 12px;
}

.faq__answer p {
    color: #ECECEC;
    font-size: 16px;
}

.faq__item.active .faq__answer {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.reviews h2 {
    margin-bottom: 20px;
    text-align: center;
}

.reviews button {
    margin: 0 auto;
    outline: none;
    border: none;
    cursor: pointer;
}

.reviews__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.review {
    padding: 20px 20px 44px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    position: relative;
}

.review__date {
    position: absolute;
    right: 44px;
    bottom: 20px;
    font-size: 12px;
}


.review__block {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 7px;
}

.review__author {
    font-weight: 700;
}

.stars {
    color: #FF7A00;
    font-size: 20px;
}

.review__content {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

.review.extra-reviews {
    padding: 0;
}

.extra-reviews {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.extra-reviews.visible {
    padding: 44px;
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.sticky_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px 10px;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.sticky_buttons .close {
    position: absolute;
    right: 10px;
    top: -35px;
    background: #FF7A00;
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
}

.sticky_buttons_container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.sticky_buttons_container a {
    max-width: 400px;
    width: 100%;
    height: 45px;
    min-width: auto;
}

footer {
    padding: 30px 0;
    border-top: 1px solid #000;
    margin-top: 20px;
    text-align: center;
}

footer nav {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 24px;
}

@media screen and (min-width: 500px) {
    .content-box h2 {
        margin-bottom: 24px;
    }

    .button {
        width: max-content;
        font-size: 18px;
        height: 60px;
    }

    ul li {
        font-size: 16px;
        padding: 5px 0;
    }

    .table {
        font-size: 16px;
    }

    .table tbody tr td {
        padding: 10px;
    }

    .pros--cons .table thead th {
        font-size: 24px;
    }

    .contents-block {
        gap: 20px;
    }
    .contents-block__img {
        width: 400px;
    }

    .contents-block h2 {
        margin-bottom: 24px;
    }

    .contents-block p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .faq h2 {
        margin-bottom: 44px;
    }
    .reviews h2 {
        margin-bottom: 44px;
    }

    .faq__item:after {
        top: 24px;
    }
    .faq__question {
        font-size: 16px;
    }
    .faq__answer {
        font-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }

    .h2--second {
        font-size: 24px;
    }

    h3 {
        font-size: 24px;
    }

    h1.h1 {
        font-size: 48px;
    }

    p {
        font-size: 18px;
    }

    .container {
        padding: 0 40px;
    }

    .menu-icon {
        display: none;
    }

    .header {
        height: 90px;
    }

    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        position: relative;
        padding: 0;
        transform: translateX(0);
        top: 0;
        bottom: auto;
        flex: 0 0;
        opacity: 1;
    }

    .header__container .button {
        width: max-content;
    }

    .header__buttons {
        flex-direction: row;
    }

    .header__logo img {
        width: 100%;
        height: 100%;
    }

    main {
        padding-top: 90px;
    }

    .banner {
        margin-bottom: 30px;
    }

    section {
        padding: 20px 0;
    }

    .table-links tr {
        white-space: nowrap;
        flex: 1;
        width: auto;
    }

    .contents-block__img {
        width: 600px;
        flex: 1;
    }

    .contents-block__content {
        flex: 1;
    }

    .contents-block__content a {
        width: auto;
    }

    .contents-block p {
        font-size: 18px;
    }

    .content-wrapper__img {
        height: 400px;
    }


    .review__block {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .reviews__list {
        grid-template-columns: repeat(2, 2fr);
    }

    .reviews h2 {
        font-size: 48px;
    }

    .review {
        padding: 44px;
    }
}

@media screen and (min-width: 960px) {
    .section--white .contents-block {
        flex-direction: row;
        align-items: center;
    }

    .contents-block {
        display: flex;
    }
}
