.common-banner .banner-swiper .swiper-slide {
    padding-top: 0;
}

.subscription-box {
    --p-t: clamp(30px, 5.2083vw, 100px);
    --p-b: clamp(40px, 7.8125vw, 150px);
    font-size: 20px;
    padding: var(--p-t) 0 var(--p-b);
}

.subscription-box .subscription-box__content {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: auto;
}

.subscription-box .box-title {
    color: #0a2d72;
    text-align: center;
    font-size: clamp(20px, 2.2916vw, 44px);
    font-weight: 500;
    line-height: calc(66 / 44);
}

.subscription-box .box-desc {
    color: #252525;
    font-size: clamp(14px, 1.0416vw, 20px);
    line-height: calc(36 / 20);
    margin-top: 14px;
}

.subscription-box .subscription-box__form {
    --p-x: clamp(20px, 3.125vw, 60px);
    --p-y: clamp(20px, 2.08333vw, 40px);
    display: block;
    margin-top: 30px;
    border-radius: 6px;
    background: #f3f4f8;
    padding: var(--p-y) var(--p-x);
}

.subscription-box .form-title {
    color: #000000;
    font-size: clamp(16px, 1.25vw, 24px);
    text-align: center;
    line-height: calc(36 / 24);
}

.subscription-box .form-content {
    margin-top: 24px;
}

.input-field {
    margin-top: 20px;
}

.input-field .input-field__content {
    --h: clamp(44px, 3.125vw, 60px);
    height: var(--h);
    line-height: var(--h);
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    border: 1px solid transparent;
    display: flex;
    transition: .3s linear;
}

.input-field.error .input-field__content {
    border-color: #FF0000;
}

.input-field .input-field__value {
    flex: 1 0 0;
    padding: 0 20px;
    position: relative;
}

.input-field input {
    font-size: clamp(14px, 0.8333vw, 16px);
    width: 100%;
    border: none;
    outline: none;
}

.input-field input:focus+label {
    opacity: 0;
}

.input-field label {
    font-size: clamp(14px, 0.8333vw, 16px);
    font-weight: 300;
    height: auto;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    cursor: text;
}

.input-field.required label::before {
    content: "*";
    color: #FF0000;
    vertical-align: middle;
}

.verification-code .input-field__after {
    height: calc(100% - clamp(2px, 0.2604166vw, 5px));
    align-self: center;
    border-radius: 6px;
    background: rgba(243, 244, 248, 1);
    padding: 0 6px;
}

.verification-code .input-field__after img {
    height: 98%;
    display: block;
    margin: auto;
}

.g-col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

.preferences {
    margin-top: 45px;
}

.preferences .title {
    font-size: clamp(16px, 1.25vw, 24px);
    font-weight: 500;
    line-height: 1.5;
}

.preferences .preference-item {
    font-size: clamp(14px, 1.0416vw, 20px);
    margin-top: 22px;
    display: flex;
}

.preferences .preference-item.error {
    animation: moveX .3s linear;
}

@keyframes moveX {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(12px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(12px);
    }

    100% {
        transform: translateX(0);
    }
}

.preferences .preference-item a {
    color: #0A2D72;
    text-decoration: #0A2D72 underline;
}

.preferences .preference-item strong {
    flex: 0 0 auto;
}

.preferences .preference-item span {
    font-weight: 300;
}

.preferences .preference-item .checkbox {
    position: relative;
    margin-right: 8px;
}

.preferences .preference-item .checkbox input {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    z-index: 1;
}

.preferences .preference-item .checkbox-content {
    --l: clamp(18px, 1.25vw, 24px);
    width: var(--l);
    height: var(--l);
    border: 1px solid #c4c4c4;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s linear;
}

.preferences .preference-item .checkbox-content img {
    opacity: 0;
    transition: opacity .3s linear;
}

.preferences .preference-item.flag input:disabled+.checkbox-content {
    background: rgba(0, 0, 0, .2);
}

.preferences .preference-item input:checked+.checkbox-content {
    border-color: transparent;
    background: #0A2D72;
}

.preferences .preference-item input:checked+.checkbox-content img {
    opacity: 1;
}

.submit-btn {
    min-width: clamp(120px, 11.71875vw, 225px);
    font-size: clamp(14px, 0.83333vw, 16px);
    line-height: clamp(44px, 2.8645833vw, 55px);
    color: #fff;
    text-align: center;
    background-color: #92F0A1;
    border-radius: 6px;
    border: none;
    outline: none;
    margin-top: 50px;
}

.submit-btn:active {
    background: #92F0A13d;
}

.submit-btn:disabled {
    background: rgba(0, 0, 0, .5);
}

.toast-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
}

.toast-box::after {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, .6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toast-box .toast-box__content {
    max-width: calc(100vw - 40px);
    width: 500px;
    min-height: 325px;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.toast-box .toast-box__content::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 171, 255, .6);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
}

.toast-box .toast-box__content.error::before {
    background: rgba(10, 45, 114, .25);
}

.toast-box .toast-box__content .close-btn {
    --l: 40px;
    width: var(--l);
    height: var(--l);
    border-radius: 50%;
    background: #CCCCCC;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.toast-box .toast-box__content .close-btn img {
    height: 65%;
}

.toast-box .toast-box__content .statu-img {
    width: 140px;
    margin: -55px auto 0;
}

.toast-box .toast-box__content .title {
    font-size: 24px;
    color: #333333;
}

.toast-box .toast-box__content .desc {
    font-size: 16px;
}

.toast-box .toast-box__content .desc.error {
    color: #FF0000;
    margin-top: 20px;
}

@media screen and (max-width: 750px) {
    .g-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .common-banner .banner-swiper .swiper-slide {
        padding-top: 0 !important;
    }
}