*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.wrapper{
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1500px !important;
    margin: 0 auto !important;
}

html, 
body 
{
    height: auto; 
    background-color: #000;
}
body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
}
.horizontle_panel_section ,
.block {
    height: 100vh;
}
.h1, .h2, .h3, .p, .a, .span, .ul, .li, .btn, .btn2{
    font-family: 'Space Grotesk' , 'Poppins';
    color:#fff;
    font-weight: 800;
    line-height: normal;
    list-style: none;
    text-decoration: none;
}
.p, .a, .ul, .li, .btn, .btn2{
    font-size: 25px !important;
    font-weight: 400 !important; 
}
.h1{
    font-size: 80px;
}
.h2{
    font-size: 56px;
}
.navbar-nav .active,
.nav-link:hover,
.a{
    color: #EECA83 !important;
}
.nav-link:hover,
.a:hover{
    text-decoration: underline;
}
.navbar-nav .nav-link{
    color: #fff;
}
.span{
    font-size: 30px !important;
    color: #51B5DC ;
}

.btn{
    border: 1px solid #EECA83;
    padding: 10px 40px;
    background-color: transparent;
    border-radius: 12px;
    font-size: 16px;
    color: #EECA83 !important;
}
.btn:hover{
    border: 1px solid #EECA83;
    background-color: #EECA83;
    color: #fff !important;
}

/* header */

#header .header_container {
    position: fixed;
    top: 30px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 10;
    max-width: 1500px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0);
}
#header .navbar-toggler {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    flex-shrink: 0;
}
#header .navbar-toggler:focus {
    box-shadow: none;
}
.vertical_panel_container .card{
    width: 100%;
    background-color: #000;
    border-radius: 20px;
    overflow: hidden;
}
.dark{
    background-color: #000 !important;
}


.video_section{
    height: 100vh;
}
.vertical_panel_container {
    width: 100% !important;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
}

.vertical_panel {
    width: 90vw;
    flex: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    padding: 10px;
    background-color: transparent;
}

.vertical_panel_container .card .h3{
    color: #fff !important;
}
.vertical_panel_container .image_container{
    height: 500px;
    width: 100%;
}
#header .image_container{
    width: 6% !important;
}
.animate_text_2,
.animate_text{
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 991.98px) {
    .vertical_panel_container {
        width: 500% !important;
    }
    .vertical_panel {
        width: 50vw;
    }
}
@media only screen and (max-width: 991.98px) {
    .vertical_panel_container .image_container{
        height: 350px;
    }
    #header .header_container {
        top: 20px;
    }
    .p, .a, .ul, .li, .btn, .btn2 , .animated_span{
        font-size: 16px !important;
    }
    .h1{
        font-size: 40px;
    }
    .h2{
        font-size: 30px;
    }
    #header .image_container{
        width: 20% !important;
    }
    .horizontle_panel_section ,
    .block {
        height: 100vh;
    }
    #header .navbar-nav{
        gap: 10px !important;
    }
    #header .navbar-collapse.collapse:not(.show) {
        display: block;
    }
    #header .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        background: #05101B;
        width: 260px;
        height: 100%;
        z-index: 9999;
        padding: 25px;
        transform: translateX(-260px);
        transition: 0.5s ease-in-out;
        display: block;
    }
    #header .navbar-collapse.show {
        transform: translateX(0px);
    }
    #header .nav-overlay {
        position: absolute;
        background: #0000007d;
        width: 100vw;
        height: 100vh;
        top: -10px;
        left: -10px;
        z-index: 2;
        transform: translateX(-100vw);
        transition: 0.5s ease-in-out;
        display: block;
    }
    #header .nav-overlay.active {
        transform: translateX(0);
    }
}