@font-face {
    font-family: 'MaisonNeue';
    src: url('../fonts/MaisonNeueExtendedBold.ttf'),
}

:root {
    --scrollbar-bg: #4b3833;
    --scrollbar-thumb: #5e2f23;
    --scrollbar-thumb-hover: #662515;
}

/* ------------------------------------------------ UNIVERSAL CSS ------------------------------------------------- */

html,
body {
    background-size: cover;
    background-color: #f2f2f2;
    position: relative;
    display: block;
    margin: 0 auto;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'MaisonNeue';
    padding: unset !important;
}

.ggl-roc-floating-roc {
    position: absolute;
    max-width: 369px;
    width: 19vw;
    top: 0.4%;
    right: 0;
    z-index: 10;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}

.ggl-roc-floating-edl {
    position: absolute;
    max-width: 505px;
    width: 12vw;
    top: 3%;
    right: 2%;
    z-index: 10;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
    animation-delay: 1s;
}

.devider-elements-hor {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.devider-elements-hor.show {
    animation: reveal 1s ease-in-out forwards, highLight 2.5s infinite ease-in-out;
    opacity: 1;
}

.text-hor {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.text-hor.show {
    animation: reveal 2s ease-in-out forwards;
    opacity: 1;
}

.ggl-roc-img-menu {
    width: 100%;
    display: block;
}

@media(max-width:767px) {
    .ggl-roc-floating-roc {
        display: none;
    }

    .ggl-roc-floating-edl {
        width: 30vw;
    }
}

/* ------------------------------------------------ POPUP ------------------------------------------------- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box-card,
.popup-box-monster {
    position: relative;
    width: 60vw;
    max-width: 1300px;
}

.popup-frame {
    width: 100%;
    pointer-events: none;
}

.btn-exit {
    position: absolute;
    top: 8%;
    right: 3.4%;
    width: 3vw;
    max-width: 45px;
    cursor: pointer;
    transition: transform 1s;
    z-index: 2;
}

.btn-exit:hover {
    transform: rotate(360deg);
}

/* ------------------------------------------------ CARD ------------------------------------------------- */
.card-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3vw;
    padding: 15%;
    place-items: center;
}

.cards {
    width: 80%;
    max-width: 190px;
    transition: .3s;
}

.cards:hover {
    transform: translateY(-8px) rotate(0deg);
    filter: drop-shadow(13px 10px 0px #404040);
}

@media(max-width:767px) {
    .popup-box-card {
        width: 90vw;
    }

    .btn-exit {
        width: 30px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
        padding: 18%;
        margin-top: 5vw;
    }

    .cards {
        width: 78%;
        /* max-width: 190px; */
        transition: .3s;
    }
}

/* ------------------------------------------------ MONSTER ------------------------------------------------- */
.monster-frame.mobile {
    display: none;
}

.monster-list {
    position: absolute;
    left: 4vw;
    top: 10vw;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1vw
}

.monster-btn-wrap {
    position: relative;
}

.btn-monster {
    max-width: 172px;
    width: 8.5vw;
    cursor: pointer;
}

.monster-gif {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 5vw;
    height: 5vw;
    object-fit: contain;
    /* ini kuncinya */
    pointer-events: none;
}

.monster-detail {
    position: absolute;
    top: 21%;
    right: 77%;
}

.monster-detail img {
    position: absolute;
}

#monster-detail {
    width: 24vw;
    left: 20vw;
    top: 2vw;
}

#monster-preview {
    width: 7vw;
    left: 27vw;
    top: 6vw;
    min-width: 5vw;
    min-height: 1vw;
    width: 100%;
}

#monster-popup.is-mobile #monster-preview {
    left: 10vw;
    top: 20vw;
    min-width: 20vw;
}

#monster-popup.is-mobile #monster-detail {
    width: 90%;
    margin: auto;
}

@media(min-width:2560px) {

    .popup-box-card,
    .popup-box-monster {
        max-width: 1528px;
    }
}

@media(max-width:767px) {

    .popup-box-card,
    .popup-box-monster {
        width: 62vw;
    }

    .monster-frame.desktop {
        display: none;
    }

    .monster-frame.mobile {
        display: block;
    }

    .monster-list {
        left: 6vw;
        top: 53vw;
        grid-template-columns: repeat(3, auto);
    }

    .btn-monster {
        width: 16vw;
    }


    .monster-gif {
        width: 12vw;
        height: 12vw;
    }

    #monster-popup.is-mobile #monster-preview {
        top: 4vw;
        left: -10vw;
        width: 19vw;
        min-width: 14vw;
    }

    #monster-detail {
        width: 50vw;
        left: -5vw;
        top: -15vw;
    }

    #monster-popup.is-mobile #monster-detail {
        width: 54vw;
        left: -11vw;
        top: -2vw;
    }

    #monster-preview {
        width: 23vw;
        left: -3vw;
        top: -2vw;
    }
}

@media(max-width:425px) {

    .popup-box-card,
    .popup-box-monster {
        width: 87vw;
    }

    #monster-popup.is-mobile #monster-detail {
        width: 72vw;
        left: -15vw;
        top: -5vw;
    }

    .monster-list {
        left: 3vw;
        top: 65vw;
        grid-template-columns: repeat(3, auto);
    }

    .btn-monster {
        width: 26vw;
    }
}

/* ------------------------------------------------ SLIDE 3D  ------------------------------------------------- */
.contents {
    position: absolute;
    padding-top: 0;
    margin: auto;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    touch-action: none;
}

.contents .perspective {
    width: 100%;
    perspective: 2000px !important;
}

.contents .perspective .\33 d-container {
    transform-style: preserve-3d;
    transition: transform .05s linear;
}

/* ------------------------------------------------ SIDEBAR  ------------------------------------------------- */
.sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 70px;
    height: 96%;
    background: #fff;
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
    transition: width .35s ease;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
}

.sidebar:hover {
    width: 204px;
}

.menu {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu li {
    margin: 14px 0;
}

.menu a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    color: #625f5f;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease;
    width: 95%;
    height: 6vh;
}

.menu img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu a.active img {
    filter: invert(1);
}

.menu span {
    /* opacity: 0; */
    display: none;
    transition: opacity .2s ease;
}

.menu .job-wrap {
    text-wrap: wrap;
}

.sidebar:hover .menu span {
    display: block;
}

.menu a.active {
    background: #dfdfdf;
    border-left: 5px solid black;
    border-radius: 0 12px 12px 0;
}

.menu ul li a:hover {
    background: #eee;
    border-radius: 0 12px 12px 0;
}

