@import "fontface.css";

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100% !important;
    font-family: 'Gilroy Light' !important;
    font-weight: 500 !important;
    font-size: 2rem !important;
    -webkit-font-feature-settings: "palt" 1 !important;
    font-feature-settings: "palt" 1 !important;
    color: #313131 !important;
    background: #25282e !important;
    line-height: 1.75 !important;
    letter-spacing: 0.1rem !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {

    body {
        font-size: 1.4rem !important;
    }

}

img {
    opacity: 1;
    -webkit-transition: all 480ms;
    transition: all 480ms;
    display: block;
}

img {
    max-width: 100%;
    vertical-align: bottom !important;
}

img[src$=".svg"] {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

a {
    color: #333;
    text-decoration: none !important;
}

body, h1, h2, h3, h4, h5, p, ul[class], ol[class], li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}

#facebox .close{
	top: -15px;
	right: -15px;
}

#facebox .btn-gohome{
	position: absolute;
	left: 35%;
    bottom: 5%;
}

@media(max-width: 768px){

	#facebox .content{
		width: auto;
	}

	#facebox img{
		width: 100%;
	}

	#facebox .close{
		top: 15vh;
		right: 0px;
		width: 12%;
	}

	#facebox .btn-gohome{
		position: absolute;
		left: 12%;
	    top: 90vh;
	}

	#facebox .btn-gohome img{
		max-width: 80%;
	}
}

.floating-banner {
    position: absolute;
    display: block;
    top: 15%;
    right: 1%;
    z-index: 99;
}

.floating-banner img {
    width: 12vw;
    animation: animationBannerFloat 2s ease-in-out infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.floating-banner img:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    cursor: pointer;
}

@keyframes animationBannerFloat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

}

@media screen and (max-width: 768px) {

    .floating-banner {
        display: none;
    }

}

/* ----------------------------------------------- HAMBURGER ------------------------------------------------- */

.hamburger {
    position: absolute;
    left: 1.5%;
    top: 5%;
    width: 3.5% !important;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.6s ease;
    background: #0000007a;
}

/* .hamburger.active {
  transform: rotate(90deg);
} */

@media screen and (max-width: 768px) {
    
    .hamburger {
        top: 11%;
        width: 7% !important;
    }

}

@media screen and (max-width: 480px) {
    
    .hamburger {
        width: 10% !important;
    }

}

/* ------------------------------------------------ SIDEBAR ------------------------------------------------- */

.sidebar {
    position: absolute;
    left: 2%;
    top: 13%;
    width: 10%;
    padding-top: 0px;
    border-left: 2px solid rgba(255,255,255,0.2);
    z-index: 1000;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.sidebar.hidden {
    opacity: 0;
    transform: translateY(-100px);
    pointer-events: none;
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ul li {
    margin: 3.5vw 0;
    padding-left: 15px;
}

.sidebar ul li.active a {
    font-size: 1vw;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    display: block;
    font-family: 'Gilroy Light';
    font-size: 0.85vw;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 3px;
}

.sidebar ul li.active a::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 1.5%;
    background: #6dcdf5;
}

.sidebar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #6dcdf5;
    transition: width 0.5s ease-in;
}

.sidebar ul li.active a::after,
.sidebar ul li a:hover::after {
    width: 7.5vw;
}

.sidebar ul li.active a {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    
    .sidebar {
        top: 18%;
        width: 20%;
        background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0) 100%);
    }
        
    .sidebar ul li.active a {
        font-size: 2vw;
    }

    .sidebar ul li a {
        font-size: 1.5vw;
    }

    .sidebar ul li.active a::after,
    .sidebar ul li a:hover::after {
        width: 13vw;
    }

}

@media screen and (max-width: 480px) {

    .sidebar {
        width: 30%;
    }
    
    .sidebar ul li.active a {
        font-size: 3vw;
    }

    .sidebar ul li a {
        font-size: 2.5vw;
    }

    .sidebar ul li.active a::after,
    .sidebar ul li a:hover::after {
        width: 20vw;
    }

}
/* ------------------------------------------------- PAGE NUMBER ----------------------------------------------------- */

.section .num {
    position: absolute;
    font-family: 'Gilroy Light';
    font-size: 1.19vw;
    font-weight: lighter;
    right: 2.5%;
    top: 6.5%;
    color: #d9dddc;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media screen and (max-width: 768px) {
    
    .section .num {
        font-size: 1.59vw;
        right: 2%;
        top: 3%;
    }

}

