@font-face {
    font-family: 'Poetsen One';
    src: url('../font/PoetsenOne-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Billion Dreams';
    src: url('../font/BillionDreams_PERSONAL.ttf');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: sans-serif;

    /*/// Global Variabel ///*/
    --nav-height: 3rem;
    /*/ Colors /*/
    --color-main: #0096C7;
    --color-second: #023E8A;
    --color-third: #01002a;
    --color-third-25: #48CAE4;
    --color-golden: #ADE8F4;
    --color-golden-light: rgba(202, 240, 248, 1);
    --color-oldPepper: rgb(247 230 186);
    --color-oldPepper-2: rgb(252, 239, 220);
    --color-bright: #e5e2e2;
    --color-dark: #03045E;
    --color-shadow-bright: #e5a298;
    --color-shadow: rgba(0, 30, 29, 0.75);
    --color-navbar: #90e0ef
        /*// debug //*/
        /* border: 1px solid var(--color-main); */
}

/*// ---------- //*/
/*// Main  HTML //*/
/*// ---------- //*/

.hidden {
    display: none !important;
}

section {
    scroll-margin-top: var(--nav-height);
}

.section-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.section-info-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.section-info-btn-wrapper a {
    min-width: 60%;
}

.secTittle {
    color: var(--color-main);
    font-weight: 800;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-oldPepper);
    width: fit-content;
}

.section-info span {
    background-color: var(--color-golden);
    border-radius: 1rem;
    padding: 0.25rem;
    padding-inline: 1.5rem;
    width: fit-content;
    margin-inline: auto;
}

.cont-skip {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    color: var(--color-bright);
    text-decoration: none;
    text-align: center;
    background-color: var(--color-second);
}

.cont-skip:focus {
    width: fit-content;
    transform: translate(-50%, 100%);
    height: var(--nav-height);
}

.main-wrapper {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 20px;
}

/* width */
.main-wrapper::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.main-wrapper::-webkit-scrollbar-track {
    background: var(--color-bright);
}

/* Handle */
.main-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-main);
    border-radius: 1rem;
}

/* Handle on hover */
.main-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-golden);
    box-shadow: 0 0 5px var(--color-golden);
}

/*// ---------- //*/
/*// Container  //*/
/*// ---------- //*/

.container {
    position: relative;
    width: min(100vw - 15px, 920px + 2rem);
    height: 100%;
    padding-inline: 1rem;
    margin-inline: auto;
    z-index: 10;
}

.container-right,
.container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/*// ---------- //*/
/*//   Navbar   //*/
/*// ---------- //*/

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: calc(var(--nav-height) + 2rem);
    background-image: linear-gradient(to right, transparent, var(--color-main), var(--color-main), var(--color-third));
    background-repeat: no-repeat;
    background-position-x: 100vw;
    transition: height 0.3s ease-in, margin 0.3s ease-in, background-position-x 0.3s ease-in, box-shadow 0.3s ease-in;
    z-index: 9999;
}

.navbar.sticky {
    margin-bottom: 2rem;
    height: var(--nav-height);
    background-position-x: 0;
    box-shadow: 0 0 5px var(--color-shadow);
}

.navbar .container {
    position: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: 100%;
    padding: 0.5rem;
    color: var(--color-navbar);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    text-decoration: none;
    -webkit-text-stroke: 1px var(--color-third);
    max-width: 250px;
    transition: color 0.5s ease-in-out;
}

.nav-logo::after,
.nav-logo::before {
    content: '';
    position: absolute;
    left: -40px;
    width: 0;
    height: 120%;
    background-color: var(--color-third);
    transform: skew(-30deg);
    transition: width 0.5s;
    z-index: -1;
}

.navbar.sticky .nav-logo::after,
.navbar.sticky .nav-logo::before {
    width: calc((100vw - 1080px)/2 + 400px);
    box-shadow: 0 0 5px var(--color-shadow);
}

.nav-logo::before {
    rotate: -1deg;
}

.nav-logo::after {
    left: -35px;
    height: 130%;
    transform: skew(-40deg);
    background-color: var(--color-navbar);
    rotate: 1deg;
    z-index: -2;
}

.nav-logo img {
    height: 1.8rem;
    width: auto;
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(0 0 25px var(--color-golden-light));
    z-index: 1;
}

.nav-logo p {
    left: calc(var(--nav-height) + 0.5rem);
    width: max-content;
}

.nav-links {
    display: flex;
}

.nav-link {
    text-shadow: 0 0 5px var(--color-shadow);
}

.nav-login,
.nav-link {
    --color-nav_link: var(--color-golden);
    position: relative;
    color: var(--color-bright);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.navbar.sticky .nav-link {
    text-shadow: unset;
    --color-nav_link: var(--color-navbar);
}

.nav-link::after,
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.2rem;
    height: 5%;
    width: 0%;
    background-color: var(--color-nav_link);
    transition: all 0.3s ease-in-out, bottom 0s;
}

.nav-link::before {
    left: 0;
}

.nav-link::after {
    right: 0;
}

.nav-link:focus,
.nav-link:hover,
.nav-link.active {
    outline: transparent;
    text-shadow: 0 0 5px var(--color-shadow-bright);
    color: var(--color-nav_link);
}

.nav-link:focus::before,
.nav-link:hover::before,
.nav-link.active::before {
    width: 85%;
}

.nav-link:focus::after,
.nav-link:hover::after,
.nav-link.active::after {
    width: 10%;
}

.nav-login {
    padding-inline: 1rem;
    margin-left: 0.5rem;
    border-radius: 0.5rem;
    color: var(--color-bright);
    background-color: var(--color-main);
}

