/* =======================================================================
   Heros (處處物管俠) custom page  — v3 (matches /doc/edits + /doc/edits2)
   ======================================================================= */

/* Variables on both the page and the modals (modals render outside .hero-page) */
.hero-page,
.hero-modal {
    --hero-rose: #D16768;
    --hero-orange: #D26C34;
    --hero-orange-btn: #E48E66;
    --hero-peach: #FDF1E8;
    --hero-ink: #1d1d1f;
    --hero-muted: #8D8D8D;
    --hero-field-border: rgba(211, 67, 0, 0.5);   /* #D34300 @ 50% */
    font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Open Sans", sans-serif;
    color: var(--hero-ink);
}
.hero-page { overflow-x: hidden; }
.hero-page *, .hero-modal * { box-sizing: border-box; }

/* ---------- shared bits ---------- */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--hero-rose);
    color: #fff;
    border-radius: 1000px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}
.hero-tag__icon { width: 18px; height: 18px; object-fit: contain; flex: 0 0 auto; }
.hero-section-title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #000;
    line-height: 1.3;
}
.hero-section-intro {
    font-size: 18px;
    color: var(--hero-muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero-section-intro--left { margin: 0; max-width: 660px; }

.hero-btn {
    display: inline-block;
    border: none;
    border-radius: 8px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
}
.hero-btn--dark { background: #000; color: #fff; }
.hero-btn--dark:hover { background: #333; color: #fff; }
.hero-btn--frost { background: rgba(255,255,255,.75); color: #1d1d1f; box-shadow: 0 4px 4px rgba(0,0,0,.15); }
.hero-btn--frost:hover { background: #fff; color: #000; }
.hero-btn--outline { background: #fff; color: var(--hero-orange); border: 1px solid var(--hero-orange); border-radius: 1000px; }
.hero-btn--outline:hover { background: var(--hero-peach); }
/* "了解更多" — light grey background, orange text, always visible */
.hero-btn--more { background: #F1EFEC; color: var(--hero-orange) !important; border-radius: 1000px; padding: 11px 30px; }
.hero-btn--more:hover { background: #e7e4e0; color: var(--hero-orange) !important; }
.hero-btn--more.is-disabled { cursor: default; pointer-events: none; }

/* ---------- hero banner ---------- */
.hero-banner { line-height: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* ---------- action bar ---------- */
.hero-actionbar {
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 22px 16px;
    flex-wrap: wrap;
}
.hero-actionbar__btn {
    border-radius: 1000px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
}
.hero-actionbar__btn--outline { background: #fff; color: var(--hero-orange); border: 1px solid var(--hero-orange); }
.hero-actionbar__btn--outline:hover { background: var(--hero-peach); }
.hero-actionbar__btn--solid { background: var(--hero-rose); color: #fff; border: 1px solid var(--hero-rose); }
.hero-actionbar__btn--solid:hover { filter: brightness(.95); }

/* ============== background section ============== */
.hero-background {
    position: relative;
    /* whiter than before */
    background: linear-gradient(0deg, rgba(249, 223, 193, 0.16), rgba(249, 223, 193, 0.16)), #FFFFFF;
    padding: 70px 16px 80px;
    overflow: hidden;
}
.hero-background__texture {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    pointer-events: none;
}
.hero-background__inner { position: relative; max-width: 1180px; margin: 0 auto; }

.hero-background__row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin: 42px 0 30px;
}
.hero-bubbles {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
}
.hero-bubble {
    position: relative;
    background: #FFF6EF;
    border: 1.5px solid #F2C9AD;
    border-radius: 18px;
    padding: 16px 24px 28px;
    filter: drop-shadow(0 8px 12px rgba(180, 120, 80, 0.18));
    display: flex;
    flex-direction: column;
    height: 145px;
    min-width: 0;
}
.hero-bubble::after {  /* bordered speech-bubble tail (bottom) */
    content: "";
    position: absolute;
    bottom: -9px;
    left: 42px;
    width: 18px;
    height: 18px;
    background: #FFF6EF;
    border-right: 1.5px solid #F2C9AD;
    border-bottom: 1.5px solid #F2C9AD;
    transform: rotate(45deg);
}
.hero-bubble__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 12px;
    z-index: 100;
}
.hero-bubble__icon { width: 34px; height: 34px; object-fit: contain; flex: 0 0 auto; }  /* solid red glyph */
.hero-bubble__title { font-size: 18px; font-weight: 700; margin: 0; color: #000; min-height: 2.6em; display: flex; align-items: center; justify-content: center; text-align: center; text-wrap: pretty; overflow-wrap: break-word; word-break: break-word; width: 100%; min-width: 0; padding: 0 2px; }

/* English-specific: smaller bubbles for longer text */
.hero-page-en .hero-bubble { height: 145px; padding: 12px 18px 20px; }
.hero-page-en .hero-bubble__head { gap: 8px; }
.hero-page-en .hero-bubble__title { font-size: 15px; }

/* Chinese-specific: compact bubbles for shorter text */
.hero-page-tc .hero-bubble,
.hero-page-sc .hero-bubble { height: 130px; padding: 14px 20px 22px; }
.hero-page-tc .hero-bubble__head,
.hero-page-sc .hero-bubble__head { gap: 10px; }
.hero-page-tc .hero-bubble__title,
.hero-page-sc .hero-bubble__title { font-size: 17px; }
.hero-bubble__desc { font-size: 14px; color: #6f6f6f; line-height: 1.7; margin: 0; }

.hero-background__proman { width: 220px; height: auto; align-self: flex-end; flex: 0 0 auto; }

/* highlight: directly on the section background (no white card) */
.hero-background__highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: transparent;
    padding: 6px 2px;
    flex-wrap: wrap;
}
.hero-background__highlight p {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    min-width: 260px;
    color: #1d1d1f;
}

/* ============== moments / marquee ============== */
.hero-moments {
    position: relative;
    background: #fff;
    padding: 70px 0 90px;
    overflow: hidden;
}
.hero-moments__head { max-width: 1100px; margin: 0 auto 38px; padding: 0 16px; text-align: center; }
.hero-moments__head--left { text-align: left; max-width: 1180px; }
.hero-moments__stage { position: relative; }

/* gallery (alternating 2-stack / 1-big columns, square corners, seamless) */
.hero-gallery {
    height: 440px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.hero-gallery__track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: hero-scroll 180s linear infinite;
    will-change: transform;
}
.hero-gallery:hover .hero-gallery__track { animation-play-state: paused; }
.hero-gallery__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    margin: 0 7px;
}
.hero-gallery__col--one { width: 380px; }
.hero-gallery__col--two { width: 340px; }
.hero-gallery__item {
    position: relative;
    flex: 1 1 0;
    min-height: 80px;
    border-radius: 0;
    overflow: hidden;
}
.hero-gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f0f0f0;
    z-index: 0;
}
.hero-gallery__item::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 32px; height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid #ddd;
    border-top-color: var(--hero-orange, #e67e22);
    border-radius: 50%;
    z-index: 1;
    animation: hero-spin 0.7s linear infinite;
}
@keyframes hero-spin { to { transform: rotate(360deg); } }
.hero-gallery__item img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; opacity: 0; transition: opacity 0.5s ease; backface-visibility: hidden; transform: translateZ(0); image-rendering: -webkit-optimize-contrast; }
.hero-gallery__item.loaded img { opacity: 1; }
.hero-gallery__item.loaded::after { display: none; }

/* quote pills — two rows, top row overlaps the masonry */
.hero-quotes {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.hero-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.hero-marquee__track { display: flex; width: max-content; align-items: center; padding: 8px 0; }
.hero-marquee--quotes .hero-marquee__track { animation: hero-scroll 120s linear infinite; }
.hero-marquee--slow .hero-marquee__track { animation-duration: 48s; }
.hero-marquee:hover .hero-marquee__track { animation-play-state: paused; }

.hero-quote-chip {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, rgba(255, 235, 220, 0.6), rgba(255, 235, 220, 0.6)), rgba(255, 255, 255, 0.9);
    color: var(--hero-orange);
    border-radius: 1000px;
    padding: 13px 22px;
    margin: 0 14px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
}
/* quote marks: actual images, ~65% of the original size, both placed OUTSIDE
   the bubble (open = top-left, close = bottom-right). The moments section uses
   the orange marks; the stories grid + popups override to the light marks. */
.hero-quote-chip__open,
.hero-quote-chip__close {
    position: absolute;
    display: inline-block;
    width: 17px; height: 17px;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.hero-quote-chip__open {
    top: -8px; left: -6px;
    background-image: url('/useful/heros/images/quote-left.png');
}
.hero-quote-chip__close {
    bottom: -8px; right: -6px;
    background-image: url('/useful/heros/images/get-quote.png');
}
.hero-quote-chip__text { display: inline; white-space: normal; word-break: break-word; }



@keyframes hero-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hero-moments__fade {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 360px;
    max-width: 32vw;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #FFFFFF 80%);
    pointer-events: none;
    z-index: 4;
}
.hero-moments__overlay {
    position: absolute;
    right: 56px;
    bottom: 30px;
    width: 280px;          /* 1.4x larger */
    max-width: 32vw;
    pointer-events: none;
    z-index: 5;
}

/* ============== stories ============== */
.hero-stories {
    position: relative;
    background-color: #fff;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat-y;
    padding: 72px 16px 96px;
    text-align: center;
}
/* Wash the tiled background toward white so the repeat seam (darker bottom
   edge meeting brighter top edge) is barely perceptible. */
.hero-stories::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.52);
    pointer-events: none;
    z-index: 0;
}
.hero-stories > * { position: relative; z-index: 1; }
.hero-stories__head { max-width: 1100px; margin: 0 auto 56px; }
.hero-stories__grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 30px;
}
.hero-story-card {
    position: relative;
    cursor: pointer;
    padding-top: 30px;     /* room for the raised quote (overlaps card top) */
    transition: transform .25s ease;
}
.hero-story-card.is-hidden { display: none; }
.hero-story-card:hover { transform: translateY(-6px); }

/* quote raised ~50% above the card's top rounded corner, open/close-mark style */
.hero-story-card__quote {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(0deg, rgba(255, 235, 220, 0.6), rgba(255, 235, 220, 0.6)), rgba(255, 255, 255, 0.9);
    color: var(--hero-orange);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 1000px;
    width: 92%;
    white-space: normal;
    box-shadow: 0 6px 14px rgba(180,80,40,.25);
}
.hero-story-card__media {
    position: relative;
    border-radius: 1000px;     /* top + bottom semicircles (stadium) */
    overflow: hidden;
    padding-top: 132%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 36px rgba(120,80,60,.18);
}
.hero-story-card__overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 60px 18px 38px;
    background: linear-gradient(179.95deg, rgba(0,0,0,0) 0.04%, rgba(0,0,0,0.6) 90%);
    color: #fff;
    text-align: center;
}
.hero-story-card__license { font-size: 12px; color: #F5AFAD; }
.hero-story-card__say { margin: 6px 0 0; line-height: 1.45; }
.hero-story-card__say strong { font-weight: 800; color: #fff; font-size: 18px; }
.hero-story-card__saying { display: block; color: #fff; font-size: 14px; margin-top: 3px; font-weight: 400; }

.hero-stories__more { margin-top: 54px; }

/* ============== next ============== */
.hero-next {
    position: relative;
    background-position: center;
    height: 495px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
}
.hero-next__inner { position: relative; max-width: 760px; margin: 0 auto; color: #fff; padding-top: 160px; }
.hero-next__title { font-size: 32px; font-weight: 800; margin: 0 0 16px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.hero-next__subtitle { font-size: 16px; line-height: 1.8; opacity: .95; margin: 0 0 30px; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.hero-next__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-page-en .hero-next__inner { padding-top: 200px; }
.hero-page-en .hero-next__title { font-size: 20px; }
.hero-page-en .hero-next__subtitle { font-size: 16px; }

/* =======================================================================
   Modals
   ======================================================================= */
.hero-modal {
    position: fixed; inset: 0;
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
}
.hero-modal.is-open { display: flex; }
.hero-modal__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); }
.hero-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 36px;
    width: 100%;
    max-width: 640px;
    padding: 44px;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    z-index: 1;
    margin: auto;
}
.hero-modal__dialog--story { max-width: 900px; }
.hero-modal__close {
    position: absolute;
    top: 22px; right: 26px;
    background: none; border: none;
    font-size: 30px; line-height: 1;
    color: #E48E66;        /* per spec */
    cursor: pointer;
    z-index: 3;
}

/* ---- story popup: image left, text right ---- */
.hero-spop__body { display: flex; gap: 34px; align-items: flex-start; }
.hero-spop__media { flex: 0 0 46%; max-width: 46%; }
.hero-spop__media img { width: 100%; border-radius: 18px; display: block; }
.hero-spop__content { flex: 1; padding-right: 24px; }
.hero-spop__license { font-size: 14px; color: #F5AFAD; font-weight: 600; }
.hero-spop__name { font-size: 26px; font-weight: 800; margin: 6px 0 18px; color: #000; line-height: 1.35; }
.hero-spop__quote {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, rgba(255, 235, 220, 0.6), rgba(255, 235, 220, 0.6)), rgba(255, 255, 255, 0.9);
    color: var(--hero-orange);
    border-radius: 1000px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 22px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(180,80,40,.25);
}
.hero-spop__quote .hero-quote-chip__text { white-space: normal; }
.hero-spop__desc { font-size: 15px; line-height: 1.95; color: #444; margin: 0 0 22px; white-space: pre-line; }
.hero-spop__video { margin-top: 34px; }
.hero-spop__video-title {
    font-size: 18px; font-weight: 700; color: var(--hero-orange);
    margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
}
.hero-spop__video-title img { width: 24px; height: 24px; object-fit: contain; }
.hero-spop__video-frame { position: relative; padding-top: 56.25%; border-radius: 18px; overflow: hidden; background: #000; }
.hero-spop__video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-spop__video[hidden] { display: none; }

/* ---- compliment form ---- */
.hero-modal__dialog--form { max-width: 760px; background: #fff; }
.hero-tag--form { background: #AF6262; margin-bottom: 16px; }
.hero-form__title { font-size: 34px; font-weight: 800; margin: 0 0 10px; color: #000; }
.hero-form__subtitle { font-size: 15px; color: var(--hero-muted); margin: 0 0 26px; line-height: 1.7; }
.hero-form__section { text-align: center; font-size: 20px; font-weight: 700; margin: 28px 0 20px; color: #000; }
.hero-form__row { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-form__field { flex: 1 1 calc(50% - 10px); min-width: 200px; display: flex; flex-direction: column; }
.hero-form__field--full { flex: 1 1 100%; }
.hero-form__field label { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #000; }
.hero-form__field .req { color: #E73943; }
.hero-form__field input,
.hero-form__field textarea {
    border: 1px solid var(--hero-field-border);
    border-radius: 8px;
    padding: 13px 15px;
    font-size: 14px;
    width: 100%;
    font-family: inherit;
    background: #FFF9F6;
    color: #000;
}
.hero-form__field input::placeholder,
.hero-form__field textarea::placeholder { color: #C4C4C4; }
.hero-form__field input:focus,
.hero-form__field textarea:focus { outline: none; border-color: var(--hero-orange); }
.hero-form__error { color: #E73943; font-size: 12px; margin-top: 6px; min-height: 1px; }
.hero-form__upload {
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    display: block;
    background-color: #FFF9F6;
    /* long-dash border (line with gaps) in #D34300 @ 50% */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%23D34300' stroke-opacity='0.5' stroke-width='2' stroke-dasharray='14 9'/%3E%3C/svg%3E");
}
.hero-form__upload-icon { width: 42px; height: auto; display: inline-block; }
.hero-form__upload-text { display: block; font-size: 14px; margin-top: 8px; color: #555; }
.hero-form__upload small { color: #aaa; font-size: 12px; }
.hero-form__upload-name { display: block; margin-top: 8px; font-size: 12px; color: var(--hero-orange); font-style: normal; }
.hero-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 16px 0 4px;
}
.hero-form__check input[type="checkbox"] {
    margin-top: 2px;
    flex: 0 0 auto;
    -webkit-appearance: none;
            appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--hero-field-border);
    border-radius: 3px;
    background: #FFF9F6;
    cursor: pointer;
    position: relative;
}
.hero-form__check input[type="checkbox"]:checked { background: var(--hero-orange); border-color: var(--hero-orange); }
.hero-form__check input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px; top: 1px;
    width: 5px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.hero-form__submit {
    width: 100%;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 17px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 24px;
    letter-spacing: 2px;
}
.hero-form__submit:hover { background: #222; }
.hero-form__submit:disabled { opacity: .6; cursor: default; }
.hero-form__success {
    background: #e7f6ec;
    color: #2e7d4f;
    border-radius: 10px;
    padding: 16px;
    font-size: 15px;
    margin-bottom: 18px;
    text-align: center;
}

/* =======================================================================
   Responsive
   ======================================================================= */
@media (max-width: 992px) {
    .hero-background__row { flex-direction: column; align-items: center; }
    .hero-bubbles { grid-template-columns: 1fr; width: 100%; }
    .hero-background__proman { display: none; }
    .hero-section-intro--left { max-width: none; }
}
@media (max-width: 900px) {
    .hero-stories__grid { grid-template-columns: repeat(2, 1fr); }
    .hero-section-title { font-size: 28px; }
    .hero-background__highlight { flex-direction: column; text-align: center; }
    .hero-background__highlight p { text-align: center; }
    .hero-spop__body { flex-direction: column; }
    .hero-spop__media { flex: 1 1 100%; max-width: 100%; }
    .hero-spop__content { padding-right: 0; }
}
@media (max-width: 600px) {
    .hero-stories__grid { grid-template-columns: 1fr; max-width: 360px; }
    .hero-gallery { height: 320px; }
    .hero-gallery__col--one { width: 240px; }
    .hero-gallery__col--two { width: 200px; }
    .hero-moments__overlay { width: 150px; right: 12px; }
    .hero-moments__fade { width: 140px; }
    .hero-quote-chip { white-space: normal; max-width: 80vw; }
    .hero-modal__dialog { padding: 30px 22px; border-radius: 26px; }
    .hero-section-title { font-size: 24px; }
    .hero-next__title { font-size: 25px; }
    .hero-form__title { font-size: 27px; }
    .hero-spop__name { font-size: 22px; }
}

/* EN: taller bubbles when 4-column grid is narrower */
@media (min-width: 993px) and (max-width: 1200px) {
    .hero-page-en .hero-bubble { height: 165px; }
}
@media (max-width: 990px) {
    .hero-page-en .hero-bubble { height: auto; }
}
@media (min-width: 991px) and (max-width: 1095px) {
    .hero-page-tc .hero-bubble,
    .hero-page-sc .hero-bubble { height: 143px; padding-bottom: 34px; }
}
@media (min-width: 992px) and (max-width: 1100px) {
    .hero-page-tc .hero-bubble__title,
    .hero-page-sc .hero-bubble__title { margin-bottom: 12px; }
}
@media (max-width: 1015px) {
    .hero-page-tc .hero-bubble__title,
    .hero-page-sc .hero-bubble__title { font-size: 16px; }
}
@media (max-width: 992px) {
    .hero-page-tc .hero-bubble,
    .hero-page-sc .hero-bubble { height: auto; }
    .hero-page-tc .hero-bubble__title,
    .hero-page-sc .hero-bubble__title { margin-bottom: 0; }
}

@media (max-width: 630px) {
    .hero-page-en .hero-next__title { font-size: 16px; }
    .hero-page-en .hero-next__subtitle { font-size: 13px; }
}

@media (max-width: 420px) {
    .hero-page-en .hero-next__title { font-size: 14px; }
}

@media (max-width: 410px) {
    .hero-page-en .hero-next__title { font-size: 13px; }
    .hero-page-en .hero-next__subtitle { font-size: 12px; }
}

@media (max-width: 350px) {
    .hero-page-en .hero-next__title { font-size: 11px; }
    .hero-page-en .hero-next__subtitle { font-size: 11px; }
}

@media (max-width: 500px) {
    .hero-next__inner { padding-top: 180px; }
}

@media (max-width: 400px) {
    .hero-next__subtitle { font-size: 15px; }
}

@media (max-width: 395px) {
    .hero-next__inner { padding-top: 188px; }
    .hero-next__title { font-size: 20px; }
    .hero-next__subtitle { font-size: 15px; }
}

@media (max-width: 380px) {
    .hero-next__subtitle { font-size: 14px; }
}

@media (max-width: 374px) {
    .hero-next__title { font-size: 21px; }
    .hero-next__subtitle { font-size: 14px; }
}

@media (max-width: 355px) {
    .hero-next__title { font-size: 20px; }
    .hero-next__subtitle { font-size: 12px; }
}

@media (max-width: 320px) {
    .hero-next__title { font-size: 19px; }
}
