/* --- Design tokens + base --- */
html { font-size: 14px; box-sizing: border-box; }
body { font-size: 1rem; line-height: 1.5; margin: 0; padding: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-min { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 2rem 0; }

:root {
    --accent: #f97316;
    --accent-2: #fb923c;
    --accent-hover: #ea580c;
    --accent-soft: rgba(249, 115, 22, 0.18);
    --bg-hero: #111827;
    --bg-hero-end: #1f2937;
    --text-hero: #f9fafb;
    --muted: #cbd5e1;
    --card-border: rgba(148, 163, 184, 0.26);
    --radius: 12px;
    --radius-lg: 20px;
}

.material-words::before { display: none; }
.toplang { font-size: 16px; }
.toplang a { color: #fff; font-size: 16px; margin: 0 6px; }
.quiz-semifinal__img { width: 50.5625vw; position: absolute; }
.modal-call {
    padding: 50px !important;
    max-width: 420px;
    border-radius: var(--radius-lg);
    background: var(--bg-hero-end);
    border: 1px solid var(--card-border);
}
.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.modal__close:hover { color: var(--text-hero); }
.modal__form-title { margin: 0 0 8px; font-size: 1.15rem; font-weight: 600; color: var(--text-hero); }
.modal__form-desc { margin: 0 0 20px; color: var(--muted); font-size: 0.9rem; }
.modal .btn--submit {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius);
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.modal .btn--submit:hover { background: var(--accent-hover); }
.modal .input,
.modal .quiz-semifinal__input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,.06);
    color: var(--text-hero);
    font-size: 1rem;
}
.modal .input::placeholder { color: var(--muted); }
.modal .input:focus { outline: none; border-color: var(--accent); }
.policy { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 12px; color: var(--muted); }
.policy__check { flex-shrink: 0; width: 18px; height: 18px; border: 1px solid var(--card-border); border-radius: 4px; }
.logo__link {
    color: var(--text-hero);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}