.nav-login:focus,
.nav-login:hover,
.navbar.sticky .nav-login {
    outline: transparent;
    color: var(--color-main);
    background-color: var(--color-golden);
}

.navbar.sticky .nav-login:focus,
.navbar.sticky .nav-login:hover {
    outline: transparent;
    color: var(--color-golden);
    background-color: var(--color-second);
    box-shadow: 0 0 10px var(--color-golden);
}

.nav-burger {
    aspect-ratio: 1 / 1;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: calc(var(--nav-height) - 1.5rem);
    transition: all 0.3s ease;
}

.burger-line {
    width: 100%;
    height: 20%;
    border-radius: 15px;
    background-color: var(--color-bright);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-burger.active {
    justify-content: center;
}

.nav-links.openned {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    padding: 2rem;
    padding-top: calc(var(--nav-height) + 2rem);
    /* background-position-y: 0; */
    box-shadow: 0 0 5px var(--color-shadow), 0 0 0 55vh var(--color-third-25);
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s;
    z-index: -3;
}

.nav-links.openned .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: nav-linkMobileOpen 0.5s 0s ease-out forwards;
}

.nav-links.openned .nav-link::before,
.nav-links.openned .nav-link::after {
    position: relative;
    bottom: 0;
}

.nav-links.openned .nav-link:focus::after,
.nav-links.openned .nav-link:hover::after,
.nav-links.openned .nav-link.active::after {
    width: 100%;
    height: 2px;
}

.nav-links.openned .nav-link:focus::before,
.nav-links.openned .nav-link:hover::before,
.nav-links.openned .nav-link.active::before {
    width: 1rem;
}

@keyframes nav-linkMobileOpen {
    from {
        translate: 100vw 0;
    }

    to {
        translate: 0;
    }
}

@keyframes nav-loginMobileOpen {
    from {
        bottom: -5rem;
    }

    to {
        bottom: 5rem;
    }
}

.nav-burger.active .burger-line:first-child {
    rotate: 45deg;
    translate: 0 100%;
}

.nav-burger.active .burger-line:nth-child(2) {
    scale: 0 1;
}

.nav-burger.active .burger-line:last-child {
    rotate: -45deg;
    translate: 0 -100%;
}

/*// ---------- //*/
/*// Nav Bubble //*/
/*// ---------- //*/

.nav-bubble {
    /* display: none; */
    position: fixed;
    right: 1.75rem;
    bottom: 2rem;
    height: 64px;
    width: 64px;
    z-index: 90;
    border-radius: 100%;
    filter: drop-shadow(0 0 5px var(--color-shadow));
    cursor: pointer;
}

.nav-bubble::before {
    content: "Cek Update!";
    position: absolute;
    top: -50%;
    right: -20%;
    text-align: center;
    font-size: 0.8rem;
    width: 130%;
    padding: 0.25rem;
    padding-inline: 0.5rem;
    border-radius: 1rem;
    background-color: var(--color-bright);
}

.nav-bubble:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -30%;
    left: -15px;
    bottom: -20px;
    border: 12px solid;
    border-color: var(--color-bright) var(--color-bright) transparent transparent;
    z-index: -1;
}

.bubble-img {
    height: 64px;
    width: 64px;
    border-radius: 100%;
    border: 2px solid var(--color-golden);
    background-color: var(--color-second);
    overflow: hidden;
    pointer-events: none;
}

.nav-bubble img {
    position: relative;
    /* bottom: 20px;
    left: -10%; */
    width: 100%;
    filter: drop-shadow(0 0 10px var(--color-shadow));
    pointer-events: none;
}

.navbar>.container>.nav-links>.nav-link:first-child.active~.nav-bubble {
    display: block;
}

/*// ---------- //*/
/*//    Body    //*/
/*// ---------- //*/

.background {
    display: grid;
    align-items: end;
    justify-items: end;
    position: absolute;
    top: -75px;
    left: 0;
    width: 100%;
    height: calc(100% + 150px);
    overflow: hidden;
    user-select: none;
    z-index: 0;
}

.background-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position-y: 0%;
    background-position-x: center;
}

.background svg {
    height: 100%;
    width: 100%;
    opacity: 0.3;
}

.background-text {
    position: absolute;
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-main);
    writing-mode: vertical-lr;
    margin-right: 1.5rem;
    width: 5rem;
    height: 350%;
    opacity: 0.8;
    -webkit-text-stroke: 2px var(--color-bright);
    z-index: 0;
}

.background-text span {
    color: var(--color-bright);
}

.revealUp,
.revealAbNav {
    opacity: 0;
    visibility: hidden;
}

/*// ---------- //*/
/*// Preloader  //*/
/*// ---------- //*/

.preload {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to bottom, var(--color-third), var(--color-dark));
    transition: background-color 1s ease-in, opacity 1s ease-in, scale 1s ease-in;
    overflow: hidden;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: var(--color-bright);
}

.preloadLogo {
    position: absolute;
    top: 2rem;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 25px var(--color-golden-light));
}

.preloadTittle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preloadDot {
    width: .25rem;
    height: .25rem;
    opacity: 0;
    background-color: var(--color-bright);
    border-radius: 100%;
    animation: loadingDot 1s ease 0s infinite forwards alternate;
}

.preload svg {
    position: absolute;
    bottom: -18%;
    height: 100%;
    z-index: -1;
    fill: var(--color-dark);
}

@keyframes loadingDot {
    from {
        scale: 1;
        opacity: 0.5;
    }

    to {
        scale: 1.5;
        opacity: 0.9;
    }
}

