:root {
    --black-100: #000000;
    --black-10: #F6F6F6;
    --white-100: #C0C1BF;
    --blue-100: #00275D;
    --blue-50: #8093AE;
    --red: #7D2A3E;
    --container-padding: 1.5rem;
    --container-gutter: 1.5rem;
    --font-weight-bold: 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 400;
    --font-weight-regular: 200;
    --line-height-title: 100%;
    --line-height-text: 150%;
    --letter-spacing: 0.05rem;
    --heading-1: 3rem;
    --heading-2: 4rem;
    --heading-3: 3rem;
    --heading-5: 2.5rem;
    --text-28: 1.75rem;
    --text-24: 1.5rem;
    --text-18: 1.125rem;
    --text-16: 1rem;
    --text-14: 0.875rem;
    --text-12: 0.75rem;
    --spacing-128: 8rem;
    --spacing-80: 5rem;
    --spacing-64: 4rem;
    --spacing-40: 2.5rem;
    --spacing-28: 1.75rem;
    --spacing-24: 1.5rem;
    --spacing-18: 1.125rem;
    --spacing-16: 1rem;
    --spacing-12: 0.75rem;
    --spacing-8: 0.5rem;
    --border-radius: 6249.9375rem;
    --border-radius-24: 1.5rem;
    --border-radius-16: 1rem;
}