.logo__link:hover { color: #fff; }
.logo__img { display: none !important; }
.section-title { margin: 0; font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; color: var(--text-hero); }
.footer__text { margin: 0; font-size: 13px; color: var(--muted); }
.footer { background: var(--bg-hero); border-top: 1px solid var(--card-border); }
.reasons-section {
    position: relative;
    z-index: 3;
    padding: 3rem 0;
    background: var(--bg-hero-end);
}
.reasons-head { margin-bottom: 1.5rem; }
.reasons-section .section-title {
    font-size: clamp(2.4rem, 4.5vw, 3.3rem);
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(
        105deg,
        #c9a227,
        #f4e4bc,
        #d4af37,
        #fff8e7,
        #b8860b,
        #f0d78c,
        #c9a227
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleShimmer 8s ease-in-out infinite;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1040px;
    margin: 0 auto;
}
.reason-card {
    position: relative;
    border-radius: 12px;
    min-height: 170px;
    padding: 1.25rem 1.1rem;
    border: 1px solid var(--card-border);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}
.reason-card h3 {
    margin: 0 0 8px;
    font-size: 1.72rem;
    line-height: 1.25;
    font-weight: 700;
    background: linear-gradient(
        105deg,
        #c9a227,
        #f4e4bc,
        #d4af37,
        #fff8e7,
        #b8860b,
        #f0d78c,
        #c9a227
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleShimmer 8s ease-in-out infinite;
}
.reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1.4;
}
.reasons-bottom {
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}
.reasons-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 56px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid rgba(251, 146, 60, 0.45);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.reasons-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.34);
}
@media (max-width: 768px) {
    .reasons-grid { grid-template-columns: 1fr; gap: 1rem; }
    .reason-card { min-height: 140px; }
    .reason-card h3 { font-size: 1.4rem; }
    .reason-card p { font-size: 1.15rem; }
    .reasons-section .section-title { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .reasons-btn {
        width: 100%;
        min-width: 0;
        font-size: 22px;
    }
}

.quiz__uislider .toggle-slider {
    width: 100%;
    height: 7px;
    background: #d9d9d9;
    position: relative;
    margin: 0 0 0;
    padding: 0 10px;
    border-radius: 15px;
    border: 0!important;
    margin-top: 25px;
}

.quiz__uislider .toggle-slider-min{
    position: absolute;
    left: 0;
    bottom: 0px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.quiz__uislider .toggle-slider-max{
    position: absolute;
    right: 0;
    bottom: 0px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.quiz__uislider .ui-slider-handle {
    width: 23px;
    height: 23px;
    position: absolute;
    top: -8.5px;
    margin-left: -6px;
    z-index: 200;
    border-radius: 50px;
    background-color: #d9d9d9;
    border: 0;
    box-shadow: .5px .5px 2px 1px rgba(0, 0, 0, .32);
    transition: 0s;
    border: 6px solid #f5583b;
}

.quiz__uislider .ui-widget-header {
    background: #f5583b;
    height: 7px;
    left: -1px;
    top: 0px;
    position: absolute;
    border-radius: 10px
}

.quiz__uislider .slider-result {
    text-align: center;
    position: absolute;
    top: -34px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #f5583b;
    border-radius: 5px;
    color: #fff;
    font: 14px Jost, sans-serif;
    padding: 5px 7px;
    min-width: 30px
}

.quiz__uislider .slider-result:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #f5583b;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.toggle-value {
    font-size: .8em;
    font-family: Jost, sans-serif;
    color: #4a4a4a
}

.toggle-result{
    width: 100%;
    max-width: 160px;
    border-radius: 4px;
    border: 1.2px solid #c0c4c3;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    font-weight: 400;
    font-family: Jost;
    color: #2e2e54;
    letter-spacing: 1px;
    padding: 0 20px;
    text-align: center;
    background: none;
}

.quiz__uislider{
    margin: 25px 0;
    position: relative;
    padding-bottom: 30px;
}

.quiz__uislider label{
    font-size: 15px;
    display: block;
    margin-bottom: 0;
}

.main {
    background:
        linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.42)),
        url("../desk.png") center / cover no-repeat;
    position: relative;
    min-height: 100vh;
}
.hero-bg-placeholder {
    position: absolute;
    inset: 0;
    background: transparent;
}
.maingallery {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.maingallery__inside { position: relative; width: 100%; height: 100%; }

.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 600px;
    margin-left: auto;
    margin-right: 210px;
    text-align: right;
}

.hero-card {
    width: fit-content;
    max-width: 100%;
    padding: 34px 16px 56px 14px;
    border-radius: 10px;
    border: none;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero-card .topzag { margin-bottom: 8px; }
.hero-card .hero__title { margin-bottom: 22px; }
.hero-card .hero-subtext { margin-bottom: 30px; }
.hero-card .hero-wrapper { margin-top: 28px; margin-bottom: 0; }

.hero .tac {
    text-align: left !important;
}

.hero .hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-content: flex-start;
}

.hero .hero-wrapper .btn--arrow {
    min-width: 340px;
    height: 68px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(251, 146, 60, 0.45);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}
