@font-face {
    font-family: 'Poetsen One';
    src: url('../font/PoetsenOne-Regular.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: sans-serif;

    /*/// Global Variabel ///*/
    --nav-height: 3rem;
    /*/ Colors /*/
    --color-main: #e42324;
    --color-second: #c3191c;
    --color-third: #8b1b1c;
    --color-third-25: #8b1b1d40;
    --color-golden: rgba(233, 169, 58, 1);
    --color-golden-light: rgba(250, 242, 220, 1);
    --color-oldPepper: rgb(247 230 186);
    --color-oldPepper-2: rgb(252, 239, 220);
    --color-bright: #e5e2e2;
    --color-dark: #691213;
    --color-shadow-bright: #c76061;
    --color-shadow: rgba(30, 0, 0, 0.75);
    
    /*// 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;
}

.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;
}

/*// ---------- //*/
/*// 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-golden);
    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-golden);
    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-golden);
}

.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;
}

.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;
    left: 2rem;
    bottom: 2rem;
    height: 64px;
    width: 64px;
    border-radius: 100%;
    background-color: blue;
    z-index: 90;
}

.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.8);
    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);
}

.head-bot {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.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-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);
}

.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;
    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;
}

.social::before,
.science::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";
}

.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  //*/
/*// ---------- //*/

.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));
}

.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);
}

.timeline .section-info {
    padding-top: 1.5rem;
    width: min(100vw - 15px, 920px + 2rem);
    padding-inline: 1rem;
    margin-inline: auto;
}

.timeline .container {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    min-height: 80vh;
    padding-bottom: calc(var(--nav-height)*0.5);
}

.timeline h1 {
    color: var(--color-bright);
}

.timeline-container {
    display: flex;
    gap: 1rem;
    height: 100%;
    overflow: hidden;
}

.timeline-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1rem;
    user-select: none;
}

.timelineItem-tittle {
    display: flex;
    align-items: center;
    color: var(--color-bright);
    font-size: 3rem;
    min-height: 20%;
}

.timelineItem-date {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-main);
    font-weight: 800;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.5rem;
    border-radius: 5px;
    min-height: 20%;
    background-color: var(--color-third);
}

.timelineItem-info {
    text-align: justify;
    padding: 2rem;
    padding-inline: 1rem;
    border-radius: 5px;
    width: 100%;
    background-color: rgba(229, 226, 226, 0.25);
}

.timeline-btns {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    padding-inline: 0;
    overflow: hidden;
    z-index: 15;
}

.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);
}

.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: var(--testimoni-botHeight);
    height: fit-content;
    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: 0.5rem;
    height: auto;
    border-radius: 0 2rem;
    border: 3px solid #be8c25;
    overflow: hidden;
}

.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: 1.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: -2px;
    left: 0;
    width: 100%;
    box-shadow: 0 -50px 0 var(--color-oldPepper-2);
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.testimoni-drop svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    min-width: 840px;
    height: calc(var(--testimoni-botHeight)*0.8);
    filter: drop-shadow(0 0 5px var(--color-shadow));
}

/*// ---------- //*/
/*//  Gallery   //*/
/*// ---------- //*/

.gallery {
    position: relative;
    background-color: #696969;
    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{
    background-color: var(--color-secondary);
    padding-bottom: 2rem;
}

.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;
}

.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;
}

.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));
}

.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;
}

.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;
}

.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; }
  
  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px; }
  
  .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 5px 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;
}

.foot-link:hover {
    opacity: 1;
}

.foot-link::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;
}

/*// ---------- //*/
/*//    Misc    //*/
/*// ---------- //*/

.spinner {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    color: #e9a93a;
    background: linear-gradient(currentColor 0 0) center/100% 7px,
           linear-gradient(currentColor 0 0) center/7px 100%,
           radial-gradient(farthest-side,#0000 calc(100% - 10.6px),currentColor calc(100% - 8.8px)),
           radial-gradient(circle 10.6px,currentColor 94%,#0000 0);
    background-repeat: no-repeat;
    border: 5px solid #604617;
    animation: spinner-mu2ebf 1.2s infinite linear;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
 }
 
 .spinner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    transform: rotate(45deg);
 }
 
 @keyframes spinner-mu2ebf {
    to {
       transform: rotate(.5turn);
    }
 }

.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: var(--color-oldPepper-2);
}

.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-golden);
        color: var(--color-golden);
    }

    .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;
    }
}

@media (max-width: 620px) {
    .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;
    }

    .foot-logo img {
        height: 32px;
    }

    .foot-logo p {
        font-size: 2.5rem;
    }

    .foot-links-shorter {
        display: block;
    }

    .daftar-btn {
        top: 0;
        height: 32px;
        border-radius: 15px;
    }
}

@media (max-width: 520px) {
    .timeline>img {
        bottom: -10%;
    }
}

@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;
    }

    .download-btn {
        flex-direction: column;
    }

    .aboutNav {
        margin-inline: 0;
    }

    .aboutNav-link {
        width: 48%;
    }

    .aboutNav {
        flex-wrap: wrap;
    }

    .timeline .container {
        padding-left: 0;
    }

    .timeline>img {
        bottom: -5%;
    }

    .pictures-grid>.pictures>.pictures-grid.f50 {
        flex: unset;
        max-width: unset;
    }
    
    .pictures-grid.f25 {
        flex: unset;
        max-width: unset;
    }
}