@media screen and (max-width: 480px) {
    
    .section .num {
        font-size: 1.69vw;
        right: 1%;
        top: 2%;
        gap: 0.5px;
    }

}

/* ------------------------------------------------- SECTION 0 ----------------------------------------------------- */

#section0 {
    background: url(../images/teaser/anniv6th/sc1/bg1.2.jpg) no-repeat center top;
    background-size: cover;
    overflow: hidden;
    margin-top: 0;
}

#section0 .SC1-VIDEO {
    position: absolute; 
    opacity: 1;
    top: 0; 
    left: 0; 
    object-fit: cover;
    z-index: 1;
}

#section0 .inner {
    position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
    height: 100vh;
    padding-top: 0;
}

#section0 .inner:last-of-type {
    margin-bottom: 0px;
}

#section0 .inner .innerLogoPc {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
    margin: auto;
    width: 100%;
    margin-top: 1%;
    margin-left: -2%;
    z-index: 2;
}

#section0 .inner .innerLogoPc a {
    margin-left: 8%;
    margin-top: -1%;
}

#section0 .inner .innerLogoPc a .logo {
    position: relative;
    height: auto;
    max-width: unset;
    width: 9vw;
    margin: auto;
    cursor: pointer;
}

#section0 .inner .innerLogoPc .pcgame {
    position: relative;
    height: auto;
    width: 13%;
}

#section0 .inner .SosmedWindows {
    display: -webkit-flex;
    display: flex;
    position: absolute;
    gap: 10px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    right: 2%;
    bottom: 7.5%;
}

#section0 .inner .innerSosmed {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    position: relative;
    flex-wrap: nowrap;
    margin: auto;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    z-index: 2;
}

#section0 .inner .innerSosmed a .sosmedbtn {
    position: relative;
    height: auto;
    max-width: unset;
    width: 2.5vw;
    margin: auto;
    cursor: pointer;
}

#section0 .inner .innerDownload {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin: auto;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    z-index: 2;
}

#section0 .inner .innerDownload .download {
    position: relative;
    height: auto;
    max-width: unset;
    width: 8.5vw;
    margin: auto;
    cursor: pointer;
}

#section0 .inner .innerCharTitle {
    display: none;
}

@media screen and (max-width: 768px) {
    
    #section0 {
        background: url(../images/teaser/anniv6th/sc1/mobile/bg1.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        margin-top: 0;
    }

    #section0 .SC1-VIDEO {
        display: none;
    }
        
    #section0 .inner .innerLogoPc {
        margin-top: 1.5%;
    }

    #section0 .inner .innerLogoPc a {
        margin-top: 0;
    }

    #section0 .inner .innerLogoPc a .logo {
        width: 16vw;
    }

    #section0 .inner .innerLogoPc .pcgame {
        width: 20%;
    }

    #section0 .inner .innerCharTitle {
        display: -webkit-flex;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        position: relative;
        flex-wrap: nowrap;
        margin: auto;
        width: 100%;
        margin-top: 25%;
        margin-left: 0;
        z-index: 2;
    }

    #section0 .inner .innerCharTitle .char {
        position: relative;
        height: auto;
        width: 100%;
    }

    #section0 .inner .innerCharTitle .title {
        position: relative;
        height: auto;
        width: 95%;
        margin-top: -95%;
        z-index: 2;
    }

    #section0 .inner .innerCharTitle .shadowChar {
        position: absolute;
        height: auto;
        width: 100%;
        margin-top: 0%;
        filter: opacity(0.4);
    }

    #section0 .inner .SosmedWindows {
        bottom: 0.5%;
        gap: 5px;
    }

    #section0 .inner .innerSosmed {
        gap: 2px;
    }

    #section0 .inner .innerSosmed a .sosmedbtn {
        width: 5vw;
    }
    
    #section0 .inner .innerDownload .download {
        width: 15vw;
    }

}

@media screen and (max-width: 480px) {
    
    #section0 .inner .innerLogoPc a {
        margin-left: 5%;
    }

    #section0 .inner .innerLogoPc a .logo {
        width: 28vw;
    }

    #section0 .inner .innerLogoPc .pcgame {
        width: 35%;
    }

    #section0 .inner .innerCharTitle {
        margin-top: 20%;
    }

    #section0 .inner .innerCharTitle .title {
        margin-top: -48%;
    }

    #section0 .inner .SosmedWindows {
        bottom: 7%;
    }

    #section0 .inner .innerSosmed {
        gap: 4px;
    }

    #section0 .inner .innerSosmed a .sosmedbtn {
        width: 10vw;
    }
    
    #section0 .inner .innerDownload .download {
        width: 30vw;
    }

}