.hero .hero-wrapper .btn--arrow:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.36);
}
.hero .hero-wrapper .btn--arrow .btn-text {
    font-size: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero__title {
    margin: 0;
    font-size: clamp(1.75rem, 4.2vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    background: linear-gradient(
        105deg,
        #c9a227,
        #f4e4bc,
        #d4af37,
        #fff8e7,
        #b8860b,
        #f0d78c,
        #c9a227
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleShimmer 8s ease-in-out infinite;
}

@keyframes heroTitleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero .btn--arrow .btn-arrow-icon {
    display: none;
}

@media (min-width: 769px) {
    .hero .topzag { display: none; }
}

.hero .hero-subtext {
    max-width: 560px;
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1.35;
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(
        110deg,
        #94a3b8,
        #c4d0e0,
        #f1f5f9,
        #e0e7f0,
        #a8b8cc,
        #94a3b8
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroSubtextShimmer 6s ease-in-out infinite;
}

@keyframes heroSubtextShimmer {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
}

.hero-wrapper .btn--results {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 56px;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.hero-wrapper .btn--results:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-1px);
}

.maingallery div{
    height: 100%;
}
.maingallery__inside{
    position: relative;
    width: 100%;
}
.maingallery__inside:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.5);
}
.maingallery__inside img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.header{
    z-index: 3;
    position: relative;
}
.topzag {
    letter-spacing: 0.02em;
    display: inline-block;
    padding: 0.35em 0.9em;
    background-color: var(--accent);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.topzag span { display: block; }
.col-white { color: #fff; }
.text-center {
    text-align: center;
}
section#quiz h2, section#quiz h1 {
    text-shadow: 1px 1px 4px #0000007a;
}


@media (max-width: 767px) {
    .hero .container {
        max-width: 100%;
        margin-left: 0;
    }
    .hero .tac {
        text-align: left !important;
    }
    .topzag {
    font-size: 13px;
}
    .toggle-result{
        width: 100%;
    }
    .toplang {
        position: absolute;
        top: 75px;
        right: 8px;
    	z-index: 100;
    }
    .fz70 {
        font-size: 2.7rem !important;
    }
        .fz18 {
        font-size: 1.7rem;
    }
    .fz48 {
        font-size: 2.3rem !important;
    }
    .main{
        display: flex;
        flex-direction: column;
    }
    .main .hero{
        padding: 180px 0 40px 0;
        margin: 0;
    }
    .sele-3{
        margin-left: auto;
        margin-right: auto;
    }

    .hero .topzag,
    .hero h1,
    .hero .hero-wrapper {
        opacity: 0;
        transform: translateY(18px);
        animation: heroFadeUp 0.8s ease forwards;
    }

    .hero .topzag {
        animation-delay: 0.15s;
    }

    .hero h1 {
        animation-delay: 0.35s;
    }

    .hero .hero-wrapper {
        animation-delay: 0.55s;
    }

    @keyframes heroFadeUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 768px) {
    body { overflow-x: hidden; }
    .main{
        width: 100%;
        min-width: 100%;
        min-height: 100vh;
        background:
            linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.42)),
            url("../mob.png") center center / cover no-repeat;
    }

    .hero{
        padding-top: 290px;
        padding-bottom: 20px;
    }

    .hero .container{
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
        align-items: flex-start;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 12px;
        box-sizing: border-box;
        position: relative;
        min-height: 420px;
    }

    .hero .topzag{
        display: none;
    }

    .hero-card{
        display: block;
        width: fit-content;
        max-width: 100%;
        padding: 20px 16px 14px 14px;
        border-radius: 10px;
        border: none;
        background: rgba(15, 23, 42, 0.82);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        margin-top: 38px;
    }

    .hero h1{
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.35;
        margin: 0 0 0 0;
        max-width: 100%;
        letter-spacing: 0.2px;
        font-weight: 700;
        text-shadow: 0 0 8px rgba(255,255,255,0.4), 0 0 20px rgba(255,255,255,0.25);
        white-space: normal;
    }

    .hero .hero-subtext {
        display: none;
    }

    .hero .tac {
        text-align: left !important;
    }

    .hero-wrapper{
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 0;
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 4%;
        z-index: 5;
    }

    .hero-wrapper .btn--arrow{
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 56px;
        min-height: 56px;
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background-size: 220% 100%;
        animation: mobileBtnShimmer 3.2s ease-in-out infinite, mobileBtnPulse 1.9s ease-in-out infinite;
    }

    .hero-wrapper .btn--arrow .btn-text{
        font-size: 22px;
        line-height: 1;
        white-space: nowrap;
        text-align: center;
        padding: 0 10px;
    }

    @keyframes mobileBtnShimmer {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes mobileBtnPulse {
        0%, 100% { box-shadow: 0 8px 18px rgba(249, 115, 22, 0.34); transform: translateY(0); }
        50% { box-shadow: 0 12px 26px rgba(251, 146, 60, 0.52); transform: translateY(-1px); }
    }

    .hero-wrapper .btn--arrow img {
        width: 14px;
    }

    .hero-wrapper .btn--results{
        width: 240px;
        min-width: 240px;
        max-width: 240px;
        height: 56px;
        min-height: 56px;
        padding: 0 20px;
        font-size: 18px;
    }
}
input.main-input__inner {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.main-input {
    width: 100%;
    margin-bottom: 30px;
}

.hero-video-section {
    position: relative;
    z-index: 3;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--bg-hero-end);
}

.hero-video-head p {
    margin-top: 1rem;
    color: #f2f2f2;
}

.hero-video-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2.4rem;
}