.menu .logo-roc-menu {
    position: absolute;
    top: 0;

    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s;
}

.menu:hover .logo-roc-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.menu .ggl-roc-menu {
    position: absolute;
    top: 39px;
    left: 38px;
    width: 114px;
    height: 114px;
}

.ggl-roc-section-1-nav {
    position: fixed;
    max-width: 1080px;
    width: 100%;
    top: 0;
    z-index: 9998;
}

.ggl-roc-section-1-roc-m {
    position: fixed;
    max-width: 216px;
    width: 19vw;
    left: 6vw;
    top: 1vw;
    z-index: 9999;
}

@media (max-width: 767px) {
    .sidebar {
        display: none;
    }
}

/* ------------------------------------------------ FLOATING ROC ------------------------------------------------- */

.ggl-roc-floating {
    position: absolute;
    max-width: 369px;
    width: 20vw;
    top: 0;
    right: 2%;
    z-index: 10;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

/* ------------------------------------------------ SECTION 1 ------------------------------------------------- */
.ggl-roc-section-1 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    min-height: 55vw;
    overflow: hidden;
}

.main-bg-video {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: drop-shadow(0px 23px 31px #404040);
}

.ggl-roc-section-1-roc {
    position: absolute;
    max-width: 216px;
    width: 10vw;
    top: 14%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ggl-roc-section-1-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-1-bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0);
}

.title-float {
    position: absolute;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.title-web {
    transition: transform 0.7s ease, filter 0.3s ease;
    will-change: transform;
}

.title-web:hover {
    transform: scale(1.05);
    filter: contrast(1.3);
}

.title1 {
    left: 0;
    max-width: 700px;
    width: 37vw;
    animation-delay: 2s;
}

.title2 {
    bottom: 0;
    max-width: 867px;
    width: 46vw;
}

.title3 {
    right: 0;
    max-width: 703px;
    width: 37vw;
    animation-delay: 2s;
}

.ggl-roc-section-1-title1.title-web {
    max-width: 700px;
    width: 37vw;
    /* cursor: pointer; */
    animation-delay: 2s;
}

.ggl-roc-section-1-title2.title-web {
    max-width: 867px;
    width: 46vw;
    /* cursor: pointer; */
}

.ggl-roc-section-1-title3.title-web {
    max-width: 703px;
    width: 37vw;
    /* cursor: pointer; */
    animation-delay: 2s;
}

.ggl-roc-section-1-title.title-web {
    max-width: 703px;
    width: 115vw;
}

img#bgUp {
    position: absolute;
    max-width: 1080px;
    width: 100%;
    display: none;
}

img#charUp9 {
    position: absolute;
    max-width: 552px;
    width: 54vw;
    left: 29vw;
    top: 61vw;
    z-index: 2;
    display: none;
}

img.ggl-roc-section-1-shadow {
    position: absolute;
    max-width: 851px;
    width: 79%;
    top: 100vw;
    z-index: 0;
    display: none;
}

.ggl-roc-section-1-charup {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.ggl-roc-section-1-charup.active {
    filter: grayscale(0);
}

img#charUp101 {
    position: absolute;
    max-width: 331px;
    width: 33vw;
    top: 69vw;
    left: 6vw;
    z-index: 1;
    display: none;
}

img#charUp102 {
    position: absolute;
    max-width: 331px;
    width: 30vw;
    top: 66vw;
    right: 9vw;
    z-index: 1;
    display: none;
}

.menu-wrapper-update {
    position: absolute;
    width: 84vw;
    max-width: 590px;
    left: 7.5vw;
    top: 17vw;
}

.ggl-roc-section-1-wrapper-bar {
    position: absolute;
    display: flex;
    gap: 6px;
    top: 75%;
    right: 19%;
}

.ggl-roc-section-1-arrow-prev {
    position: absolute;
    max-width: 56px;
    width: 13%;
    left: 2%;
    top: 11%;
    cursor: pointer;
    transform: scaleX(-1);
    cursor: pointer;
}

.ggl-roc-section-1-arrow-next {
    position: absolute;
    max-width: 56px;
    width: 13%;
    right: 2%;
    top: 11%;
    cursor: pointer;
}

.ggl-roc-section-1-wrapper-bar {
    position: absolute;
    display: flex;
    gap: 6px;
    top: 70%;
    right: 19%;
}

.ggl-roc-section-1-wrapper-bar span {
    width: 16vw;
    height: 0.6vw;
    background: #777;
    transform: skewX(20deg);
}

.ggl-roc-section-1-wrapper-bar span.active {
    background: #16b2f5;
    filter: drop-shadow(0px 0px 7px #16b2f5);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-1 {
        min-height: 177vw;
    }

    .main-bg-video,
    .title1,
    .title3 {
        display: none;
    }

    img#bgUp,
    img#charUp9,
    img.ggl-roc-section-1-shadow,
    img#charUp101,
    img#charUp102 {
        display: block;
    }

    .title2 {
        bottom: -11vw;
        width: auto;
        z-index: 3;
    }

    .ggl-roc-section-1-title2.title-web {
        width: 119vw;
    }
}

/* ------------------------------------------------ SECTION 2 ------------------------------------------------- */
.ggl-roc-section-2 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    min-height: 55vw;
    overflow: hidden;
}

.ggl-roc-section-2-bg,
.ggl-roc-section-2-gradient1,
.ggl-roc-section-2-bchar {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-2-bchar {
    filter: grayscale(1);
}

.ggl-roc-section-2-bchar-m {
    position: absolute;
    max-width: 1518px;
    z-index: 1;
    width: 100%;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    filter: grayscale(1);
}

.ggl-roc-section-2-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-2-title {
    position: absolute;
    max-width: 294px;
    width: 16vw;
    left: 18vw;
    top: 5vw;
}

.ggl-roc-section-2-devider1 {
    position: absolute;
    max-width: 365px;
    width: 19vw;
    left: 18vw;
    top: 9vw;
    transition: 0.6s linear 0.8s;
}

.ggl-roc-section-2-devider2 {
    position: absolute;
    max-width: 6px;
    width: 1vw;
    left: 16vw;
    top: 11.8vw;
    transition: 0.7s linear 0.9s;
}

.ggl-roc-section-2-desc {
    position: absolute;
    max-width: 312px;
    width: 20vw;
    left: 18vw;
    top: 11.7vw;
}

.ggl-roc-section-2-line {
    position: absolute;
    /* max-width: 498px; */
    width: 25%;
    left: 0%;
    top: 7%;
}

img#name-job {
    position: absolute;
    max-width: 518px;
    width: 27vw;
    top: 14vw;
    left: 18vw;
}