/* ------------------------------------------------- SECTION 1 ----------------------------------------------------- */

#section1 {
    background: url(../images/teaser/anniv6th/sc2/bg2.jpg) no-repeat center top;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: 0;
}

#section1 .inner {
    position: absolute;
	top: 20%;
	z-index: 1;
	width: 100%;
    padding-top: 0;
}

#section1 .inner:last-of-type {
    margin-bottom: 0px;
}

#section1 .inner .innerCM {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}

#section1 .inner .innerCMmobile {
    display: none;
}

#section1 .inner .innerCM .CM {
    position: relative;
    height: auto;
    width: 11%;
}

#section1 .inner .innerContent {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 0;
    margin-top: 0.5%;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    animation: animationCM 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

#section1 .inner .innerContent .content {
    position: relative;
    display: block;
    height: auto;
    max-width: unset;
    width: 50vw;
    margin: auto;
    cursor: pointer;
}

#section1 .inner .innerContent .contentMobile {
    display: none;
}

@keyframes animationCM {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

}

@media screen and (max-width: 768px) {
    
    #section1 {
        background: url(../images/teaser/anniv6th/sc2/mobile/bg2.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        margin-top: 0;
    }

    #section1 .inner {
        top: 0;
    }

    #section1 .inner .innerCM {
        display: none;
    }

    #section1 .inner .innerCMmobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        margin-left: 0;
        margin-top: 15%;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        z-index: 2;
    }

    #section1 .inner .innerCMmobile .RowCM {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        margin-left: 0;
        margin-top: 0;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        z-index: 2;
    }

    #section1 .inner .innerCMmobile .RowCM .CM {
        position: relative;
        height: auto;
        width: 15%;
    }

    #section1 .inner .innerContent .content {
        display: none;
    }

    #section1 .inner .innerContent .contentMobile {
        position: relative;
        height: auto;
        width: 55vw;
        display: block;
    }

}

@media screen and (max-width: 480px) {
    
    #section1 {
        background-size: 100% 100%;
    }

    #section1 .inner .innerCM {
        display: none;
    }

    #section1 .inner .innerCMmobile {
        margin-top: 20%;
    }

    #section1 .inner .innerCMmobile .RowCM .CM {
        width: 25%;
    }

    #section1 .inner .innerContent {
        margin-top: 15%;
    }

    #section1 .inner .innerContent .content {
        display: none;
    }

    #section1 .inner .innerContent .contentMobile {
        width: 100%;
    }

}

/* ------------------------------------------------- SECTION 2 ----------------------------------------------------- */

#section2 {
    background: url(../images/teaser/anniv6th/sc3/bg3.jpg) no-repeat center top;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: 0;
}

#section2 .inner {
    position: absolute;
	top: 2%;
	z-index: 2;
	width: 100%;
    padding-top: 0;
    display: flex;
}

#section2 .innerMobile {
    display: none;
}

#section2 .inner:last-of-type {
    margin-bottom: 0px;
}

#section2 #featured {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

#section2 #featured .perspective {
    width: 100%;
    perspective: 2000px !important;
}

#section2 #featured .extra {
    position: absolute;
    width: 27%;
    top: 15%;
    left: 50%;
    transform: translateZ(-100px);
}

#section2 #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: 100vh;
    box-sizing: border-box;
    z-index: 1;
    transform-style: preserve-3d;
    transition: transform .05s linear;
}

#section2 #featured .slide-wrapper {
    width: 60%;
    height: 60vh;
    position: absolute;
    perspective: 2000px;
    transform-style: preserve-3d;
    transform: translateZ(0px);
    display: flex;
    align-items: center;
    justify-content: center;
}

#section2 #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;
}

#section2 #featured .costum-slide .feature-img {
    width: 50vw;
    height: auto;
    object-fit: cover;
    display: block;
}

#section2 #featured .costum-slide .feature-img:hover {
    filter: saturate(2);
}

#section2 #featured .btn-prev, 
#section2 #featured .btn-next {
    position: absolute;
    width: 11vw;
    height: 6vw;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#section2 #featured .btn-prev { 
    left: 20%;
}