/*// ---------- //*/
/*//   Header   //*/
/*// ---------- //*/

header {
    position: relative;
    min-height: 105vh;
    transform-style: preserve-3d;
}

header .container {
    position: absolute;
    top: -15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

header .background-img {
    width: 100vw;
    filter: brightness(0.75);
    object-fit: cover;
    transform: translateZ(-15px) scale(2.1);
    z-index: -1;
}

header h3 {
    display: inline-block;
    letter-spacing: 1rem;
    color: var(--color-golden-light);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--color-dark);
}

header h1 {
    font-size: 3.5rem;
    font-family: 'Poetsen One', sans-serif;
    background: -webkit-linear-gradient(var(--color-golden-light), var(--color-golden));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--color-third);
    filter: drop-shadow(2px 2px 5px black);
}

.header-btn {
    position: relative;
    font-family: 'Billion Dreams';
    font-size: 2rem;
    text-decoration: none;
    font-weight: 200;
    color: var(--color-golden);
    text-shadow: 0 0 5px black, 0 0 20px black;
    padding-top: 1rem;
    animation: h-btn 2s ease 0s infinite forwards alternate;
}

@keyframes h-btn {
    from {
        color: var(--color-golden-light);
    }

    to {
        color: var(--color-navbar);
    }
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 2.2rem;
    left: 25%;
    width: 50%;
    height: 5px;
    border-radius: 100%;
    background-image: linear-gradient(to left, transparent, var(--color-shadow), transparent);
    z-index: -1;
}

.play-vid {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75px;
    width: 75px;
    line-height: 80px;
    transition: all 0.2s ease-in-out;
}

.play-vid div {
    display: flex;
    aspect-ratio: 1 / 1;
    background-color: var(--color-bright);
    height: 35%;
    margin: auto;
    background-color: var(--color-main);
    clip-path: polygon(20% 100%, 100% 50%, 20% 0%);
    transition: all 0.2s ease-in-out;
    z-index: 2;
}

.play-vid::before {
    content: '';
    position: absolute;
    padding: 40%;
    border: 5px solid var(--color-main);
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease-in-out;
    z-index: 0;
}

.play-vid:hover::before {
    border-color: var(--color-bright);
    background-color: var(--color-main);
}

.play-vid:hover div {
    background-color: var(--color-bright);
}

.sso-theme {
    position: relative;
    align-self: center;
    font-size: 1.2rem;
    color: var(--color-bright);
    text-align: center;
    text-shadow: 0 0 2px var(--color-shadow);
    padding: 0.5rem;
    padding-inline: 1rem;
    margin-inline: auto;
    width: fit-content;
    background: var(--color-second);
    background-color: var(--color-second);
}

.sso-theme i {
    position: absolute;
}

.sso-theme i:nth-child(2),
.sso-theme i:nth-child(3) {
    position: absolute;
    left: -20px;
    bottom: -20px;
    z-index: -1;
    border: 20px solid transparent;
    border-right-color: var(--color-shadow);
}

.sso-theme i:nth-child(3) {
    left: auto;
    right: -20px;
    border-right-color: transparent;
    border-left-color: var(--color-shadow);
}

.sso-theme i:nth-child(4),
.sso-theme i:last-child {
    width: 1rem;
    bottom: -20px;
    left: -28px;
    z-index: -2;
    border: 1.5rem solid var(--color-third);
    border-left-color: transparent;
}

.sso-theme i:last-child {
    bottom: -20px;
    left: auto;
    right: -28px;
    border: 1.5rem solid var(--color-third);
    border-right-color: transparent;
}

/*// ---------- //*/
/*//   About    //*/
/*// ---------- //*/

.about {
    position: relative;
    background-image: url(../img/sandTexture.jpg);
    background-size: cover;
    /* background-color: var(--color-oldPepper-2); */
    /* background-blend-mode: color; */
    padding-bottom: 100px;
    min-height: unset;
}

.about .container {
    padding: calc(var(--nav-height)*0.5);
    padding-inline: 0;

}

.about-item-top {
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem
}

.daftar-btn-1 {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--color-bright);
    border-radius: 0.5rem;
    padding: 0.5rem;
    padding-inline: 2rem;
    margin-top: 1rem;
    margin-inline: auto;
    width: fit-content;
    background-color: var(--color-main);
}

.daftar-btn-1:nth-of-type(2),
.daftar-btn-1:nth-of-type(3),
.daftar-btn-1:nth-of-type(4) {
    margin-top: 0;
}

.aboutNav {
    top: calc(var(--nav-height) + 1rem);
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0.5rem;
    padding-inline: 1rem;
    height: fit-content;
    z-index: 15;
}

.aboutNav-link {
    color: #4c473a;
    text-align: center;
    text-decoration: none;
    height: 35px;
    width: 100%;
    padding: 0.5rem;
    border-radius: 5px;
    background-color: #e6bf75;
    border: 1px solid #be8c25;
    transition: all 0.3s ease-out;
}

.aboutNav-link.active,
.aboutNav-link:hover,
.aboutNav-link:focus {
    font-size: 1rem;
    color: #2a2a2a;
    background-color: #be8c25;
}

.aboutNav-link:hover {
    box-shadow: inset 0 0 10px var(--color-shadow);
}

.about-item-wrapper {
    grid-area: c;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #4c473a;
}

.about-item {
    display: none;
    scroll-margin-top: calc(var(--nav-height)*2 + 1rem);
    border-radius: 15px 5px;
    padding: 1rem;
    height: fit-content;
    width: 100%;
}