img#previewvid-job {
    position: absolute;
    max-width: 306px;
    width: 16vw;
    top: 22vw;
    left: 18vw;
    /* cursor: pointer; */
    transition: transform 0.9s ease, filter 0.3s ease;
}

/* img#previewvid-job:hover {
    transform: scale(1.01) rotate(1deg);
    filter: drop-shadow(2px 4px 1px #808080);
} */

img#devider3 {
    position: absolute;
    max-width: 306px;
    width: 16vw;
    top: 22vw;
    left: 18vw;
    cursor: pointer;
}

img#devider3 {
    position: absolute;
    max-width: 250px;
    width: 13vw;
    top: 34vw;
    left: 18vw;
}

.ggl-roc-section-2-lore {
    position: absolute;
    max-width: 50px;
    width: 3vw;
    bottom: 18vw;
    left: 18vw;
}

img#lore-job {
    position: absolute;
    max-width: 690px;
    width: 36vw;
    bottom: 5.7vw;
    left: 14.8vw;
    z-index: -1;
}

img#detail-job {
    position: absolute;
    max-width: 1034px;
    width: 54vw;
    right: 0;
}

img#char-job {
    position: absolute;
    max-width: 1034px;
    width: 54vw;
    right: 0;
}

.swiperJob {
    height: 18vw;
    overflow: hidden;
    position: absolute;
    left: 8.6%;
    top: 34%;
}

.swiper-button-prev-job::after,
.swiper-button-next-job::after {
    display: none;
}

.swiper-button-prev-job,
.swiper-button-next-job {
    left: 9.2%;
    transform: none;
    right: auto;
    width: auto;
    height: auto;
    z-index: -1;
}

.swiper-button-prev-job {
    top: 27%;
}

.swiper-button-next-job {
    bottom: 5%;
}

.ggl-roc-section-2-arrow {
    width: 4vw;
    min-width: 32px;
    max-width: 77px;
    cursor: pointer;
}

.ggl-roc-section-2-btn-job {
    filter: none !important;
    width: 5vw !important;
}

@media(min-width:2560px) {
    img#char-job {
        transform: scale(1.2);
    }

    img#lore-job {
        bottom: 10vw;
        left: 15.5vw;
    }

    .ggl-roc-section-2-lore {
        bottom: 19.4vw;
    }
}

@media (max-width: 787px) {
    .swiperJob {
        height: auto !important;
        width: 60vw;
        top: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }

    .swiperJob .swiper-wrapper {
        flex-direction: row !important;
        align-items: center;
    }

    .swiperJob .swiper-slide {
        height: auto !important;
        width: 20vw !important;
    }

    .swiper-slide.job {
        display: flex;
        justify-content: center;
    }

    .ggl-roc-section-2-btn-job {
        filter: none !important;
        width: 15vw !important;
    }

    .swiper-button-prev-job,
    .swiper-button-next-job {
        left: unset;
        transform: none;
        right: auto;
        width: auto;
        height: auto;
        z-index: 0;
        transform: rotate(-90deg);
    }

    .swiper-button-prev-job {
        bottom: 25%;
        top: 50%;
        left: 5%;
    }

    .swiper-button-next-job {
        bottom: 25%;
        right: 5%;
    }

    .ggl-roc-section-2-arrow {
        width: 15vw;
    }

}

@media (max-width: 767px) {
    .ggl-roc-section-2 {
        min-height: 177vw;
    }

    .ggl-roc-section-2-bchar {
        width: 77%;
    }

    .ggl-roc-section-2-title {
        width: 51vw;
        left: 9vw;
        top: 2vw;
    }

    .ggl-roc-section-2-devider1 {
        width: 41vw;
        left: 10vw;
        top: 16vw;
    }

    .ggl-roc-section-2-devider2 {
        display: none;
    }

    .ggl-roc-section-2-desc {
        width: 41vw;
        left: 10vw;
        top: 119vw;
    }

    img#name-job {
        width: 37vw;
        top: 126vw;
        left: 10vw;
    }

    img#previewvid-job {
        width: 36vw;
        top: 117vw;
        left: 59vw;
    }

    img#devider3 {
        width: 33vw;
        top: 132vw;
        left: 10vw;
    }

    .ggl-roc-section-2-lore {
        width: 7vw;
        bottom: 41vw;
        left: 11vw;
    }

    img#lore-job {
        width: 89vw;
        bottom: 10vw;
        left: 2.5vw;
    }

    img#char-job {
        position: absolute;
        max-width: 1034px;
        width: 92vw;
        /* right: 0; */
        left: 3vw;
        top: 24vw;
    }
}

/* ------------------------------------------------ SECTION 3 ------------------------------------------------- */
.ggl-roc-section-3 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    min-height: 55vw;
    overflow: hidden;
}

.ggl-roc-section-3-bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-3-gradient {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: cover;
    filter: grayscale(1);
    z-index: 3;
}

.ggl-roc-section-3-devider-circle {
    position: absolute;
    display: block;
    top: 16%;
    left: 11%;
    width: 37%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    animation: spin 50s linear infinite;
}

.ggl-roc-section-3-bg-title-map {
    position: absolute;
    display: block;
    z-index: 2;
    max-width: 1821px;
    width: 100%;
    top: 16%;
    left: 50%;
    height: auto;
    transform: translate(-50%, -50%);
}

.ggl-roc-section-3-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-3-map {
    opacity: 0;
    position: absolute;
    max-width: 771px;
    width: 34vw;
    left: 12vw;
    top: 13vw;

    transition: opacity .8s ease-in-out;
    animation: float 4s ease-in-out infinite;
}

.ggl-roc-section-3-map.show {
    opacity: 1;
}

.ggl-roc-section-3-title {
    position: absolute;
    max-width: 172px;
    width: 9vw;
    left: 57.5vw;
    top: 13.5vw;
}

.ggl-roc-section-3-devider1 {
    position: absolute;
    max-width: 314px;
    width: 17vw;
    left: 57.5vw;
    top: 17.5vw;
}

.ggl-roc-section-3-devider2 {
    position: absolute;
    max-width: 245px;
    width: 13vw;
    top: 16.5vw;
}

.ggl-roc-section-3-devider3 {
    position: absolute;
    max-width: 526px;
    width: 28vw;
    top: 26.5vw;
    left: 47vw;
}