@font-face {
    font-family: 'SF-Bold';
    src: url('../assets/font/sf/SF-Pro-Display-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'SF-Medium';
    src: url('../assets/font/sf/SF-Pro-Display-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'SF-Regular';
    src: url('../assets/font/sf/SF-Pro-Display-Regular.woff2') format('woff2');
}


@font-face {
    font-family: 'Triplett-Bold';
    src: url('../assets/font/triplett/Triplett-Bold.otf') format('woff2');
}

@font-face {
    font-family: 'Triplett-Light';
    src: url('../assets/font/triplett/Triplett-Light.otf') format('woff2');
}

html {
    scroll-behavior: smooth;
    font-family: 'Triplett-Light', sans-serif;
    text-transform: uppercase;
}

body {
    font-family: 'Triplett-Light', sans-serif;
    color: var(--white-100) !important;
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Triplett-Bold', sans-serif; */
}



/* Colors */
.bg-blue {
    background-color: var(--blue-100);
}

.bg-white {
    background-color: var(--white-100);
}

.bg-grey {
    background-color: var(--black-10);
}

.text-blue {
    color: var(--blue-100);
}

.text-black {
    color: var(--black-100);
}

.text-black-p {
    color: var(--black-100);
    opacity: 0.8;
}

.text-white {
    color: var(--white-100);
}
.text-red{
    color: var(--red) !important;
}

.opacity-6 {
    opacity: 0.6;
}

.opacity-5 {
    opacity: 0.5;
}

/* Colors */
a {
    text-decoration: none;
    color: var(--white-100) !important;
    font-size: var(--text-16) !important;
    letter-spacing: var(--letter-spacing);
}

a:hover {
    color: inherit;
}

/* Gap */
.gap-64 {
    gap: var(--spacing-64);
}

.gap-40 {
    gap: var(--spacing-40);
}

.gap-28 {
    gap: var(--spacing-28);
}

.gap-24 {
    gap: var(--spacing-24);
}

.gap-16 {
    gap: var(--spacing-16);
}

.gap-12 {
    gap: var(--spacing-12);
}

/* Gap */
/* Padding */
.p-24 {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    padding-top: var(--container-padding);
    padding-bottom: var(--container-padding);
}

.p-40 {
    padding-right: var(--spacing-40);
    padding-left: var(--spacing-40);
    padding-top: var(--spacing-40);
    padding-bottom: var(--spacing-40);
}

.px-24 {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
    padding-top: var(--container-padding);
    padding-bottom: var(--container-padding);
}

.px-40 {
    padding-right: var(--spacing-40);
    padding-left: var(--spacing-40);
    padding-top: var(--spacing-40);
    padding-bottom: var(--spacing-40);
}

.pt-24 {
    padding-top: var(--spacing-24);
}

.pr-8 {
    padding-right: var(--spacing-8);
}

.py-16 {
    padding-top: var(--spacing-16);
    padding-bottom: var(--spacing-16);
}

.py-24 {
    padding-top: var(--spacing-24);
    padding-bottom: var(--spacing-24);
}

.py-40 {
    padding-top: var(--spacing-40);
    padding-bottom: var(--spacing-40);
}

.py-80 {
    padding-top: var(--spacing-80);
    padding-bottom: var(--spacing-80);
}

.py-128 {
    padding-top: var(--spacing-128);
    padding-bottom: var(--spacing-128);
}

.px-80 {
    padding-left: var(--spacing-80);
    padding-right: var(--spacing-80);
}

.px-128 {
    padding-left: var(--spacing-128);
    padding-right: var(--spacing-128);
}

/* Padding */
/* Margin */
.mt-24 {
    margin-top: var(--spacing-24);
}

.my-40 {
    margin-top: var(--spacing-40);
    margin-bottom: var(--spacing-40);
}

/* Margin */
.container {
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
}

/* Font */
.font-bold {
    font-weight: var(--font-weight-bold);
}

.font-semi-bold {
    font-weight: var(--font-weight-semi-bold);
}

.font-semi-medium {
    font-weight: var(--font-weight-medium);
}

.font-regular {
    font-weight: var(--font-weight-regular);
}

h1 {
    line-height: var(--line-height-title);
    letter-spacing: var(--letter-spacing);
    font-size: var(--heading-1);
}

h2 {
    line-height: var(--line-height-title);
    letter-spacing: var(--letter-spacing);
    font-size: var(--heading-2);
    text-transform: uppercase;
}

h3 {
    line-height: var(--line-height-title);
    letter-spacing: var(--letter-spacing);
    font-size: 2rem;
    text-transform: uppercase;
}

h5 {
    line-height: var(--line-height-title);
    letter-spacing: var(--letter-spacing);
    font-size: var(--text-28);
}

h6 {
    line-height: var(--line-height-text);
    letter-spacing: var(--letter-spacing);
    font-size: var(--text-18);
    text-transform: uppercase;
}

p {
    line-height: var(--line-height-text);
    /* letter-spacing: var(--letter-spacing); */
    font-size: var(--text-18);
}

.text-28 {
    font-size: var(--text-28);
    letter-spacing: var(--letter-spacing);
    font-weight: var(--font-weight-regular);
}

.text-24 {
    font-size: var(--text-24);
    letter-spacing: var(--letter-spacing);
    font-weight: var(--font-weight);
}

.text-18 {
    font-size: var(--text-18);
    letter-spacing: var(--letter-spacing);
    font-weight: var(--font-weight-regular);
}

.text-20 {
    font-size: 1.25rem !important;
    letter-spacing: var(--letter-spacing);
    font-weight: var(--font-weight-regular);
}

.sf-bold {
    font-family: 'SF-Bold, sans-serif' !important;
}

.sf-medium {
    font-family: 'SF-Medium, sans-serif' !important;
}

.sf-regular {
    font-family: 'SF-Regular, sans-serif' !important;
}

.color-brown {
    color: #B2ACAB;
}

/* Font */
.border-radius-24 {
    border-radius: var(--spacing-24);
}

/* Buttons */
.btn-primary {
    background-color: #AAA097;
    color: black;
    padding: 2rem 4rem 2rem 4rem;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
}

.btn-primary:hover {
    background-color: #000;
    border: none;
    color: #AAA097;
    box-shadow: none;
    mix-blend-mode: multiply;
}

.btn-primary:focus {
    background-color: black;
    color: #AAA097;
    border: none;
    box-shadow: none;
}
.btn:focus-visible{
    box-shadow: none;
}
.btn-submit {
    background-color: #AAA097;
    color: black;
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
}

.btn-submit:hover{
    background-color: #000;
    border: none;
    color: #AAA097;
    box-shadow: none;
}

.btn-ticket-active {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7D2A3E;
    color: var(--white-100);
    height: 5rem;
    padding-right: var(--spacing-24);
    padding-left: var(--spacing-24);
    font-size: var(--text-24) !important;
}

.btn-ticket-disabled {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: grey;
    color: darkgrey;
    height: 5rem;
    padding-right: var(--spacing-24);
    padding-left: var(--spacing-24);
    font-size: var(--text-24) !important;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 1;
}



.container-fluid {
    margin: 0;
    padding: 0;
}



.bg-body{
    background-image: url('../assets/img/bg-body.webp');
    background-size: contain;
    background-repeat: repeat;
}

.bg-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.bg-body.fade-out::before {
    opacity: 0;
}

.bg-header {
    background-image: url('../assets/img/bg-header.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.bg-new-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
    background-image: url('../assets/img/new-bg/bg-header.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    animation: fadeInText 4s ease-in forwards;
}

.bg-header-phase-2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    overflow: hidden; 
    background-image: url('../assets/img/bg-header-phase-2.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; 
    animation: fadeInText 4s ease-in forwards;
}


.header-title {
    position: relative;
    top: 40%; /* or any custom value */
    transform: translateX(-25%);
}


.select2-container {
    width: 100% !important;
}

.ular {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 110%;
    height: 100%;
    opacity: .7;
    object-fit: cover;
    mix-blend-mode: color-dodge;
    animation: fadeInUlar 4s ease-in forwards;
}

.ular2 {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 110%;
    height: 100%;
    object-fit: cover;
    animation: fadeInUlar2 4s ease-in forwards;
}


.bg-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../assets/img/bg-header.webp') no-repeat center center / cover;
    overflow: hidden;
    background-repeat: no-repeat;
}

.bg-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.bg-header.fade-out::before {
    opacity: 0;
}


.item-container {
    position: absolute;
    top: 45%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0.6;
    mix-blend-mode: color-dodge;
    animation: fadeInText 4s ease-in forwards;
}

.img-footer {
    position: absolute;
    bottom: 0;
    left: 38%;
    width: 100%;
    transform: translate(-50%, -50%);
    animation: fadeInText 4s ease-in forwards;
}

.img-footer img{
    width: 25rem;
}

.img-title {
    position: absolute;
    bottom: 0;
    left: 41%;
    width: 100%;
    transform: translate(-50%, -100%);
    animation: fadeInText 4s ease-in forwards;
}

.img-title img{
    width: 30rem;
}

.text {
    margin-top: 1rem;
    width: 100%;
}

#countdown {
    display: flex;
    justify-content: center;
}

.time {
    width: 8rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 5px;
}

.time span {
    font-size: 3.6rem;
    color: #AAA097;
}

.time p {
    margin-top: -1rem;
    font-size: 1.25rem;
    color: #AAA097;
    text-transform: uppercase;
}

.modal-content{
    background-image: url('../assets/img/bg-header.webp');
    color: #AAA097;
}

.modal-header{
    border-bottom: 1px solid #AAA097;
}

.btn-close {
    background-color: #AAA097; 
    opacity: 1; 
}

.form-control{
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #AAA097;
    color: #AAA097;
}

.form-control:focus{
    background-color: rgba(255, 255, 255, 0);
        color: #AAA097;

}

.select2-container .select2-selection{
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #AAA097;
    color: #AAA097;
}

.select2-container .select2-choice {
    padding: 5px 10px;
    height: 40px;
    width: 132px; 
    font-size: 1.2em;  
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #AAA097;
}

.select2-container--default .select2-selection--single{
    padding: .25rem .5rem;
    height: 2.25rem;
    width: 100%; 
    position: relative;
    color: #AAA097;

}

.body-content{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0.6;
    animation: fadeInText 4s ease-in forwards;
}

input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; /* Removes extra margin in some browsers */
}

input[type="number"] {
    -moz-appearance: textfield; /* Removes spinner in Firefox */
}

.new-body-content{
    position: absolute;
    top: 68%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: fadeInText 4s ease-in forwards;
  }

  .footer-logos{
    margin-top: 15%;
  }

  .new-footer-logos{
    margin-top: 20%;
  }

.nav-item{
    margin: 0 2rem;
    border-bottom: 1px solid var(--white-100);
}


.bg-about {
    background-image: url('../assets/img/bg-about.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Ensures the image covers the entire area */
    height: 72vh;
}

.py-section{
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.px-section{
    padding-right: 8rem;
    padding-left: 8rem;
}

.divider{
    height: 5rem;
}


.ticket-content{
    background-color: rgba(192, 193, 191, 0.6);

}

.card-contact{
    border-top: 1px solid var(--white-100);
    border-bottom: 1px solid var(--white-100);
}

.card-body{
    height: 12.5rem;
}

.card-body a{
    word-wrap: break-word; /* Breaks words at appropriate points */
    word-break: break-word; /* Breaks words when necessary for narrow spaces */
    white-space: normal; /* Allows text to wrap to the next line */
}

.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0.01) 100%);
}

