.global-site-hero {
    --hero-height: 600px;
    --pagination-height: 7px;
    height: var(--hero-height);
}

.global-site-hero .splide,
.global-site-hero .splide__track {
    height: 100%;
}

.global-site-hero .slide__container {
    width: 100%;
    padding-top: var(--hero-height);
    position: relative;
}

.global-site-hero .slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.global-site-hero .slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #003F7233;
}

.global-site-hero .slide__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    cursor: pointer;
}

.global-site-hero .slide__content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 940px;
    padding: 0 25px;
    text-shadow: 0px 5px 5px rgba(34, 34, 34, 0.3);
}

.global-site-hero .slide__main-title {
    font-weight: 700;
    font-size: 85px;
    line-height: 1.15;
    color: var(--color-white);
}

.global-site-hero .slide__main-title p {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.global-site-hero .slide__sub-title {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.3;
    color: var(--color-white);
    text-transform: uppercase;
}

html[lang="ko-KR"] .global-site-hero .slide__sub-title {
    font-size: 18px;
    font-weight: 500;
}

/* arrow navigation */

.global-site-hero .splide__arrow {
    top: auto;
    bottom: 50px;
    height: 50px;
    width: 50px;
    background: none;
    color: var(--color-white);
    opacity: 1;
    user-select: none;
    transform: none;
    z-index: 2;
}

.global-site-hero .splide__arrow:disabled {
    opacity: 0.5;
}

.global-site-hero .splide__arrow:not(:disabled):hover {
    opacity: 0.75;
}

.global-site-hero .splide__arrow--prev {
    left: auto;
    right: 75px;
}

.global-site-hero .splide__arrow--prev .material-symbols-outlined {
    transform: rotate(180deg);
}

.global-site-hero .splide__arrow--next {
    right: 25px;
}

.global-site-hero .splide__arrow .material-symbols-outlined {
    font-size: 50px;
}

/* pagination navigation */
.global-site-hero .splide__pagination {
    display: flex;
    gap: 15px;
    padding: 0 25px;
    bottom: 25px;
}

.global-site-hero .splide__pagination li {
    height: var(--pagination-height);
    flex: 1;
}

.global-site-hero .splide__pagination__page {
    margin: 0;
    left: 0;
    width: 100%;
    height: var(--pagination-height);
    border-radius: 2px;
    opacity: 1;
    background: unset; /* override default settings so the navigation can accept new background color in the editor */
    background-color: rgba(255, 255, 255, 0.7);
}

.global-site-hero
    .splide__pagination
    .splide__pagination__page.is-active:after {
    content: "  ";
    display: block;
    background: var(--color-white);
    height: var(--pagination-height);
    width: 0;
    animation: progressbar 5s infinite ease;
    border-radius: 2px;
    opacity: 1;
}

.global-site-hero .splide__pagination__page.is-active {
    transform: none;
}

@keyframes progressbar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .global-site-hero .slide__main-title {
        font-size: 40px;
        line-height: 1.2;
    }
}