.about-item.active {
    display: block;
}

.about-item h2 {
    color: #be8c25;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    text-shadow: 0 2px 5px #d9b15e;
    border-bottom: 2px solid #d9b15e;
}

.about-item p {
    margin: 1rem;
}

.about-lomba {
    position: relative;
    padding: 1rem;
    padding-inline: 0;
    text-indent: 0.5rem;
}

.about-lomba h3 {
    position: relative;
    text-align: center;
    text-indent: 0;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    z-index: 2;
}

.about-lomba p {
    position: relative;
    z-index: 2;
}

.download-btn {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 0.5rem;
    padding-inline: 0;
    gap: 0.5rem;
    z-index: 10;
}

.btn-link {
    color: #4c473a;
    text-decoration: none;
    padding: 8px;
    padding-inline: 16px;
    border-radius: 8px;
    background-color: #e6bf75;
    transition: all 0.3s ease-out;
}

.btn-link:hover,
.btn-link:focus {
    box-shadow: inset 0 0 10px var(--color-shadow);
    background-color: #be8c25;
}

.reward-items {
    display: grid;
    gap: 1rem;
}

.reward-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    padding-inline: 0.25rem;
    border-radius: 5px;
    background-color: #eaca85;
    box-shadow: inset 0 0 20px 20px var(--color-oldPepper);
}

.reward-item h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.reward-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50%;
    opacity: 0.8;
    z-index: 0;
}

.syarat-item,
.syarat-item ul,
.reward-item ul {
    list-style: initial;
    margin-left: 1.5rem;
    z-index: 1;
}

.syarat-item li,
.reward-item li {
    margin-top: 0.5rem;
    line-height: 1.2rem;
}

.syarat-item {
    padding-inline: 1rem;
    list-style-type: decimal;
}

.about .container-left {
    justify-content: start;
}

.about-side-item {
    position: sticky;
    top: 20%;
    width: 60%;
}

.about .head-wave {
    transform: rotate(0deg);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -1px;
    height: 90px;
    width: 100%;
    background-color: var(--color-main);
    z-index: 0;
}

.science {
    border-bottom: 2px solid #d9b15e;
}

.mathematics {
    border-top: 2px solid #d9b15e;
}

.social::before,
.science::before,
.mathematics::before {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: absolute;
    margin-top: 2rem;
    width: 100%;
    height: 100%;
    content: "\e4f3";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #d9b15e;
    font-style: normal;
    font-variant: normal;
    font-size: 5rem;
    line-height: 1;
    text-rendering: auto;
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    z-index: 0;
}

.social::before {
    content: "\e533";
}

.mathematics::before {
    content: "\f61f";
}

.promoEnamFreeSatu {
    color: #2a2a2a;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    background-color: #d9b15e;
}

/* /// Revisi /// */

.oldPaperWrapper {
    position: relative;
    padding: 1rem;
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.oldPaper-bg {
    position: absolute;
    top: 0;
    left: -1rem;
    width: calc(100% + 2rem);
    height: 100%;
    display: grid;
    grid-template-columns: min-content auto min-content;
    grid-template-rows: min-content auto min-content;
    z-index: -10;
}

.oldPaper {
    height: 5rem;
}

.oldPaperContent {
    background-color: var(--color-oldPepper);
}

.oldPaper img {
    height: calc(100% + 1px);
}

.oldPaperTest {
    width: 100%;
    height: 100%;
    background-color: #e8dcb8;
}

@keyframes openAbout {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

/*// ---------- //*/
/*//  Timeline  //*/
/*// ---------- //*/

.cd-timeline {
    --timeline-botHeight: 10rem;
    position: relative;
    min-height: calc(100vh - var(--nav-height)*2);
    padding-bottom: var(--timeline-botHeight);
    background-color: var(--color-main);
    background-image: linear-gradient(to bottom, var(--color-main), var(--color-third));
}

.cd-timeline>img {
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15%;
    width: 100%;
    max-width: 840px;
    margin-inline: auto;
    fill: var(--color-third);
}

.cd-timeline .section-info {
    padding-top: 1.5rem;
    width: min(100vw - 15px, 920px + 2rem);
    padding-inline: 1rem;
    margin-inline: auto;
}

.cd-timeline h1 {
    color: var(--color-bright);
}

.timeline-child {
    padding-left: 0.5rem;
    margin-top: -0.5rem;
}

.timeline-child h3 {
    width: fit-content;
}

.timeline-child p {
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
    text-indent: 0.5rem;
}

.timeline-btns {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    padding-inline: 0;
    overflow: hidden;
    z-index: 15;
}

.timeline-note {
    padding-top: 0.5rem;
    font-style: italic;
    text-align: end;
    opacity: 0.8;
}

.timeline-btns::-webkit-scrollbar {
    width: 100%;
    height: 5px;
}

.timeline-tilt {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    filter: drop-shadow(0 0 5px var(--color-shadow));
    line-height: 0;
}

.timeline-tilt svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    rotate: 180deg;
    height: var(--timeline-botHeight);
}

.timeline-tilt .shape-fill {
    fill: var(--color-oldPepper-2);
}

.timeline-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-btn-wrapper a {
    min-width: 75%;
}

.control-tl-next,
.control-tl-prev {
    position: absolute;
    width: 100%;
    height: 50%;
}

.control-tl-next {
    bottom: 0;
}

/*// ---------- //*/
/*// Testimoni  //*/
/*// ---------- //*/

.testimoni {
    --testimoni-botHeight: 150px;
    position: relative;
    padding-bottom: calc(var(--testimoni-botHeight) * 0.2);
    margin-bottom: calc(var(--testimoni-botHeight) * 0.8);
    height: fit-content;
    background-image: radial-gradient(closest-side, var(--color-oldPepper), var(--color-oldPepper-2));
    /* background-color: var(--color-oldPepper-2); */
}

.testimoni .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
}

