@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    accent-color: #00C5D1;
}



.cookie-bar {
    z-index: 500;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #00C5D1;
    color: #000;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 100;
    transition: .8s;
    animation: slideIn .8s;
    animation-delay: .8s;
}

.cookie-bar .mobile {
    display: none;
}

@media (max-width: 767px) {
    .cookie-bar .mobile {
        display: inline-block;
    }
}

.cookie-bar .message {
    white-space: nowrap;
    text-shadow: 0 1px 0 darken(red, 10%);
}

@media (max-width: 767px) {
    .cookie-bar .message {
        display: none;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

.close-cb {
    border: none;
    color: white;
    background: darken(red, 20%);
    position: absolute;
    display: inline-block;
    right: 10px;
    top: 0;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, .2);
    line-height: 30px;
    height: 30px;
    width: 30px;
    font-size: 16px;
    font-weight: bold;
}

.close-cb:hover {
    background: darken(red, 10%);
}

.close-cb .checkbox-cb {
    display: none;
}

.close-cb .checkbox-cb:checked+.cookie-bar {
    transform: translateY(-50px);
}
a {
    color: #fff;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.logo {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

::selection {
    background: #80ccf09c;
}

.marquee {
    height: 25px;
    width: 1000%;
    overflow: hidden;
    position: relative;
}

.marquee div {
    display: block;
    width: 500%;
    height: 30px;

    position: absolute;
    overflow: hidden;

    animation: marquee 45s linear infinite 1s;
}

.marquee span {
    float: left;
    width: 50%;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}

/* Scrollbar */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
    cursor: pointer;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    scroll-behavior: smooth;
}


.main-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 3;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,
            0,
            0,
            0.7);
    z-index: 2;
}


#sec-2 {
    height: 111vh;
}

.card {
    transform-style: preserve-3d
}

.card-inner {
    transform: translateZ(40px)
}

#main-bg {
    height: 100vh;
    width: 100%;
}

#tnc ul {
    list-style: disc;
}

/* Modal */

#modal-id {
    font-family: 'Montserrat', sans-serif;
    z-index: 500;
}

#modal-body {
    max-height: 50vh !important;
}

#modal-popup {
    gap: 2.5rem;
}

#overlay {
    background: #000;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    z-index: 499;
    opacity: 50%;
}

/* Default CSS for non-phone screens */
.flex-container {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping by default */
}

/* Media query for phone screens */
@media (max-width: 767px) {
    .flex-container {
        flex-wrap: wrap;
        /* Allow wrapping on phone screens */
    }
}

.hide_msg {
    display: none;
}