@charset "UTF-8";

html {
    scroll-behavior: smooth
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-family: sans-serif
}

body {
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0
}

a {
    color: #000;
    text-decoration: none
}

.wrapper {
    overflow-x: hidden
}

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

.btn-reset {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0
}

.input-reset {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    margin: 0
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

@media (max-width:768px) {
    .container {
        padding: 0 12px
    }
}

body {
    background-color: var(--primary-color)
}

.header {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1254901961)
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__logo img {
    width: 140px
}

@media (max-width:768px) {
    .header__logo img {
        width: 80px
    }
}

.header__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px
}

.header__action-btn {
    font-size: clamp(.875rem, 0.82rem+0.2vw, 1rem);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:768px) {
    .header__action-btn {
        padding: 12px 18px
    }
}

.header__action-btn:hover {
    opacity: .8
}

.header__action-btn:nth-child(1) {
    color: #fff
}

.header__action-btn:nth-child(2) {
    color: var(--primary-color);
    background-color: var(--muted-color)
}

.accordion-wrapper {
    overflow: hidden;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px
}

.accordion-item {
    background-color: #f9f9f9
}

.accordion-item:hover {
    opacity: .8
}

.accordion-item+.accordion-item {
    border-top: 1px solid #e1e1e1
}

.accordion-header {
    background-color: transparent;
    padding: 18px;
    width: 100%;
    text-align: left;
    font-size: clamp(1rem, 0.89rem+0.4vw, 1.25rem);
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width:768px) {
    .accordion-header {
        padding-left: 16px;
        font-weight: 400;
        padding-right: 16px
    }
}

.accordion-header:hover {
    background-color: #ececec
}

.accordion-header::after {
    content: "＋";
    font-size: clamp(1.25rem, 1.03rem+0.8vw, 1.75rem);
    line-height: 1;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease
}

.accordion-header.active::after {
    content: "−"
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease, padding 0.3s ease;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #fff;
    padding: 0 24px;
    font-size: clamp(.813rem, 0.73rem+0.3vw, 1rem);
    line-height: 1.6;
    color: #333
}

.accordion-header.active+.accordion-content {
    padding-top: 16px;
    padding-bottom: 24px
}

.footer {
    padding: 56px 0 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1254901961);
    background-color: #0c1220;
    margin-top: 100px
}

@media (max-width:768px) {
    .footer {
        margin-top: 50px;
        padding: 36px 0 0 0
    }
}

.footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 56px 0
}

@media (max-width:768px) {
    .footer__inner {
        padding: 0 0 36px 0
    }
}

.footer__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px
}

.footer__action-btn {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px
}

.footer__action-btn:hover {
    opacity: .8;
    -webkit-transform: scale(1.04);
    transform: scale(1.04)
}

.footer__action-btn:nth-child(1) {
    color: var(--primary-color);
    background-color: var(--white-color)
}

.footer__action-btn:nth-child(2) {
    color: var(--white-color);
    background-color: var(--muted-color)
}

.footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, .138);
    color: #d2d3d5;
    text-align: center;
    font-size: clamp(.75rem, 0.613rem+0.5vw, 1.063rem);
    font-weight: 400;
    line-height: 162%;
    padding: 12px 0
}

.content-title-xl {
    color: #fff;
    font-size: clamp(2rem, 1.45rem+2vw, 3.25rem);
    font-weight: 700;
    line-height: 105.372%;
    margin-top: 62px;
    margin-bottom: 26px
}

@media (max-width:768px) {
    .content-title-xl {
        margin-bottom: 20px;
        margin-top: 32px
    }
}

.content-title-xm {
    color: #fff;
    font-size: clamp(1.5rem, 1.115rem+1.4vw, 2.375rem);
    font-weight: 700;
    line-height: 105.372%;
    margin-top: 52px;
    margin-bottom: 26px
}

@media (max-width:768px) {
    .content-title-xm {
        margin-bottom: 20px;
        margin-top: 28px
    }
}

.content-subtitle {
    color: #d2d3d5;
    font-size: clamp(.875rem, 0.82rem+0.2vw, 1rem);
    line-height: 162%;
    margin: 32px 0 24px 0
}

@media (max-width:768px) {
    .content-subtitle {
        margin: 26px 0 14px 0
    }
}

.content-img-xl {
    width: 100%
}

.content-img-xl img {
    width: 100%;
    display: block;
    margin-top: 28px;
    display: block;
    border-radius: 24px
}

@media (max-width:768px) {
    .content-img-xl img {
        border-radius: 14px
    }
}

.content-btn a {
    color: #000;
    text-align: center;
    font-size: clamp(.875rem, 0.82rem+0.2vw, 1rem);
    font-weight: 700;
    line-height: 172.125%;
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
    padding: 12px 24px
}

.content-btn a:hover {
    opacity: .8;
    -webkit-transform: scale(1.04);
    transform: scale(1.04)
}

.content-titlel-m {
    color: #fff;
    font-size: clamp(1rem, 0.945rem+0.2vw, 1.125rem);
    line-height: 108.758%;
    margin: 42px 0 30px 0
}

@media (max-width:768px) {
    .content-titlel-m {
        margin: 28px 0 20px 0
    }
}

.content-list {
    list-style-type: decimal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    padding-left: 44px
}

.content-list a {
    color: #439ccf
}

.content-list li {
    color: #fff;
    font-size: clamp(.75rem, 0.695rem+0.2vw, .875rem)
}

.content-table {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 32px
}

@media (max-width:768px) {
    .content-table tr {
        font-size: 12px
    }
}

.content-table tr:first-child {
    background-color: var(--muted-xm-color);
    color: #fff;
    font-weight: 700
}

.content-table tr td {
    border: none;
    color: #fff;
    padding: 12px
}

@media (max-width:768px) {
    .content-table tr td {
        padding: 8px
    }
}

.content-table tr:nth-child(n+2):nth-child(even) {
    background-color: #252e41
}

.content-table tr:nth-child(n+2):nth-child(odd) {
    background-color: var(--muted-xm-color)
}

.content-img-m {
    display: block;
    margin-top: 30px
}

.subtitle-md {
    color: #fff;
    font-weight: 600;
    marg.in: 32px 0 20px 0
}