.testimoni-items {
    overflow: hidden;
    height: fit-content;
}

.testimoni-items .testimoni-info {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.5rem;
    padding-inline: 1rem;
    text-align: start;
}

.testimoni-slide {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* background-image: radial-gradient(var(--color-oldPepper),#e6bf75 125%); */
    padding: 1.8rem 1.5rem;
    height: auto;
    overflow: visible;
    /* border-radius: 0 2rem;
    border: 3px solid #be8c25; */
    background-image: url('../img/Testimoni-background.svg');
    filter: url(#stroke);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media  only screen and (max-width: 1000px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-mini-desktop.svg');
        background-size: 75%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 20%;
        padding-right: 20%;
        overflow: visible;
    }
}

@media only screen and (max-width: 820px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-mini-desktop.svg');
        background-size: 82%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 17.5%;
        padding-right: 17.5%;
        overflow: visible;
    }
}


@media only screen and (max-width: 767px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-landscape.svg');
        background-size: 85%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media only screen and (max-width: 661px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-landscape.svg');
        background-size: 92.5%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 15%;
        padding-right: 15%;
    }
}

@media only screen and (max-width: 627px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-landscape.svg');
        background-size: 95%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media only screen and (max-width: 585px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-mobile.svg');
        background-size: 100%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 10%;
        padding-right: 10%;
    }
}

@media only screen and (max-width: 540px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-tiny-phone.svg');
        background-size: 95%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 22.5%;
        padding-right: 22.5%;
    }
}

@media only screen and (max-width: 516px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-tiny-phone.svg');
        background-size: 100%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media only screen and (max-width: 473px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background-tiny-phone-portrait.svg');
        background-size: 100%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 19%;
        padding-right: 19%;
    }
}

@media only screen and (max-width: 438px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 100%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 20%;
        padding-right: 20%;
    }
}

@media only screen and (max-width: 420px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 110%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 19%;
        padding-right: 19%;
    }
}

@media only screen and (max-width: 402px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 115%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 19%;
        padding-right: 19%;
    }
}

@media only screen and (max-width: 392px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 120%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 18.5%;
        padding-right: 18.5%;
    }
}

@media only screen and (max-width: 386px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 130%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 17.5%;
        padding-right: 17.5%;
    }
}

@media only screen and (max-width: 359px) {
    .testimoni-slide {
        background-image: url('../img/Testimoni-background.svg');
        background-size: 140%;
        background-position-x: center;
        background-position-y: top;
        padding-left: 12.5%;
        padding-right: 12.5%;
    }
}



.testimoni-slide p {
    text-indent: 1rem;
    padding-bottom: 1rem;
}

.testimoni-profile {
    display: flex;
    align-items: center;
}

.testimoni-profile img {
    height: 64px;
    width: 64px;
}

.swiper-pagination-testimoni {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 2rem;
    border-radius: 1rem;
    background-color: var(--color-dark);
}

.swiper-pagination-bullet-active {
    background-color: var(--color-golden) !important;
}

.testimoni-drop {
    position: absolute;
    bottom: calc(var(--testimoni-botHeight) * -1);
    left: 0;
    width: 100%;
    background-image: #fcefdc;
    box-shadow: 0 -50px 0 var(--color-oldPepper-2);
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.testimoni-drop svg {
    background-color: #fcefdc;
    position: relative;
    display: block;
    width: calc(160vw + 1.3px);
    height: calc(var(--testimoni-botHeight)*3);
    filter: drop-shadow(0 0 5px var(--color-shadow));
}

/*// ---------- //*/
/*//  Gallery   //*/
/*// ---------- //*/

.gallery {
    position: relative;
    background-image: radial-gradient(closest-side, var(--color-main), var(--color-third));
    height: unset;
}

/* .gallery::after {
    content: '';
    position: absolute;
    top: -150px;
    width: 100%;
    height: calc(100% + 150px);
    background-image: url("../img/galleryBG.webp");
} */

.gallery .container {
    padding: calc(var(--nav-height)*0.5);
}

.gallery h1 {
    color: var(--color-bright);
}

.pictures {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
}

.pictures-grid {
    overflow: hidden;
    padding-inline: 15px;
}

.pictures-grid.f50 {
    flex: 0 0 50%;
    max-width: 50%;
}

.pictures-grid.f25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.pictures-grid>.pictures {
    margin-inline: -15px;
}

.picture {
    position: relative;
    margin-top: 30px;
    border: 2px solid var(--color-main);
    box-shadow: inset 0 0 0 4px var(--color-second), inset 0 0 0 6px var(--color-main);
    overflow: hidden;
}

.picture img {
    position: relative;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    z-index: -1;
}

/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */

/* Gallery */

.gallery-wrapper {
    margin-inline: auto;
    display: grid;
    grid-template-areas:
        "img-1 img-1 img-2"
        "img-3 img-4 img-2"
        "img-3 img-5 img-5"
        "img-6 img-7 img-8";
    aspect-ratio: 3 / 4;
    gap: 1rem;
}

.gallery-img {
    position: relative;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: box-shadow 0.3s ease-in-out;
}

.gallery-img:hover {
    box-shadow: 0 0 10px 1px var(--color-shadow);
}

.gallery-img img {
    width: auto;
    height: 100%;
    max-height: 100%;
    opacity: 0.8;
    transition: all 0.2s;
    cursor: zoom-in;
}

.gallery-img:hover img {
    scale: 1.1;
    opacity: 1;
}

/* .mfp-bottom-bar, */
.picture-overlay {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: -100%;
    width: fit-content;
    max-width: 100%;
    padding: 0.5rem;
    padding-inline: 1rem;
    color: var(--color-golden);
    z-index: 1;
    transition: all 0.25s ease-in-out;
    filter: drop-shadow(0 0 5px var(--color-shadow));
}

.mfp-bottom-bar::before,
.mfp-bottom-bar::after,
.picture-overlay::before,
.picture-overlay::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: -1rem;
    width: calc(100% + 2rem);
    height: calc(100% + 1rem);
    background-color: var(--color-second);
    transform: skew(-30deg) rotate(2deg);
    z-index: -1;
}