.img-logo{
    height: 2.5rem;
}

.card-tnc {
    height: 80vh;  
    overflow-y: scroll;
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
}



.tnc img {
    width: 100%; 
    height: auto; 
    display: block; 
}





@keyframes fadeInUlar {
    from {
        opacity: 0;
    }

    to {
        opacity: .5;
    }
}

@keyframes fadeInUlar2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (min-width: 375px) and (max-width: 767px) {

    body {
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden !important;
    }
    

    .bg-body{
        background-image: url('../assets/img/bg-body.webp');
        background-size: auto;
        background-repeat: repeat;
    }

    .bg-body::before {
        height: 110% !important;
    }

    .bg-header{
        min-height: 100vh !important;
        overflow-y: scroll;
    }

    .header-title {
        /* position: absolute; */
        top: 40%;
        transform: translateX(-25%);
    }
    h1{
        font-size: var(--text-24);
    }

    h2 {
        font-size: var(--text-28);
    }
    
    h3 {
        font-size: var(--text-18);
    }

    h4 {
        font-size: var(--text-18);
    }

    h5 {
        font-size: var(--text-18) !important;
    }

    h6 {
        font-size: var(--text-18);
    }

    .text-20{
        font-size: var(--text-14) !important;
    }

    .text-24{
        font-size: var(--text-16) !important;
    }

    .py-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .btn-ticket-active{
        font-size: var(--text-16) !important;
        padding: .75rem !important;
        height: auto !important;
    }

    .btn-ticket-disabled{
        font-size: var(--text-16) !important;
        padding: .75rem !important;
        height: auto !important;
    }
    
    .text-18 {
        font-size: var(--text-12) !important;
        letter-spacing: var(--letter-spacing);
        font-weight: var(--font-weight-regular);
    }

    .p-40{
        padding: var(--spacing-18);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .divider{
        height: 2rem;
    }

    .img-footer {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    .img-footer img {
        width: 80%;
    }

    .img-title {
        left: -10%;
        transform: translateX(-0%);
        width: 70%;
        top: -100%;
    }
    .img-title img {
        width: 100%;
    }

    h6{
        font-size: .8rem;
    }

    @supports (-webkit-touch-callout: none) {
        .img-footer {
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
        }

        .bg-header-phase-2 {
            top: 0;
            left: 0;
            width: 100%;
            height: 120vh; 
            overflow: hidden; 
            background-image: url('../assets/img/bg-header-phase-2-mobile-ios.png') !important;
            background-size: cover; 
            background-position: center;
            background-repeat: no-repeat; 
            animation: fadeInText 4s ease-in forwards;
        }

         .bg-new-header {
            position: absolute;
            top: -5%;
            left: 0;
            width: 100%;
            height: 100vh; 
            overflow: hidden; 
            background-image: url('../assets/img/new-bg/bg-header-mobile.png');
            background-size: cover; 
            background-position: center;
            background-repeat: no-repeat; 
            animation: fadeInText 4s ease-in forwards;
        }
    
    }

    .btn-primary {
        padding: 1rem 1.5rem 1rem 1.5rem;
        font-weight: var(--font-weight-medium);
    }

    .btn-submit {
        padding: .75rem 1.25rem .75rem 1.25rem;
    }

    .item-container {
        top: auto;
        bottom: 5%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        mix-blend-mode: color-dodge;
        /* animation: fadeInText 4s ease-in forwards; */
    }

    .ular {
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
        height: 80% !important;
    }
    .ular2 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        height: 60% !important;
    }
    
    .body-content{
        top: 72%;
        bottom: 5%;
        left: 75% !important;
        transform: translate(-50%, -75%);
        text-align: center;
        opacity: 0.6;
        width: 100%;
    }

    .new-body-content {
        position: absolute; /* Ensure the element is positioned relative to its container */
        top: 64%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center it using translation */
        text-align: center; /* Center text inside the element */
        opacity: 0.6;
        width: 100%;
    }

    .new-body-content img{
        width: 80% !important;
    }

    .time {
        width: 5rem;
    }

    .time span {
        font-size: 2rem;
    }

    .time p {
        margin-top: 0;
        font-size: .75rem;
    }

    .text {
        margin-top: 1rem;
        width: 150%;
    }

    .bg-new-header {
        position: absolute;
        top: -5%;
        left: 0;
        width: 100%;
        height: 100vh; 
        overflow: hidden; 
        background-image: url('../assets/img/new-bg/bg-header-mobile.png');
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }

    .bg-header-phase-2 {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        overflow: hidden; 
        background-image: url('../assets/img/bg-header-phase-2-mobile.png') !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }

    @supports (-webkit-touch-callout: none) {
        html, body {
            width: 100%;
            max-width: 100%;
            min-width: 100%;
            overflow-x: hidden !important;
            touch-action: manipulation; /* Stops Safari from allowing extra dragging */
        }
    
        html {
            overflow-x: hidden;
            clip-path: inset(0 0 0 0); /* Ensures no hidden overflow */
        }
    
        .bg-body {
            background-image: url('../assets/img/bg-body.webp');
            background-size: auto;
            background-repeat: repeat;
            width: 100%;
            max-width: 100%;
            min-width: 100%;
        }
    
        * {
            box-sizing: border-box; /* Prevents elements from expanding past their container */
        }
    
        [class*="container"], 
        [class*="wrapper"] {
            max-width: 100% !important; 
            overflow-x: hidden;
        }
    
        /* Only apply position: relative to elements that might overflow */
        .fix-overflow {
            position: relative;
        }
    
        /* Fix images without breaking them */
        img {
            max-width: 100%;
            height: auto;
            display: block; /* Prevents extra spacing under images */
        }
    
        .fixed-element {
            left: 0;
            right: 0;
            width: 100%;
            max-width: 100vw;
        }

        .ular2 {
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
            height: 60% !important;
        }

        .img-footer {
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
        }
        .img-footer img {
            width: 80%;
        }

        .img-title {
            left: -14%;
            transform: translateX(-0%);
            width: 80%;
            top: -130%;
        }
        .img-title img {
            width: 100%;
        }

        h6{
            font-size: .9rem;
        }

        .header-title {
            /* position: absolute; */
            top: 20%;
            transform: translateX(-25%);
        }
        
    }
    
    
    

    .navbar-brand{
        width: 60%;
    }

    .nav-item{
        margin: 0;
    }

    .navbar-nav{
        margin-top: 1rem;
    }

    .navbar-toggler{
        color: transparent;
    }

    .bg-about{
        height: 60vh;
    }

    .card-body {
        height: auto;
    }

    .img-logo{
        height: 2rem;
    }

    .navbar {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 90%, rgba(0, 0, 0, 0.01) 100%);
        padding-bottom: 2.5rem !important;
    }
}