#section2 #featured .btn-next { 
    right: 20%;
    transform: translateY(-50%) rotate(180deg);
}

#section2 #featured .slider-btn-prev, 
#section2 #featured .slider-btn-next {
    width: 30%;
    height: auto;
}

#section2 #featured .pagination {
    position: absolute;
    display: flex;
    gap: 8px;
    top: 39vw;
    right: 27vw;
}

#section2 #featured .bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
}

#section2 #featured .bullet.active {
    background: #6dcdf5;
    border: 2px solid #007bff;
}

#section2 #featured .slide-title, 
#section2 #featured .slide-subtitle {
    position: absolute;
    top: 65%;
    left: 20%;
    width: 11vw;
    height: 3vw;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    transition: opacity 0.5s, transform 0.5s;
    background: url(../images/teaser/anniv6th/sc3/text.png) no-repeat center top;
    box-sizing: border-box;
    background-size: 100% 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

#section2 #featured .slide-title {
    transform: translateZ(100px);
}

#section2 #featured .slide-subtitle {
    left: 72%;
    transform: translateZ(-40px);
    opacity: 0.7;
}

#section2 #featured .slide-title span,
#section2 #featured .slide-subtitle span  {
    font-family: 'Poppins';
    font-size: 2.6vw;
    margin-top: -2.3vw;
}

@media screen and (max-width: 768px) {

    #section2 {
        background: url(../images/teaser/anniv6th/sc3/mobile/bg3.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        margin-top: 0;
    }

    #section2 .inner {
        display: none;
    }

    #section2 #featured {
        display: none;
    }

    #section2 .innerMobile {
        position: absolute;
        top: 0;
        z-index: 2;
        padding-top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    #section2 .innerMobile:last-of-type {
        margin-bottom: 0px;
    }

    #section2 .innerMobile .extra {
        position: absolute;
        width: 40%;
        top: 9%;
        right: 20.5%;
    }

    #section2 .innerMobile .line {
        display: none;
    }

    #section2 .innerMobile .SlideWord {
        display: none;
    }

    #section2 .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;
    }

    #section2 .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: 12%;
    }

    #section2 .innerMobile .costum-slide-mobile {
        position: absolute;
        top: 0;
        left: 50%;
        width: 90%;
        height: 100%;
        transform: translateX(-50%);
        overflow: hidden;
        backface-visibility: hidden;
        transition: transform 0.6s ease, opacity 0.6s ease;
    }

    #section2 .innerMobile .costum-slide-mobile .feature-img {
        width: 60vw;
        height: auto;
        object-fit: cover;
        display: block;
    }

    #section2 .innerMobile .costum-slide-mobile .feature-img:hover {
        filter: saturate(2);
    }

    #section2 .innerMobile .btn-prev, 
    #section2 .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;
    }

    #section2 .innerMobile .btn-prev { 
        left: 10%;
    }

    #section2 .innerMobile .btn-next { 
        right: 10%;
        transform: translateY(-50%) rotate(180deg);
    }

    #section2 .innerMobile .slider-btn-prev, 
    #section2 .innerMobile .slider-btn-next {
        width: 30%;
        height: auto;
    }

    #section2 .innerMobile .pagination {
        display: none;
    }

    #section2 .innerMobile .slide-title {
        position: absolute;
        top: 90%;
        left: 3%;
        width: 25vw;
        height: 7vw;
        color: white;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
        transition: opacity 0.5s, transform 0.5s;
        background: url(../images/teaser/anniv6th/sc3/text.png) no-repeat center top;
        box-sizing: border-box;
        background-size: 100% 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    #section2 .innerMobile .slide-title span  {
        font-family: 'Poppins';
        font-size: 11vw;
        margin-top: -12vw;
    }

}