.hero-video-viewport {
    width: 100%;
    position: relative;
    height: 420px;
    overflow: visible;
}

.hero-video-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero-video-track .hero-video-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: 48%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
    z-index: 1;
    margin-top: 0 !important;
    pointer-events: none;
}

.hero-video-track .hero-video-item.center {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
    filter: none;
    pointer-events: auto;
}

.hero-video-track .hero-video-item.side-left {
    transform: translateX(-95%) scale(0.82);
    opacity: 0.56;
    z-index: 2;
    filter: brightness(0.8);
}

.hero-video-track .hero-video-item.side-right {
    transform: translateX(-5%) scale(0.82);
    opacity: 0.56;
    z-index: 2;
    filter: brightness(0.8);
}

.hero-video-track .hero-video-item.hidden {
    transform: translateX(-50%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.hero-video-poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.hero-video-poster {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
}

.hero-video-poster span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}

.hero-video-poster--sunset { background: linear-gradient(135deg, #7a2c13 0%, #f5583b 40%, #ffb36d 100%); }
.hero-video-poster--aurora { background: linear-gradient(135deg, #22356e 0%, #2d8dd3 45%, #83f5d2 100%); }
.hero-video-poster--candy { background: linear-gradient(135deg, #642b73 0%, #c6426e 45%, #ff8e72 100%); }
.hero-video-poster--ice { background: linear-gradient(135deg, #005b8f 0%, #00a0d8 45%, #87e9ff 100%); }
.hero-video-poster--fire { background: linear-gradient(135deg, #3d1d0f 0%, #b9451f 45%, #f8b14f 100%); }

.hero-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    pointer-events: none;
}

.hero-video-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}
.hero-video-btn:hover { background: var(--accent-hover); }

body.hero-video-modal-open .hero-video-prev,
body.hero-video-modal-open .hero-video-next {
    visibility: hidden;
    pointer-events: none;
}

.video-modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal-wrap .box-modal {
    position: relative;
    width: 100%;
    max-width: min(90vw, 900px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-modal-wrap .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    transition: background 0.2s;
}

.video-modal-wrap .modal-close:hover {
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-wrap .modal-content-box {
    width: 100%;
    line-height: 0;
}

.video-modal-wrap .video-modal-player {
    display: block;
    width: 100%;
    max-height: calc(100vh - 48px);
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-video-viewport {
        height: 340px;
    }
}

@media (max-width: 767px) {
    .video-modal-wrap {
        padding: 12px;
    }
    .video-modal-wrap .box-modal {
        max-width: 100%;
        border-radius: 12px;
    }
    .video-modal-wrap .modal-close {
        top: 8px;
        right: 8px;
        width: 48px;
        height: 48px;
        font-size: 28px;
        min-width: 48px;
        min-height: 48px;
    }
    .video-modal-wrap .video-modal-player {
        max-height: calc(100vh - 24px);
    }
    .hero-video-carousel {
        position: relative;
        display: block;
    }
    .hero-video-viewport {
        height: 280px;
        margin-top: 18px;
    }
    .hero-video-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        font-size: 24px;
        z-index: 5;
    }
    .hero-video-btn.prev {
        left: 6px;
    }
    .hero-video-btn.next {
        right: 6px;
    }
    .hero-video-track .hero-video-item {
        width: 65%;
    }
    .hero-video-track .hero-video-item.side-left {
        transform: translateX(-86%) scale(0.82);
    }
    .hero-video-track .hero-video-item.side-right {
        transform: translateX(-14%) scale(0.82);
    }
    .hero-video-poster span {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .hero .fz70,
    .hero .hero-subtext {
        font-weight: 600;
    }
    .hero .fz70 {
        margin-top: 0.6em;
    }
}