.ggl-roc-section-3-btn-arrow {
    position: absolute;
    max-width: 56px;
    width: 3vw;
    left: 85vw;
    top: 22vw;
    cursor: pointer;
}

.ggl-roc-section-3-map-title {
    position: absolute;
    max-width: 526px;
    width: 28vw;
    left: 57vw;
    top: 21vw;
}

.ggl-roc-section-3-lore {
    position: absolute;
    max-width: 50px;
    width: 3vw;
    filter: invert(1);
    left: 57vw;
    top: 28vw;
    z-index: 1;
}

.ggl-roc-section-3-lore-detail {
    position: absolute;
    max-width: 587px;
    width: 31vw;
    left: 57vw;
    top: 29.5vw;
}

.btn-maps {
    position: absolute;
    max-width: 202px;
    width: 11vw;
    bottom: 10vw;
    cursor: pointer;
}

.ggl-roc-section-3-btn-monster.btn-maps {
    right: 23vw;
}

.ggl-roc-section-3-btn-card.btn-maps {
    right: 11vw;
}

.ggl-roc-section-3-number {
    position: absolute;
    font-size: 1vw;
    color: white;
    top: 27.5vw;
    right: 11.7vw;
}

.ggl-roc-section-3-wrapper-bar {
    position: absolute;
    display: flex;
    gap: 6px;
    top: 26vw;
    right: 15vw;
}

.ggl-roc-section-3-wrapper-bar span {
    width: 2vw;
    height: 0.2vw;
    background: #777;
    transform: skewX(20deg);
    transition: background 0.3s ease;
}

.ggl-roc-section-3-wrapper-bar span.active {
    background: #16b2f5;
    filter: drop-shadow(0px 0px 7px #16b2f5);
}

@media(min-width:2560px) {
    .ggl-roc-section-3-map {
        left: 15vw;
        top: 12vw;
        transform: scale(1.3);
    }

    .btn-maps {
        bottom: 10vw;
        transform: scale(1.2);
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-3 {
        min-height: 177vw;
    }

    .ggl-roc-section-3-devider-circle {
        top: 14%;
        left: 9%;
        width: 80%;
    }

    .ggl-roc-section-3-lore {
        width: 7vw;
        left: 9vw;
        top: 121vw;
    }

    .ggl-roc-section-3-title {
        width: 27vw;
        left: 8vw;
        top: 6.5vw;
    }

    .ggl-roc-section-3-devider1 {
        width: 35vw;
        left: 10vw;
        top: 19.5vw;
    }

    .ggl-roc-section-3-devider2 {
        display: none;
    }

    .ggl-roc-section-3-devider3 {
        width: 67vw;
        top: 117vw;
        left: -16vw;
    }

    .ggl-roc-section-3-map-title {
        width: 67vw;
        left: 8vw;
        top: 103vw;
    }

    .ggl-roc-section-3-map {
        width: 84vw;
        left: 9vw;
        top: 23vw;
    }

    .ggl-roc-section-3-lore-detail {
        width: 79vw;
        left: 8vw;
        top: 126vw;
    }

    .ggl-roc-section-3-btn-arrow {
        width: 10vw;
        left: 83vw;
        top: 104vw;
    }

    .ggl-roc-section-3-wrapper-bar {
        top: 117vw;
        right: 14vw;
    }

    .ggl-roc-section-3-wrapper-bar span {
        width: 8vw;
        height: 1vw;
    }

    .ggl-roc-section-3-number {
        top: 115.5vw;
        right: 4.7vw;
        font-size: 3vw;
    }

    .btn-maps {
        width: 32vw;
        bottom: 10vw;
    }

    .ggl-roc-section-3-btn-monster.btn-maps {
        right: 52vw;
    }

    .ggl-roc-section-3-btn-card.btn-maps {
        right: 15vw;
    }
}

/* ------------------------------------------------ SECTION 4 ------------------------------------------------- */
.ggl-roc-section-4 {
    position: relative;
    width: 100%;
    min-height: 55vw;
    display: block;
    overflow: hidden;
}

.ggl-roc-section-4-bg,
.ggl-roc-section-4-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}

.ggl-roc-section-4-bchar {
    position: absolute;
    width: 100%;
    max-width: 1760px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: grayscale(1);
    z-index: 1;
}

.ggl-roc-section-4-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-4-title {
    position: absolute;
    width: 12vw;
    max-width: 227px;
    left: 7.5vw;
    top: 4vw;
}

.ggl-roc-section-4-devider1 {
    position: absolute;
    width: 16vw;
    max-width: 300px;
    left: 7.5vw;
    top: 8.5vw;
    animation-delay: 2s !important;
}

.ggl-roc-section-4-circle {
    position: absolute;
    width: 4.5vw;
    max-width: 81px;
    top: 26.2vw;
    left: 6.4vw;
    animation: spin 50s linear infinite;
}

.ggl-roc-section-4-tagline {
    position: absolute;
    width: 38vw;
    max-width: 714px;
    top: 27vw;
    left: 7.5vw;
}

#dungeonTitle {
    position: absolute;
    width: 33vw;
    max-width: 619px;
    top: 30vw;
    left: 7.5vw;
}

.ggl-roc-section-4-devider2 {
    position: absolute;
    width: 20vw;
    max-width: 250px;
    top: 35vw;
    left: 7.5vw;
}

.ggl-roc-section-4-lore {
    position: absolute;
    width: 3vw;
    max-width: 50px;
    bottom: 17vw;
    left: 7.5vw;
    z-index: 1;
}

#dungeonLore {
    position: absolute;
    width: 34vw;
    max-width: 638px;
    top: 35.5vw;
    left: 4.1vw;
}

#dungeonImage {
    position: absolute;
    width: 54vw;
    max-width: 1034px;
    right: 0;
    bottom: 0;

    opacity: 0;
    transition: opacity .8s ease-in-out;
}

#dungeonImage.show {
    opacity: 1;
}

.btn-dungeon {
    position: absolute;
    width: 11vw;
    max-width: 202px;
    bottom: 8vw;
    cursor: pointer;
}

.ggl-roc-section-4-btn-monster {
    left: 7.5vw;
}

.ggl-roc-section-4-btn-card {
    left: 20.5vw;
}

.menu-wrapper {
    position: absolute;
    width: 33vw;
    max-width: 590px;
    left: 7.5vw;
    top: 12vw;
}

.ggl-roc-section-4-wrapper-bar {
    position: absolute;
    display: flex;
    gap: 6px;
    top: 75%;
    right: 16%;
}

.ggl-roc-section-4-wrapper-bar span {
    width: 10vw;
    height: 0.2vw;
    background: #777;
    transform: skewX(20deg);
    transition: background 0.3s ease;
}