@media screen and (max-width: 480px) {
    
    #section2 {
        background-size: 100% 100%;
    }

    #section2 .innerMobile .extra {
        width: 50%;
        top: 10%;
        right: 10%;
    }

    #section2 .innerMobile .line {
        display: flex;
        position: absolute;
        width: 35%;
        top: 161vw;
        right: 26%;
    }

    #section2 .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;
    }

    #section2 .innerMobile .slide-wrapper {
        width: 75%;
    }

    #section2 .innerMobile .costum-slide-mobile {
        width: 100%;
    }

    #section2 .innerMobile .costum-slide-mobile .feature-img {
        width: 100vw;
    }

    #section2 .innerMobile .btn-prev { 
        left: 2%;
    }

    #section2 .innerMobile .btn-next { 
        right: 2%;
        transform: translateY(-50%) rotate(180deg);
    }

    #section2 .innerMobile .pagination {
        position: absolute;
        display: flex;
        gap: 4px;
        top: 160vw;
        right: 14%;
    }

    #section2 .innerMobile .bullet {
        width: 12px;
        height: 12px;
        background: rgba(255,255,255,0.4);
        border-radius: 0;
        cursor: pointer;
        transition: 0.3s;
    }

    #section2 .innerMobile .bullet.active {
        background: #6dcdf5;
        border: 2px solid #007bff;
    }

    #section2 .innerMobile .slide-title {
        top: 156vw;
        width: 35vw;
        height: 10vw;
    }

    #section2 .innerMobile .slide-title span  {
        font-size: 12vw;
        margin-top: -12vw;
    }

}

/* ------------------------------------------------- SECTION 3 ----------------------------------------------------- */

#section3 {
    background: url(../images/teaser/anniv6th/sc4/bg4.jpg) no-repeat center top;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: 0;
}

#section3 .slide .inner {
    position: absolute;
	top: 20%;
	z-index: 1;
	width: 100%;
    padding-top: 0;
}

#section3 .slide .inner:last-of-type {
    margin-bottom: 0px;
}

#section3 .slide .inner .innerContentBike {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
    margin-left: 0;
    margin-top: -0.5%;
    padding: 0 1rem;
    width: 33.3%;
    box-sizing: border-box;
    z-index: 1;
}

#section3 .slide .inner .innerContentBike .content {
    position: relative;
    height: auto;
    width: 30%;
}

#section3 .slide .inner .innerContentBike .title {
    position: relative;
    height: auto;
    width: 40%;
}

#section3 .slide .inner .innerContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    padding: 0 1rem;
    width: 33.3%;
    box-sizing: border-box;
    z-index: 2;
}

#section3 .slide .inner .innerContent .CHAR {
    position: relative;
    height: auto;
    width: 27%;
}

#section3 .slide .inner .innerContent .CHAR:nth-child(1) {
    margin-left: 0;
}

#section3 .slide .inner .innerContent .CHAR:nth-child(2) {
    margin-left: -10%;
}

#section3 .slide .inner .innerContent .MAP {
    position: relative;
    height: auto;
    width: 15%;
}

#section3 .slide .inner .innerContentTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 0;
    margin-top: 0.5%;
    padding: 0 1rem;
    width: 33.3%;
    box-sizing: border-box;
    z-index: 1;
}

#section3 .slide .inner .innerContentTitle .title {
    position: relative;
    height: auto;
    width: 40%;
}

#section3 .slide .inner .innerContentMobileMap {
    display: none;
}

@media screen and (max-width: 768px) {
    
    #section3 {
        background: url(../images/teaser/anniv6th/sc4/mobile/bg4.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        margin-top: 0;
    }

    #section3 .slide .inner {
        top: 0;
    }

    #section3 .slide .inner .innerContentBike {
        margin-top: 5.5%;
    }

    #section3 .slide .inner .innerContentBike .content {
        width: 70%;
    }

    #section3 .slide .inner .innerContentBike .title {
        width: 100%;
    }
    
    #section3 .slide .inner .innerContent {
        margin-top: 5%;
    }

    #section3 .slide .inner .ContentMap {
        margin-top: 8%;
    }

    #section3 .slide .inner .TitleMap {
        margin-top: 2.9%;
    }

    #section3 .slide .inner .innerContent .CHAR {
        width: 70%;
    }

    #section3 .slide .inner .innerContent .CHAR:nth-child(2) {
        margin-left: -30%;
    }

    #section3 .slide .inner .innerContent .MAP {
        width: 30%;
    }

    #section3 .slide .inner .innerContentTitle .title {
        width: 100%;
    }

}