/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 768px) and (max-width: 1023px) {

    .bg-header-phase-2 {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        overflow: hidden; 
        background-image: url('../assets/img/bg-header-phase-2-mobile.png') !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }

    h5 {
        font-size: var(--text-24);
    }

    h6 {
        font-size: var(--text-24);
    }

    h4 {
        font-size: var(--text-28);
    }

    .text-20{
        font-size: var(--text-24) !important;
    }

    .header-title {
        position: relative;
        top: 20%;
        transform: translateX(0);
    }

    .modal-dialog {
        max-width: 48rem !important;
    }

    .img-footer {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
    }

    .img-title {
        position: absolute;
        bottom: 0;
        left: 49%;
        width: 100%;
        transform: translate(-50%, -130%);
    }

    .img-title img{
        width: 60%;
    }

    .img-footer img{
        width: 60%;
    }
    .ular {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        height: 80% !important;
    }

    .ular2 {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        height: 60% !important;
    }

    .item-container {
        top: auto;
        bottom: 1%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        mix-blend-mode: color-dodge;
        /* animation: fadeInText 4s ease-in forwards; */
    }

    .logo-ouroboros {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        height: 50% !important;
    }
    
    .body-content{
        top: auto;
        bottom: 1%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
    }

    .new-body-content {
        position: absolute; /* Ensure the element is positioned relative to its container */
        top: 64%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center it using translation */
        text-align: center; /* Center text inside the element */
        opacity: 0.6;
        width: 100%;
    }

    .new-body-content img{
        width: 50% !important;
    }

    .bg-new-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        overflow: hidden; 
        background-image: url('../assets/img/new-bg/bg-header-tab.png');
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }

    .bg-header-phase-2 {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        margin-bottom: -20rem;
        overflow: hidden; 
        background-image: url('../assets/img/bg-header-phase-2-tab.png') !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }

    .nav-item{
        margin: 0;
    }

    .navbar-nav{
        margin-top: 1rem;
    }

    .navbar-toggler{
        color: transparent;
    }


}