.ggl-roc-section-4-wrapper-bar span.active {
    background: #16b2f5;
    filter: drop-shadow(0px 0px 7px #16b2f5);
}

#dungeonNumber {
    position: absolute;
    left: 5.5%;
    top: 36.9%;
    font-size: clamp(14px, 1vw, 22px);
}

.ggl-roc-section-4-namedungeon {
    position: absolute;
    left: 17%;
    top: 32%;
    font-size: clamp(14px, 2vw, 27px);
    font-family: 'MaisonNeue';
}

.ggl-roc-section-4-arrow {
    position: absolute;
    max-width: 56px;
    width: 11%;
    right: 4%;
    top: 22%;
    cursor: pointer;
}

@media(min-width:2560px) {
    #dungeonImage {
        bottom: 13%;
        transform: scale(1.5);
    }

    #dungeonLore {
        top: 35.5vw;
        left: 4.4vw;
    }

    .ggl-roc-section-4-lore {
        bottom: 18vw;
        left: 7vw;
    }

    .btn-dungeon {
        bottom: 10vw;
        transform: scale(1.2);
    }

    .ggl-roc-section-4-wrapper-bar span {
        width: 4.5vw;
    }

    .ggl-roc-section-4-bchar {
        transform: translate(-50%, -50%) scale(1.34);
    }
}

@media (max-width: 767px) {
    .ggl-roc-section-4 {
        min-height: 177vw;
    }

    .ggl-roc-section-4-title {
        width: 36vw;
        left: 8vw;
        top: 6.5vw;
    }

    .ggl-roc-section-4-devider1 {
        width: 38vw;
        left: 9vw;
        top: 19.5vw;
    }

    .ggl-roc-section-4-bchar {
        top: 44%;
    }

    .menu-wrapper {
        width: 71vw;
        left: 15vw;
        top: 103vw;
    }

    .ggl-roc-section-4-wrapper-bar {
        top: 77%;
    }

    .ggl-roc-section-4-wrapper-bar span {
        width: 23vw;
        height: 1vw;
    }

    #dungeonNumber {
        left: 5%;
        top: 36.9%;
        font-size: 3vw;
    }

    .ggl-roc-section-4-namedungeon {
        left: 17%;
        top: 30%;
        font-size: 3.7vw;
    }

    .ggl-roc-section-4-arrow {
        top: 21%;
    }

    .ggl-roc-section-4-circle {
        width: 13.5vw;
        top: 124.2vw;
    }

    #dungeonTitle {
        width: 75vw;
        top: 122vw;
        left: 7.5vw;
    }

    .ggl-roc-section-4-devider2 {
        width: 35vw;
        top: 135vw;
        left: 7.5vw;
    }

    .ggl-roc-section-4-lore {
        width: 6vw;
        bottom: 37vw;
        left: 7.5vw;
    }

    #dungeonLore {
        position: absolute;
        width: 86vw;
        max-width: 638px;
        top: 134vw;
        left: -1vw;
    }

    #dungeonImage {
        width: 97vw;
        right: 3vw;
        /* left: 5vw; */
        bottom: 71vw;
    }

    .btn-dungeon {
        width: 32vw;
        bottom: 10vw;
        cursor: pointer;
    }

    .ggl-roc-section-4-btn-monster {
        left: 15vw;
    }

    .ggl-roc-section-4-btn-card {
        left: 52vw;
    }
}

/* ------------------------------------------------ SECTION 5 ------------------------------------------------- */
.ggl-roc-section-5-bg-title-map.text-hor.show {
    position: absolute;
    display: block;
    z-index: 2;
    max-width: 1821px;
    width: 80%;
    top: 22%;
    left: 40%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
}

#seasonal .inner {
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    padding-top: 0;
    display: flex;
}

#seasonal .innerMobile {
    display: none;
}

#seasonal .inner:last-of-type {
    margin-bottom: 0px;
}

#seasonal #featured {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: -3%;
}

#seasonal #featured .perspective {
    width: 100%;
    perspective: 2000px !important;
}

#seasonal #featured .extra-seasonal {
    position: absolute;
    width: 14%;
    top: -16vw;
    left: 25.5%;
    transform: translateZ(187px);
}

#seasonal #featured .extra {
    position: absolute;
    width: 36%;
    left: 46%;
    transform: translateZ(-100px);
    filter: invert(1);
}

#seasonal #featured .extra-line {
    position: absolute;
    width: 3%;
    top: -13.5vw;
    left: 21%;
    transform: translateZ(187px);
}

#seasonal #featured .char {
    position: absolute;
    width: 33%;
    top: -19vw;
    left: 48%;
    transform: translateZ(131px);
}

#seasonal #featured .btn-more {
    position: absolute;
    width: 11%;
    top: 18vw;
    left: 67%;
    cursor: pointer;
    pointer-events: fill;
    transform: translateZ(187px);
}

#seasonal #featured .name {
    position: absolute;
    width: 39%;
    top: 6vw;
    left: 21%;
    transform: translateZ(187px);
}

#seasonal #featured .detail {
    position: absolute;
    width: 42%;
    top: 15vw;
    left: 21%;
    transform: translateZ(187px);
}

#seasonal #featured .menu-seasonal {
    position: absolute;
    width: 11vw;
    left: 21%;
    top: 2vw;
    transform: translateY(-50%) translateZ(131px);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: fill;
}

#seasonal #featured .slide-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform .05s linear;
    pointer-events: none;
}

#seasonal #featured .slide-wrapper {
    width: 63%;
    height: 30vw;
    position: absolute;
    perspective: 2000px;
    transform-style: preserve-3d;
    transform: translateZ(0px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#seasonal #featured .costum-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translateX(-50%);
    overflow: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

#seasonal #featured .costum-slide .feature-img {
    width: 50vw;
    height: auto;
    object-fit: cover;
    display: block;
}

#seasonal #featured .costum-slide .feature-img:hover {
    filter: saturate(2);
}

#seasonal #featured .btn-prev,
#seasonal #featured .btn-next {
    position: absolute;
    width: 11vw;
    height: 6vw;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: fill;
}

#seasonal #featured .btn-prev {
    top: 2vw;
    left: 13.5%;
    transform: translateY(-50%) translateZ(131px) scaleX(-1);
}

#seasonal #featured .btn-next {
    left: 28.5%;
    top: 2vw;
    transform: translateY(-50%) translateZ(131px);
}