@media screen and (max-width: 480px) {
    
    #section3 {
        background-size: 100% 100%;
    }

    #section3 .slide .inner .innerContentBike {
        margin-top: 10%;
    }

    #section3 .slide .inner .innerContentBike .content {
        width: 100%;
    }

    #section3 .slide .inner .innerContentBike .title {
        margin-top: 16.3%;
    }

    #section3 .slide .inner .innerContent {
        margin-top: 15%;
    }

    #section3 .slide .inner .ContentMap {
        display: none;
    }

    #section3 .slide .inner .TitleMap {
        margin-top: 1.8% !important;
    }

    #section3 .slide .inner .innerContent .CHAR {
        width: 75%;
    }

    #section3 .slide .inner .innerContent .CHAR:nth-child(2) {
        margin-left: -40%;
    }

    #section3 .slide .inner .innerContentMobileMap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: relative;
        margin-left: 0;
        margin-top: 5%;
        padding: 0 1rem;
        width: 33.3%;
        box-sizing: border-box;
        z-index: 2;
    }

    #section3 .slide .inner .innerContentMobileMap .MapBot {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: relative;
        margin-left: 0;
        margin-top: 0;
    }

    #section3 .slide .inner .innerContentMobileMap .MAP {
        position: relative;
        height: auto;
        width: 35%;
    }

    #section3 .slide .inner .innerContentTitle {
        margin-top: 8%;
    }

}

/* ------------------------------------------------- SECTION 4 ----------------------------------------------------- */

#section4 {
    background: url(../images/teaser/anniv6th/sc5/bg5.jpg) no-repeat center top;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: 0;
}

#section4 .inner {
    position: absolute;
	top: 0;
	z-index: 1;
	width: 100%;
    padding-top: 0;
    display: flex;
}

#section4 .innerMobile {
    display: none;
}

#section4 .inner:last-of-type {
    margin-bottom: 0px;
}

#section4 .inner .innerCalendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
    margin-left: 0;
    margin-top: -1.5%;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

#section4 .inner .innerCalendar .content {
    position: relative;
    height: auto;
    width: 52%;
}

#section4 #calendar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

#section4 #calendar .perspective {
    width: 100%;
    perspective: 2000px !important;
}

#section4 #calendar .perspective .innerCalendar {
    transform-style: preserve-3d;
    transition: transform .05s linear;
}

#section4 #calendar .perspective .innerCalendar span {
    position: absolute;
    bottom: -4%;
    color: white;
    letter-spacing: 0.5vw;
    transform: translateZ(200px);
}

@media screen and (max-width: 768px) {
    
    #section4 {
        background: url(../images/teaser/anniv6th/sc5/mobile/bg5.jpg) no-repeat center top;
        background-size: cover;
        overflow: hidden;
        margin-top: 0;
    }

    #section4 .inner {
        display: none;
    }

    #section4 #calendar {
        display: none;
    }

    #section4 .innerMobile {
        position: absolute;
        top: 0;
        z-index: 1;
        width: 100%;
        height: 100vh;
        padding-top: 0;
        display: flex;
    }

    #section4 .innerMobile:last-of-type {
        margin-bottom: 0px;
    }

    #section4 .innerMobile .innerCalendar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        position: relative;
        margin-left: 0;
        margin-top: 0;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        z-index: 1;
    }

    #section4 .innerMobile .innerCalendar .content {
        position: relative;
        height: auto;
        width: 100%;
    }

    #section4 .innerMobile .innerWords {
        position: absolute;
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 5%;
    }

    #section4 .innerMobile .innerWords span {
        font-size: 3vw;
        color: white;
        letter-spacing: 0.5vw;
    }

}

@media screen and (max-width: 480px) {
    
    #section4 {
        background-size: 100% 100%;
    }

    #section4 .innerMobile .innerWords {
        bottom: 10%;
    }

}

/* ------------------------------------------------- FOOTER ----------------------------------------------------- */

#section5 {
    background-color: #000000;
    border-top: 3px solid #ffffff;
}

#section5 .row-logo {
    padding-top: 1%;
    margin-bottom: 0.5%;
}

#section5 .sosmed {
    font-size: 1.7vw;
}

#section5 .sosmed a {
    color: white;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0.5%;
    margin-left: 0.5%;
}

#section5 .sosmed a:hover {
    color: #0026ff;
}

#section5 .logo-footer {
    width: 10%;
    margin-bottom: 1%;
}

#section5 .text-footer {
    color: white;
    font-size: 1vw;
    margin-bottom: 1%;
}

#section5 .text-footer a {
    color: white;
}

#section5 .text-footer a:hover {
    color: #0026ff;
}

@media screen and (max-width: 768px) {

    #section5 .sosmed {
        font-size: 4vw;
    }

    #section5 .logo-footer {
        width: 20%;
    }
    
    #section5 .text-footer {
        font-size: 2vw;
    }

}