.mfp-bottom-bar::before,
.mfp-bottom-bar::after {
    transform: skew(-30deg) rotate(0.25deg);
}

.mfp-bottom-bar::after,
.picture-overlay::after {
    left: 0;
    transform: skew(-25deg) rotate(-2deg);
    background-color: var(--color-golden);
    z-index: -2;
}

.picture-overlay .title {
    color: var(--color-bright);
    border-bottom: 1px solid var(--color-golden-light);
    margin-bottom: 0.25rem;
}

.gallery-img:hover .picture-overlay {
    left: 0;
    opacity: 1;
}

.mfp-counter {
    padding-inline: 1rem;
    background-color: var(--color-second);
    z-index: 1;
}

.img-1 {
    grid-area: img-1;
    aspect-ratio: 2 / 1;
}

.img-1 img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: unset;
}

.img-2 {
    grid-area: img-2;
    aspect-ratio: 1 / 2;
}

.img-3 {
    grid-area: img-3;
    aspect-ratio: 1 / 2;
}

.img-5 {
    grid-area: img-5;
    aspect-ratio: 2 / 1;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    backdrop-filter: blur(5px);
    background: #0b0b0b50;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    --webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
    z-index: 1;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
    padding-left: 0.25rem;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/*// ---------- //*/
/*//   Footer   //*/
/*// ---------- //*/

footer {
    --footLinks-height: 46px;
    position: relative;
    color: var(--color-bright);
    background-color: black;
    background-image: linear-gradient(to bottom, var(--color-dark), black);
    background-position-y: -10rem;
    background-repeat: no-repeat;
    min-height: 50vh !important;
    /* overflow-x: hidden; */
    z-index: 10;
}

.foot-links,
.foot-links .container,
.foot-links-right,
.foot-links-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--footLinks-height);
}

.foot-links {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    /* background-color: var(--color-main); */
    box-shadow: 0 2px 0 var(--color-third);
    z-index: 10;
}

.foot-links-shorter,
.foot-link {
    display: grid;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 32px;
    width: 32px;
    margin-right: 1rem;
    color: var(--color-bright);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.foot-links-shorter {
    display: none;
    margin: 0;
    background-color: transparent;
    border: unset;
}

.foot-links-right.openned {
    position: absolute;
    bottom: var(--footLinks-height);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: unset;
    padding: 0.5rem;
    margin-right: 0.5rem;
    background-color: var(--color-second);
    box-shadow: 0 0 10px var(--color-shadow);
}

.foot-links-right.openned .foot-link {
    display: grid;
    margin: 0;
}

.foot-link:hover {
    opacity: 1;
}

.foot-link::before,
.foot-links-shorter::before {
    font-size: 24px;
}

.foot-links-right {
    justify-content: right;
}

.foot-links-left {
    justify-content: left;
    width: fit-content;
}

.daftar-btn {
    position: relative;
    display: grid;
    justify-items: center;
    align-items: center;
    top: 50%;
    width: 90px;
    height: 100px;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    background-color: var(--color-third);
    color: var(--color-bright);
    text-decoration: none;
}

footer .container:nth-child(2) {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    padding-top: calc(var(--footLinks-height) + 2rem);
    padding-bottom: 1rem;
    gap: 1rem;
    z-index: 0;
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.foot-logo img {
    height: 64px;
}

.foot-logo p {

    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
}

.foot-about {
    display: grid;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: 2.5rem;
}

.info {
    display: grid;
    justify-items: center;
    justify-content: center;
    grid-template-columns: 30% 30% 30%;
    gap: 1.5rem;
    width: 100%;
    padding-bottom: 2.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
    color: var(--color-bright);
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 2px solid var(--color-bright);
}

.info-links a {
    color: var(--color-bright);
    text-decoration: none;
    transition: color 0.5s ease;
}

.info-links a:hover {
    color: var(--color-main);
}

.info-item .fas {
    font-size: 32px;
}

.copyright {
    text-align: center;
}

.sponsorship {
    margin-top: 2rem;
    padding-top: 1rem;
}

.sponsor-wrapper {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 1rem;
    padding-top: 0;
    width: 100%;
}

.sponsor {
    padding: 1rem;
    opacity: 0.5;
    filter: grayscale(0.8);
    transition: all 0.8s ease;
}

.sponsor:hover {
    opacity: 1;
    filter: grayscale(0);
    scale: 1.2;
    transition: all 0.3s ease;
}

.sponsor img {
    width: 100%;
}

.music-wrapper {
    width: 100%;
    padding: 0.5rem;
    padding-top: 1rem;
    margin-top: 2rem;
}

.music-wrapper iframe {
    aspect-ratio: 16/9;
    width: 100%;
    box-shadow: 10px 10px 0 var(--color-shadow), -5px -5px 0 var(--color-golden);
}

/*// ---------- //*/
/*//    Misc    //*/
/*// ---------- //*/

.clock {
    background: #637d8a;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 .25 rem #aaa;
    flex-direction: column;
    animation: clock 5s ease-in-out infinite;
}

.cup {
    background: #aaa;
    height: 30%;
    width: 30%;
    border-radius: 50% 50% 0 0/ 100% 100% 0 0;
    overflow: hidden;
}

.top {
    transform: rotate(180deg);
}

.sand {
    background: #2b1f1f;
    height: 150%;
    width: 150%;
    transform-origin: 0% 0%;
    animation: sand 5s linear infinite -2.5s;
}

.delayed {
    animation-delay: 0s;
}

@keyframes clock {
    0% {
        transform: rotate(0deg);
    }

    25%,
    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes sand {

    0%,
    100% {
        border-radius: 5%;
        transform: translate(35%, 20%) rotate(45deg);
    }

    15% {
        border-radius: 40%;
        transform: translate(0%, 35%);
        rotate: (-65deg) scale(1.5, 1.5);
    }

    25% {
        border-radius: 20%;
        transform: translate(-15%, 35%) rotate(-90deg) scale(1.2, 1.2);
    }

    50% {
        border-radius: 5%;
        transform: translate(0%, 0%) rotate(-90deg) scale(1.1, 1.1);
    }

    50.01%,
    64.99% {
        opacity: 0;
    }

    65% {
        border-radius: 35%;
        transform: translate(20%, 50%) rotate(30deg);
        opacity: 1;
    }

    75% {
        border-radius: 10%;
        transform: translate(35%, 40%) rotate(45deg);
    }
}

.popUp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    backdrop-filter: blur(2px);
    overflow-y: scroll;
}

.popUp.openned {
    display: block;
}

.popUp .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-inline: 1rem;
    /* overflow-y: scroll; */
    width: min(100vw - 15px, 480px + 2rem);
}

.popUp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    opacity: 0.5;
}