#seasonal #featured .slider-btn-prev,
#seasonal #featured .slider-btn-next {
    width: 30%;
    height: auto;
}

#seasonal #featured .pagination {
    position: absolute;
    display: flex;
    gap: 8px;
    top: 39vw;
    right: 27vw;
}

#seasonal #featured .bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
}

#seasonal #featured .bullet.active {
    background: #6dcdf5;
    border: 2px solid #007bff;
}

#seasonal #featured .slide-title,
#seasonal #featured .slide-subtitle {
    position: absolute;
    top: 0.7vw;
    left: 17.4%;
    width: 11vw;
    height: 3vw;
    color: #414141;
    transition: opacity 0.5s, transform 0.5s;
    box-sizing: border-box;
    background-size: 100% 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    pointer-events: none;
}

#seasonal #featured .slide-title {
    transform: translateZ(132px);
}

#seasonal #featured .slide-subtitle {
    left: 72%;
    transform: translateZ(-40px);
    opacity: 0.7;
}

#seasonal #featured .slide-title span,
#seasonal #featured .slide-subtitle span {
    font-size: 2vw;
}

@media screen and (max-width: 767px) {
    #seasonal {
        background: url(../images/teaser/anniv6th/sc3/mobile/bg3.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        min-height: 177vw;
        margin-top: 0;
    }

    #seasonal .inner {
        display: none;
    }

    #seasonal #featured {
        display: none;
    }

    #seasonal #featured-mobile .extra-seasonal {
        position: absolute;
        max-width: 341px;
        width: 40vw;
        top: -5vw;
        left: 21vw;
    }


    #seasonal #featured-mobile .extra {
        position: absolute;
        width: 36%;
        filter: invert(1);
    }

    #seasonal #featured-mobile .extra-line {
        position: absolute;
        width: 7vw;
        top: 0vw;
        left: 16vw;
        transform: scaleY(-1) scaleX(-1);
        z-index: 1;
    }

    #seasonal #featured-mobile .char {
        position: absolute;
        width: 67vw;
        top: 35vw;
        left: 36%;
        z-index: 1;
    }

    #seasonal #featured-mobile .btn-more {
        position: absolute;
        top: 119vw;
        width: 28vw;
        left: 59vw;
        cursor: pointer;
        pointer-events: fill;
        z-index: 1;
    }

    #seasonal #featured-mobile .name {
        position: absolute;
        width: 83vw;
        top: 89vw;
        left: 12vw;
        z-index: 1;
    }

    #seasonal #featured-mobile .detail {
        position: absolute;
        width: 83vw;
        top: 110vw;
        left: 10vw;
        z-index: 1;
    }

    #seasonal .innerMobile {
        position: absolute;
        top: 0;
        z-index: 2;
        padding-top: 0;
        width: 100%;
        height: 133vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    #seasonal .innerMobile:last-of-type {
        margin-bottom: 0px;
    }

    #seasonal .innerMobile .extra {
        position: absolute;
        width: 40%;
        top: 9%;
        right: 20.5%;
    }

    #seasonal .innerMobile .line {
        display: none;
    }

    #seasonal .innerMobile .SlideWord {
        display: none;
    }

    #seasonal .innerMobile .slide-container-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-left: 0;
        margin-top: 0;
        padding: 0 1rem;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
        z-index: 1;
        transform-style: preserve-3d;
        transition: transform .05s linear;
    }

    #seasonal .innerMobile .slide-wrapper {
        width: 60%;
        height: 100vh;
        position: absolute;
        perspective: 2000px;
        transform-style: preserve-3d;
        transform: translateZ(0px);
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
    }

    #seasonal .innerMobile .costum-slide-mobile {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translateX(-50%);
        overflow: hidden;
        backface-visibility: hidden;
        transition: transform 0.6s ease, opacity 0.6s ease;
    }

    #seasonal .innerMobile .costum-slide-mobile .feature-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    #seasonal .innerMobile .costum-slide-mobile .feature-img:hover {
        filter: saturate(2);
    }

    #seasonal .innerMobile .btn-prev,
    #seasonal .innerMobile .btn-next {
        position: absolute;
        width: 30vw;
        height: 15vw;
        top: 40%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    #seasonal .innerMobile .btn-prev {
        left: 10%;
    }

    #seasonal .innerMobile .btn-next {
        right: 10%;
        transform: translateY(-50%) rotate(180deg);
    }

    #seasonal .innerMobile .slider-btn-prev,
    #seasonal .innerMobile .slider-btn-next {
        width: 30%;
        height: auto;
        transform: scaleX(-1);
    }

    #seasonal .innerMobile .pagination {
        display: none;
    }

    #seasonal .innerMobile .slide-title {
        position: absolute;
        top: -2%;
        left: 64%;
        width: 20vw;
        height: 7vw;
        color: #424242;
        /* text-shadow: 0 2px 6px rgb(203 203 203 / 60%); */
        filter: drop-shadow(-1px 4px 3px black);
        transition: opacity 0.5s, transform 0.5s;
        background: url(../images/teaser/episode9_10/page5/menu.png) no-repeat center top;
        box-sizing: border-box;
        background-size: 100% 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        font-family: auto;
    }

    #seasonal .innerMobile .slide-title span {
        font-family: 'MaisonNeue';
        font-size: 5vw;
        margin-top: 0.2vw;
        margin-right: 5.3vw;
    }

}

