@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* Loader */
.loader-body{
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;

    text-align: center;
    align-content: center;

    transition: all 1s;
}



/* texts */

p{
    font-family: var(--bat-font-family);
    font-weight: 400;
    margin: 0px !important;
}
h1{
    font-family: var(--bat-font-family);
    font-weight: 600;
}
h2{
    font-family: var(--bat-font-family);
    font-weight: 600;
}
h3{
    font-family: var(--bat-font-family);
    font-weight: 600;
}
h4{
    font-family: var(--bat-font-family);
    font-weight: 600;
}
h5{
    font-family: var(--bat-font-family);
    font-weight: 600;
}

.tix-description{
    font-family: 'monospace', sans-serif;
    font-weight: 400;
    margin: 0px !important;
    font-size: 14px;
}

.text-dark{
    color: var(--bat-text-primary);
}


.primary-blue{
    color: var(--bat-blue) !important;
}



/* icons */
.icon-lg{
    font-size: 6rem;
}



/* Links */
a.primary-blue{
    color: var(--bat-blue) !important;
}

.nav-link-light{
    color: #ffffff !important;
}

/* backgrounds */
.primary-blue-bg{
    background-color: var(--bat-blue);
}

.dark-blue-bg{
    background-color: var(--bat-black);
}

/* buttons */
.btn-primary-blue{
    background-color: var(--bat-blue);
    color: white;
}
.btn-primary-blue:hover{
    background-color: var(--bat-blue-dark);
    color: white;
}
.btn-primary-blue:focus{
    background-color: var(--bat-blue-dark);
    color: white;
}
.btn-primary-blue:active{
    background-color: var(--bat-blue-dark);
    color: white;
}

.btn-primary-blue:disabled{
    background-color: var(--bat-blue-dark);
    color: white;
}


/* cards */
.card{
    border-radius: var(--bat-radius-lg);
    overflow: hidden;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .c-slide{
        height: 400px;
    }

    .card{
        width: 70vw !important;
    }
}