.popUp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    width: 100%;
    padding: 1.5rem;
    padding-inline: 2rem;
    margin: auto;
    border-radius: 0.5rem;
    background-image: linear-gradient(to bottom, var(--color-main), var(--color-third));
    box-shadow: 0 0 100px var(--color-shadow);
    pointer-events: fill;
}

.popUp-wrapper h1,
.popUp-wrapper p {
    pointer-events: none;
}

.popUp h1 {
    color: var(--color-golden);
    text-shadow: 0 5px 5px var(--color-shadow);
    margin-bottom: 1rem;
}

.popUp p {
    color: var(--color-bright);
    /* text-align: center; */
}

.popUp ol {
    list-style: decimal;
    color: var(--color-bright);
    text-align: start;
    margin-left: 1.25rem;
}

.popUp-btn-wrapper {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 1rem;
}

.popUp-btn {
    background-color: var(--color-golden);
    padding: 0.5rem;
    padding-inline: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--color-second);
    transition: all 0.3s ease-out;
}

.popUp-btn:hover {
    color: var(--color-golden);
    background-color: var(--color-third);
    box-shadow: 0 0 10px var(--color-golden);
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-golden-light);
    width: 32px;
    height: 32px;
    padding: 0.5rem;
    border: 2px solid var(--color-golden);
    border-radius: 1rem;
    background-color: var(--color-third);
    translate: 50% -50%;
    pointer-events: all;
    cursor: pointer;
}

/* ------------ */
/* Running Text */
/* ------------ */

.runningText {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
    width: 100%;
    padding: 0.25rem;
    padding-inline: 0;
    padding-top: 0.75rem;
    border: 3px solid var(--color-golden);
    border-inline: unset;
    color: var(--color-golden-light);
    background-color: var(--color-main);
    transition: all 0.3s ease-in;
    z-index: 999;
}

.navbar.sticky~.runningText {
    top: calc(var(--nav-height) - 3px);
}

.runningText a {
    color: var(--color-navbar);
    text-shadow: 0 0 5px var(--color-dark);
}

.runningText-wrapper {
    width: fit-content;
    display: flex;
    gap: 1rem;
}

.hyperLinks {
    color: var(--color-second);
    text-decoration: none;
    transition: all 0.5s ease;
    padding-inline: 0.25rem;
    border-radius: 10px;
}

.hyperLinks:hover {
    color: var(--color-bright);
    background-color: var(--color-main);
}

.swiper-container {
    --n: 1;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    width: 100%;
    width: calc(var(--n)*100%);
    height: 100%;
    transform: translate(calc(var(--i, 0)/var(--n)*-100%));
}

.head-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 15;
}

.head-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    min-width: 840px;
    height: 100px;
    filter: drop-shadow(0 0 5px var(--color-shadow));
}

.head-wave .shape-fill {
    fill: #d9b488;
}

.go-down-btn {
    position: fixed;
    right: 20px;
    top: 20%;
    padding: 3rem;
    background-color: blue;
    z-index: 99999;
}

.disabled {
    pointer-events: none;
    background-color: gray;
}

/* /////////////////////// */
/* /// Mobile Supports /// */
/* /////////////////////// */

@media (max-width: 900px) {
    .navbar.sticky .nav-logo::before {
        width: calc(840px/3 + 1.2rem);
    }
}