@media (min-width: 1024px) and (max-width: 1279px) {
    .bg-header-phase-2 {
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        margin-bottom: -20rem;
        overflow: hidden; 
        background-image: url('../assets/img/bg-header-phase-2-tab.png') !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat; 
        animation: fadeInText 4s ease-in forwards;
    }
    h5 {
        font-size: var(--text-24);
    }

    h6 {
        font-size: var(--text-24);
    }

    .header-title {
        left: 10%;
        transform: translateX(0);
    }

    .modal-dialog {
        max-width: 48rem !important;
    }

    .img-footer {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }

    .img-title {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(50%, -50%);
        width: 50%;
    }

    .ular {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        height: 80% !important;
    }
    .ular2 {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 80% !important;
    }

    .item-container {
        top: auto;
        bottom: 1%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        mix-blend-mode: color-dodge;
        /* animation: fadeInText 4s ease-in forwards; */
    }

    .logo-ouroboros {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        height: 50% !important;
    }
    
    .body-content{
        top: 75%;
        bottom: 1%;
        left: 50% !important;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
    }


}

@media (min-width: 1280px) and (max-width: 1439px) {
    h2 {
        font-size: 3.5rem;
    }

    h5 {
        font-size: var(--text-24);
    }

    .modal-dialog {
        max-width: 48rem !important;
    }

    .img-footer {
        position: absolute;
        bottom: 0;
        left: 35%;
        width: 100%;
        transform: translate(-50%, -50%);
        animation: fadeInText 4s ease-in forwards;
    }

    .item-container {
        position: absolute;
        top: 45%;
        left: 70%;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        mix-blend-mode: color-dodge;
        /* animation: fadeInText 4s ease-in forwards; */
    }

    #countdown {
        display: flex;
        justify-content: center;
    }

    .time {
        width: 6rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background: transparent;
        border-radius: 5px;
    }

    .time span {
        font-size: 2.5rem;
        color: #AAA097;
    }

    .time p {
        margin-top: -.5rem;
        font-size: 1rem;
        color: #AAA097;
        text-transform: uppercase;
    }

    .body-content{
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0.6;
        animation: fadeInText 4s ease-in forwards;
    }

    .btn-primary {
        background-color: #AAA097;
        color: black;
        padding: 1rem 2rem 1rem 2rem;
        border-radius: 0;
        border: 0;
        text-transform: uppercase;
        font-weight: var(--font-weight-bold);
    }

}

@media (min-width: 1440px) {
    .container{
        max-width: 1440px !important;
    }
}

img {
    pointer-events: none;
    touch-action: none;
    -webkit-touch-callout: none;
    /* Disable callout menu on long press (Safari) */
    -webkit-user-select: none;
    /* Disable text selection (Safari) */
    user-select: none;
    /* Disable text selection (Standard) */
    -moz-user-select: none; 
    -ms-user-select: none;
}