body {

    margin: 0px;

    font-family: "Roboto", sans-serif;
}

html {
    overflow-x: hidden;
}


::-webkit-scrollbar {

    width: 10px;

}



::-webkit-scrollbar-thumb {

    background: #2f2d39;

    border-radius: 0px;

}


[data-aos=fade-right] {
    transform: translate3d(-10px, 0, 0) !important;
}

[data-aos=fade-left] {
    transform: translate3d(10px, 0, 0);
}

/* Logo Section */



main.logo-section {

    background: #fff;

    height: 80px;

    display: grid;

    align-items: center;

}



div#carouselExampleIndicators {

    height: 100%;

}



.carousel-inner {}



.carousel-item {

    height: 100%;

}



.banner-section .carousel-caption {
    z-index: 9;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    bottom: 0;
}


.carousel-caption .container {
    z-index: 9;
    left: 0;
    right: 0;
    display: grid;
    justify-content: revert;
    width: 100%;
    align-content: space-between;
    height: 100%;
}

/* Close Logo Section */



/* Menu Section */



main.menu-section header.sticky-top {

    background: #003c80;

}



/* Close Menu Section */



.hdr-1 {

    padding: 10px 0;

    background: #fb420e;

}



.hdr-1 h6 {

    margin-bottom: 0;

    color: #fff;

}







.banner-section .carousel-control-next,
.banner-section .carousel-control-prev {

    width: auto;

    height: fit-content;

    top: 50%;

}

.banner-section .carousel-control-prev {

    left: 20px;

}

.banner-section .carousel-control-next {

    right: 20px;

}









/* Banner Section */

.banner-section .overlay {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 1;

    transition: opacity 0.3s ease;

    z-index: 9;

}




.carousel-control-next,

.carousel-control-prev {

    z-index: 9;

}



.carousel-indicators [data-bs-target] {

    width: 10px;

    height: 10px;

    border-radius: 20px;

    border: 0;

}





.txt-1 {
    background: rgb(0 0 0 / 40%);
    padding: 10px 10px;
    top: 100px;
    position: relative;
    width: fit-content;
}

.txt-2 {
    background: rgb(0 0 0 / 40%);
    padding: 10px 10px;
    position: relative;
    bottom: 100px;
    width: fit-content;
}


h1 {

    font-size: 38px;

    margin: 0;

    font-family: "Orbitron", sans-serif;

    color: #fff;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: 1px;
}

h2 {

    font-size: 38px;
    margin: 0;
    font-family: "Orbitron", sans-serif;
    color: #fff;

    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}





/* Media Screens */



@media (max-width: 576px) {
body {
    background: #000;
}

    .logo-section ul {
        padding-top: 10px !important;
    }

    .toggle-button {

        display: block;

    }

    .banner-section {
        /*   height: calc(100vh - 80px); */
        background: #000;
    }

    .header .item-left {
        flex: 0 0 100% !important;
        padding-left: 0;
    }

    .header .item-right {
        flex: 0 0 100% !important;
        justify-content: center !important;
    }

    .logo {
        text-align: center;
    }

    .logo-section ul {
        text-align: center;
    }


    main.logo-section {
        height: auto;
        padding: 10px 0;
    }

    .container {

        max-width: 90%;

    }

    .banner-section .carousel-caption {
        z-index: 9;
        left: 0;
        right: 0;
        width: 100%;
        position: relative;
        background: #000000;
        bottom: 0;
        padding: 20px 0;
    }

    .txt-1 {
        background: #000000;
        padding: 0px 10px;
        top: 0 !important;
    }

    .txt-2 {
        background: #000000;
        padding: 0px 10px;
        bottom: 0px !important;
        margin-top: 10px;
    }


    .banner-section .carousel-control-next,
    .banner-section .carousel-control-prev {
        top: 35%;
    }


}







@media (max-width: 767.9px) {

    img.img-fluid.logo-image {

        width: 125px;

        float: left;

    }

    .txt-1 {
        top: 30px;
    }

    .txt-2 {
        bottom: 10px;
    }

    h1 {

        font-size: 25px;

    }



    h2 {

        font-size: 25px;

    }





}

@media (min-width: 768px) and (max-width: 991.9px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 30px;
    }

    .txt-1 {
        top: 30px;
    }

    .txt-2 {
        bottom: 10px;
    }

}

/* Reveal sections */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
    will-change: transform, opacity;
}

/* When in view */
.reveal.active {
    opacity: 1;
    transform: none;
}

/* Specific Animations */
.fade-in {
    transform: translateY(40px);
}

.slide-left {
    transform: translateX(-160px);
}

.zoom-in {
    transform: scale(0.8);
}

.flip-up {
    transform: rotateX(90deg);
    transform-origin: bottom;
}

.slide-right {
    transform: translateX(160px);
}

.flip-down {
    transform: rotateX(-90deg);
    transform-origin: top;
}

.fade-up {
    transform: translateY(40px);
    opacity: 0;
}

/* Activated states (reuse .active for all) */
.reveal.slide-right.active,
.reveal.flip-down.active,
.reveal.fade-up.active {
    transform: none;
    opacity: 1;
}

/* Activated states */
.reveal.fade-in.active,
.reveal.slide-left.active,
.reveal.zoom-in.active,
.reveal.flip-up.active {
    transform: none;
}




/* Close Media Screens */