@media (max-width: 768px) {
    .sso-theme {
        margin-inline: 2rem;
    }

    .navbar.sticky .nav-logo img,
    .nav-logo.active img {
        margin-top: 0;
        height: calc(var(--nav-height) - 1.5rem);
    }

    .navbar.sticky .nav-logo::after,
    .navbar.sticky .nav-logo::before {
        width: calc(840px/3 + 1.5rem);
    }

    .nav-link {
        translate: 100vw 0;
    }

    .nav-links {
        width: 0;
        background-image: linear-gradient(to bottom, var(--color-dark), rgba(228, 35, 35, 0.5));
        background-repeat: no-repeat;
        opacity: 0;
        pointer-events: none;
    }

    .nav-link:focus,
    .nav-link:hover,
    .nav-link.active {
        --color-nav_link: var(--color-navbar);
        color: var(--color-navbar);
    }

    .nav-login {
        position: absolute;
        bottom: -5rem;
        left: 2rem;
        width: calc(100% - 4rem);
        color: var(--color-main);
        background-color: var(--color-golden);
        margin-left: 0;
    }

    .nav-links.openned .nav-login {
        animation: nav-loginMobileOpen 0.5s 0s ease-out forwards;
    }

    .nav-burger {
        display: flex;
    }

    header h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    header h3 {
        font-size: 0.8rem;
    }

    .sso-theme p {
        font-size: 1rem;
    }

    .secTittle {
        font-size: 2rem;
    }

    .about .container {
        display: block;
    }

    .about-item-top {
        position: static;
    }

    .about-item-wrapper {
        padding-top: 0;
    }

    .info {
        grid-template-columns: unset;
        gap: 2.5rem;
        width: max(90% - 15px, 270px);
    }

    .timeline {
        --timeline-botHeight: 100px;
    }

    .timeline-container {
        gap: 0.5rem;
    }

    .timelineItem-tittle {
        font-size: 2rem;
    }

    .timelineItem-date {
        font-size: 1rem;
    }

    .swiper-pagination-bullet {
        width: 32px;
        font-size: 0.75rem;
    }

    .pictures-grid {
        padding-inline: 10px;
    }

    .picture {
        margin-top: 20px;
    }

    .gallery .container {
        padding: calc(var(--nav-height)*0.5);
        padding-inline: 0;
    }

    .gallery-wrapper {
        gap: 0.25rem;
    }

    .sponsor-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .sponsor {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--color-shadow));
        transition-duration: 0.5s;
    }
}

@media (max-width: 620px) {
    .download-btn {
        flex-direction: row;
        text-align: center;
    }

    .btn-link {
        width: 60%;
    }

    .timeline {
        height: unset;
        min-height: 100vh;
    }

    .js .timeline__event-title {
        font-size: 2rem;
    }

    .pictures-grid {
        padding-inline: 7.5px;
    }

    .pictures-grid.f50 {
        flex: unset;
        max-width: unset;
    }

    .pictures-grid>.pictures>.pictures-grid.f50 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .pictures-grid.f25 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .picture {
        margin-top: 15px;
    }

    .foot-link {
        display: none;
        opacity: 0.8;
    }

    .foot-logo img {
        height: 32px;
    }

    .foot-logo p {
        font-size: 2.5rem;
    }

    .foot-links-shorter {
        display: block;
        opacity: 0.8;
    }

    .daftar-btn {
        top: 0;
        height: 32px;
        border-radius: 15px;
    }

    .sponsor-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .btn-link {
        width: 100%;
    }

    .timeline>img {
        bottom: -10%;
        width: 130%;
    }

    .sponsor-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 375px) {
    .nav-logo {
        font-size: 1.5rem;
    }

    .navbar.sticky .nav-logo::after,
    .navbar.sticky .nav-logo::before {
        width: calc(840px/3 - 0.2rem);
    }

    header h1 {
        font-size: 2rem;
        line-height: 2rem;
    }

    header h3 {
        letter-spacing: 0.8rem;
    }

    .sso-theme p {
        font-size: 0.8rem;
    }

    .aboutNav {
        margin-inline: 0;
    }

    .daftar-btn-1 {
        width: 100%;
    }

    .aboutNav-link {
        width: 48%;
    }

    .aboutNav {
        flex-wrap: wrap;
    }

    .timeline .container {
        padding-left: 0;
    }

    .js .timeline__event-title {
        font-size: 1.8rem;
    }

    .timeline>img {
        bottom: -5%;
        width: 150%;
    }

    .pictures-grid>.pictures>.pictures-grid.f50 {
        flex: unset;
        max-width: unset;
    }

    .pictures-grid.f25 {
        flex: unset;
        max-width: unset;
    }

    .sponsor-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.dark-svg {
    filter: invert(100%);
}

.reversed-head-wave {
    transform: scaleY(-1) translateY(-20px);
    /* Flips upside down and shifts it up in the flipped context (which is visually down) */
    display: block;
    overflow: hidden;
    /* Ensures no overflow due to transformation */
    margin-top: 20px;
    /* Additional space on top if needed */
}

.reversed-head-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    min-width: 840px;
    height: 100px;
    filter: drop-shadow(0 0 5px var(--color-shadow));
}

.reversed-head-wave .shape-fill {
    fill: var(--color-main);
}

.img.stretch {
    width: 100%;
    height: 100%;
}


/* Styles for the binary rain effect text */
.falling-binary {
    position: absolute;
    top: 0;
    left: 0;
    font-family: monospace;
    font-size: 14px;
    color: green;
    animation: fall 5s linear infinite;
}

/* Animation keyframes for falling effect */
@keyframes fall {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100vh);
    }
}