@media screen and (max-width: 480px) {

    #seasonal {
        background-size: 100% 100%;
    }

    #seasonal #featured-mobile .extra-seasonal {
        width: 40vw;
        top: 20vw;
        left: 14vw;
    }

    #seasonal #featured-mobile .extra {
        position: absolute;
        width: 36%;
        filter: invert(1);
    }

    #seasonal #featured-mobile .extra-line {
        position: absolute;
        width: 7vw;
        top: 31vw;
        left: 10vw;
        transform: scaleY(-1) scaleX(-1);
        z-index: 1;
    }

    #seasonal #featured-mobile .char {
        position: absolute;
        width: 69vw;
        top: 73vw;
        left: 36%;
        z-index: 1;
    }

    #seasonal #featured-mobile .btn-more {
        position: absolute;
        top: 159vw;
        width: 28vw;
        left: 60vw;
        cursor: pointer;
        pointer-events: fill;
        z-index: 1;
    }

    #seasonal #featured-mobile .name {
        position: absolute;
        width: 86vw;
        top: 130vw;
        left: 6vw;
        z-index: 1;
    }

    #seasonal #featured-mobile .detail {
        position: absolute;
        width: 90vw;
        top: 151vw;
        left: 6vw;
        z-index: 1;
    }

    #seasonal .innerMobile {
        height: 95vh;
    }

    #seasonal .innerMobile .extra {
        width: 50%;
        top: 10%;
        right: 10%;
    }

    #seasonal .innerMobile .line {
        display: flex;
        position: absolute;
        width: 35%;
        top: 161vw;
        right: 26%;
    }

    #seasonal .innerMobile .SlideWord {
        position: absolute;
        width: 100%;
        bottom: 9%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3vw;
        color: white;
        letter-spacing: 0.5vw;
    }

    #seasonal .innerMobile .slide-wrapper {
        width: 70%;
        top: 13%;
    }

    #seasonal .innerMobile .costum-slide-mobile {
        width: 100%;
    }

    #seasonal .innerMobile .costum-slide-mobile .feature-img {
        width: 70vw;
    }

    #seasonal .innerMobile .btn-prev {
        left: 2%;
    }

    #seasonal .innerMobile .btn-next {
        right: 2%;
        transform: translateY(-50%) rotate(180deg);
    }

    #seasonal .innerMobile .pagination {
        position: absolute;
        display: flex;
        gap: 4px;
        top: 160vw;
        right: 14%;
    }

    #seasonal .innerMobile .bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 0;
        cursor: pointer;
        transition: 0.3s;
    }

    #seasonal .innerMobile .bullet.active {
        background: #6dcdf5;
        border: 2px solid #007bff;
    }

    #seasonal .innerMobile .slide-title {
        top: 22vw;
        width: 28vw;
        height: 10vw;
    }

    #seasonal .innerMobile .slide-title span {
        font-size: 7vw;
        margin-top: 0.5vw;
        margin-right: 7.3vw;
    }

}

/* Section 5 */
.ggl-roc-section-5 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    overflow: hidden;
    min-height: 55vw;
}

.ggl-roc-section-5-bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-5-gradient {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: cover;
    filter: grayscale(1);
    z-index: 1;
}

.ggl-roc-section-5-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 4vw;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -1vw;
}

.ggl-roc-section-5-devider {
    position: absolute;
    max-width: 601px;
    width: 37vw;
    top: 27.5vw;
    right: -5vw;
    transform: scaleX(-1);
}

/* ------------------------------------------------ SECTION 6 ------------------------------------------------- */
.ggl-roc-section-6 {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: none;
    width: 100%;
    height: 51vw;
    overflow: hidden;
}

.ggl-roc-section-6-title {
    position: absolute;
    max-width: 1241px;
    width: 45vw;
    left: 8vw;
    top: 4vw;
}

.ggl-roc-section-6-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.ggl-roc-section-6-gradient1 {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ggl-roc-section-6-content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 2vw;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ggl-roc-section-6-devider {
    position: absolute;
    max-width: 601px;
    width: 37vw;
    top: 41.5vw;
}

#event {
    position: relative;
    z-index: 4;
}

#event .inner {
    position: absolute;
    z-index: 2;
    width: 100%;
}

#event .inner:last-of-type {
    margin-bottom: 0px;
}

#event .inner .innerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-left: 0;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

#event .inner .innerContent .title {
    display: block;
    position: relative;
    height: auto;
    left: -15vw;
    margin-top: 7%;
    max-width: 455px;
    width: 25vw;
}

#event .inner .innerContent .title-mobile {
    display: none;
}

#event .inner .EVENT-CONTENT {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-IMG {
    width: 53vw;
    max-width: unset;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-DESKTOP {
    display: block;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-MOBILE {
    display: none;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-container {
    height: 40vw;
    margin-top: -8%;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-prev {
    width: 3%;
    height: 8%;
    left: 34%;
    top: 94%;
    transform: scaleX(-1);
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-next {
    width: 3%;
    height: 8%;
    right: 34%;
    top: 94%;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-prev:hover {
    filter: saturate(2);
    cursor: pointer;
}

#event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-next:hover {
    cursor: pointer;
}

.swiper-slide img {
    filter: grayscale(1) blur(2px) contrast(0.9);
    /* border: 8px solid #c4c4c4;
    border-radius: 12px; */
    width: 5vw;
}

.swiper-container .swiper-slide img {
    filter: grayscale(1) blur(2px) contrast(0.9);
    border: 8px solid #c4c4c4;
    border-radius: 12px;
    width: 5vw;
}

.swiper-container .swiper-slide-active img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-slide-active img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 28px !important;
    left: 38.5% !important;
    width: 24% !important;
}

.swiper-pagination-bullet {
    border-radius: 0 !important;
    width: 65px !important;
    height: 7px !important;
    transform: skew(25deg);
}

.swiper-pagination-bullet {
    opacity: 0.5;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 1707px) {

    .swiper-pagination-fraction,
    .swiper-pagination-custom,
    .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 24px !important;
        left: 21.5% !important;
        width: 57% !important;
        z-index: 0;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-prev {
        left: 27%;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-next {
        width: 3%;
        height: 8%;
        right: 27%;
        top: 94%;
    }
}

@media screen and (max-width: 1024px) {
    #event .inner:last-of-type {
        margin-bottom: 13vw;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-prev {
        left: 20vw;
        top: 37vw;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-next {
        right: 20vw;
        top: 37vw;
    }
}

@media screen and (max-width: 767px) {
    .ggl-roc-section-6 {
        min-height: 177vw;
    }

    #event .inner:last-of-type {
        margin-bottom: 0vw;
    }

    #event .SC6-BG {
        display: none;
    }

    #event .SC6-BG-MOBILE {
        display: block;
    }

    #event .inner {
        margin-top: 9vw;
    }

    #event .inner .innerContent {
        margin-top: 8%;
    }

    #event .inner .innerContent .title {
        display: none;
    }

    #event .inner .innerContent .title-mobile {
        display: block;
        position: relative;
        height: auto;
        width: 45%;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-IMG {
        width: 64vw;
        border: 8px solid #c4c4c4;
        border-radius: 12px;
        filter: drop-shadow(2px 4px 7px black);
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-DESKTOP {
        display: none;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-MOBILE {
        display: block;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-container {
        height: 115vw;
        margin-top: 2%;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-prev {
        width: 10%;
        height: 10%;
        left: 10%;
        top: 45%;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-button-next {
        width: 10%;
        height: 10%;
        right: 10%;
        top: 45%;
    }

    img.ggl-roc-section-11-frame-event {
        display: none;
    }

    .swiper-pagination {
        display: none;
    }
}

@media screen and (max-width: 425px) {
    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-IMG {
        width: 63vw;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-container {
        margin-top: 8%;
    }

    #event .inner .innerContent .title-mobile {
        width: 63%;
    }
}

/* @media screen and (max-width: 485px) {
    #event .inner {
        margin-top: -35vw;
    }

    #event .inner .innerContent .title {
        display: none;
    }

    #event .inner .innerContent .title-mobile {
        display: block;
        position: relative;
        height: auto;
        top: 1vw;
        max-width: 571px;
        width: 50vw;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .swiper-container {
        height: 115vw;
        margin-top: 11%;
    }

    #event .inner .EVENT-CONTENT .EVENT-CONTAINER .EVENT-IMG {
        width: 67vw;
        border: 8px solid #6b598566;
        border-radius: 7px;
        filter: drop-shadow(2px 4px 7px black);
    }
} */

/* ------------------------------------------------ FOOTER ------------------------------------------------- */
.btn-to-top {
    text-align: right;
    cursor: pointer;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
    z-index: 999;
}

.btn-to-top img {
    width: 60%;
    max-width: 125px;
}

footer {
    background-color: #252525;
    border-top: 5px solid #ffd900;
    background-size: cover;
    position: relative;
}

.row-logo {
    padding-top: 2vw;
    padding-bottom: 3vw;
}

.sosmed a {
    color: #fff;
    font-size: 24pt;
    margin-right: 1vw;
    transition-duration: 0.3s;
}

.sosmed a:hover {
    color: #fa9e25;
}

.ggl-logo {
    margin-right: 2vw;
    padding-top: 1vw;
}

.ggl-info {
    padding-top: 2vw;
    font-weight: bold;
    color: #ffe;
}

@media (max-width: 767px) {
    .ggl-info {
        font-size: 0.9rem;
    }
}

/* ------------------------------------------------ ANIMASI ------------------------------------------------- */

@keyframes reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes highLight {
    0% {
        filter: brightness(1);
    }

    45% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.4) contrast(1.1) saturate(1.1);
    }

    60% {
        filter: brightness(1.1);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.c {
    width: 240px;
    height: 240px;
    border: 3px solid #ececec;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, -50px);
}

.c:after {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid #ececec;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: R 10s infinite linear;
}

.c2 {
    width: 100%;
    height: 100%;
    border: 1px solid #ececec;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 1px;
    animation: L 80s infinite linear;
    box-sizing: border-box;
}

.c3 {
    width: 33%;
    height: 33%;
    border: 2px solid #ececec;
    border-radius: 50%;
    transform: translate3d(-50%, -50%, 5px);
    position: absolute;
    top: 50%;
    left: 50%;
}

.c3:after {
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid #ececec;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: L 5s infinite linear;
}

.c4 {
    width: 75px;
    height: 75px;
    transform: translate3d(-50%, -50%, 0px);
    position: absolute;
    left: 50%;
    top: 50%;
}

.c4:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -3px;
    top: -3px;
    border-radius: 50%;
    border: 3px solid #ececec;
    border-left-color: transparent;
    animation: R 5s infinite linear;
}

.c5 {
    width: 77px;
    height: 77px;
    transform: translate3d(-50%, -50%, 65px);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
}

.c5:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
    border: 1px solid #ececec;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: L 5s infinite linear;
}

.c6 {
    width: 55px;
    height: 55px;
    transform: translate3d(-50%, -50%, 61px);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
}

.c6:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
    border: 1px solid #ececec;
    border-right-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    animation: R 10s infinite linear;
}

i {
    height: 15px;
    width: 1px;
    background: #ececec;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    transform-origin: 1000% 1005%;
}

i:nth-child(1) {
    transform: rotate(-5deg);
}

i:nth-child(2) {
    transform: rotate(5deg);
}

i:nth-child(3) {
    transform: rotate(15deg);
}

i:nth-child(4) {
    transform: rotate(25deg);
}

i:nth-child(5) {
    transform: rotate(35deg);
}

i:nth-child(6) {
    transform: rotate(45deg);
}

i:nth-child(7) {
    transform: rotate(55deg);
}

i:nth-child(8) {
    transform: rotate(65deg);
}

i:nth-child(9) {
    transform: rotate(75deg);
}

i:nth-child(10) {
    transform: rotate(85deg);
}

i:nth-child(11) {
    transform: rotate(95deg);
}

i:nth-child(12) {
    transform: rotate(105deg);
}

i:nth-child(13) {
    transform: rotate(115deg);
}

i:nth-child(14) {
    transform: rotate(125deg);
}

i:nth-child(15) {
    transform: rotate(135deg);
}

i:nth-child(16) {
    transform: rotate(145deg);
}

i:nth-child(17) {
    transform: rotate(155deg);
}

i:nth-child(18) {
    transform: rotate(165deg);
}

i:nth-child(19) {
    transform: rotate(175deg);
}

i:nth-child(20) {
    transform: rotate(185deg);
}

i:nth-child(21) {
    transform: rotate(195deg);
}

i:nth-child(22) {
    transform: rotate(205deg);
}

i:nth-child(23) {
    transform: rotate(215deg);
}

i:nth-child(24) {
    transform: rotate(225deg);
}

i:nth-child(25) {
    transform: rotate(235deg);
}

i:nth-child(26) {
    transform: rotate(245deg);
}

i:nth-child(27) {
    transform: rotate(255deg);
}

i:nth-child(28) {
    transform: rotate(265deg);
}

i:nth-child(29) {
    transform: rotate(275deg);
}

i:nth-child(30) {
    transform: rotate(285deg);
}

i:nth-child(31) {
    transform: rotate(295deg);
}

i:nth-child(32) {
    transform: rotate(305deg);
}

i:nth-child(33) {
    transform: rotate(315deg);
}

i:nth-child(34) {
    transform: rotate(325deg);
}

i:nth-child(35) {
    transform: rotate(335deg);
}

i:nth-child(36) {
    transform: rotate(345deg);
}

i:nth-child(37) {
    transform: rotate(355deg);
}

i:nth-child(38) {
    transform: rotate(365deg);
}

figure {
    width: 305px;
    height: 305px;
    margin: 0;
    position: absolute;
    right: -7%;
    top: 86%;
    transform: translate(-50%, -50%) rotateX(-40deg) rotateY(30deg) scale(2.1, 2.1);
    transition: 1.4s;
    transform-style: preserve-3d;
    opacity: 0.3;
}

figure:hover {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1.1, 1.1);
}

@keyframes R {
    0% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(380deg)
    }
}

@keyframes L {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg)
    }
}
