*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
p{
    margin-bottom: 0px;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: calc(1320 * 100vw / 1920);
    padding: 0px calc(12 * 100vw / 1920);
}
a{
    text-decoration: none !important;
}
/* Header Css Start Here */

.header{
    padding: calc(18 * 100vw / 1920) 0px;
    position: relative;
    z-index: 99;
}
.header .navbar-expand-lg{
    padding: 0px;
}
.header .navbar-expand-lg .navbar-nav {
    margin-left: auto;
}
.header .navbar-light .navbar-brand{
    padding: 0px;
    margin-right: 0px;
    width: calc(180 * 100vw / 1920);
    display: inline-block;
}
.header .nav-link{
    padding: 0px !important;
}
.header .navbar-light .navbar-brand img{
    width: 100%;
}
.header ul.navbar-nav li{
    margin-right: calc(30 * 100vw / 1920);
}
.header ul.navbar-nav li:nth-last-child(1){
    margin-right: 0px;
}
.header .navbar-light .navbar-nav .nav-link{
    color: #fff;
    font-size: calc(16 * 100vw / 1920);
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .navbar-light .navbar-nav .nav-link:hover, .header .navbar-light .navbar-nav .nav-link.active{
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .navbar-light .navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    bottom: calc(-2 * 100vw / 1920);
    left: 0px;
    right: 0px;
    width: 0;
    margin: 0 auto;
    height: calc(2 * 100vw / 1920);
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header .navbar-light .navbar-nav .nav-link:hover::after, .header .navbar-light .navbar-nav .nav-link.active::after{
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* Header Css End Here */

/* Banner Css Start Here */

.comingSoonBanner{
    height: 100vh;
    margin-top: calc(-97.44 * 100vw / 1920);
    background: url(../imgs/banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comingSoonBanner::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(250 * 100vw / 1920);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.85) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.85) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0.85) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9000000', endColorstr='#00ffffff',GradientType=0 );
}
.bannerTitleTxt{
    text-align: center;
}
.bannerTitleTxt h1{
    font-size: calc(45 * 100vw / 1920);
    color: #fff;
    margin-bottom: 0px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Banner Css End Here */

/* Inner Banner Css Start Here */

.innerBannerBox{
    margin-top: calc(-97.44 * 100vw / 1920);
    background: url(../imgs/banner.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: calc(200 * 100vw / 1920) 0px calc(80 * 100vw / 1920);
}
.innerBannerBox::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #0000009c;
}
.innerTitle{
    text-align: center;
    position: relative;
    z-index: 99;
}
.innerTitle h2{
    font-size: calc(35 * 100vw / 1920);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Inner Banner Css End Here */

/*  */
.pageTxtBlock{
    padding: calc(100 * 100vw / 1920) 0px;
}
.contentTxtBox p{
    font-size: calc(18 * 100vw / 1920);
    font-weight: 400;
    color: #1E1E1E;
    margin-bottom: calc(20 * 100vw / 1920);
}
.contentTxtBox p a{
    display: inline-block;
    font-weight: 500;
    color: #2D54C1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contentTxtBox p a:hover{
    color: #102663;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contentTxtBox ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: calc(20 * 100vw / 1920);
}
.contentTxtBox ul li{
    font-size: calc(18 * 100vw / 1920);
    font-weight: 400;
    color: #1E1E1E;
    margin-bottom: calc(7 * 100vw / 1920);
    position: relative;
    padding-left: calc(20 * 100vw / 1920);
}
.contentTxtBox ul li::after{
    content: "";
    position: absolute;
    top: calc(10 * 100vw / 1920);
    left: 0px;
    width: calc(8 * 100vw / 1920);
    height: calc(8 * 100vw / 1920);
    background-color: #2D54C1;
    border-radius: 50%;
    /* transform: translate(0%, -50%); */
}
.contentTxtBox ul li a{
    display: inline-block;
    font-weight: 500;
    color: #2D54C1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contentTxtBox ul li a:hover{
    color: #102663;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contentTxtBox ul li:nth-last-child(1){
    margin-bottom: 0px;
}
.contentTxtBox h1, .contentTxtBox h2, .contentTxtBox h3, .contentTxtBox h4, .contentTxtBox h5, .contentTxtBox h6{
    font-size: calc(22 * 100vw / 1920);
    color: #1E1E1E;
    font-weight: 600;
    margin-bottom: calc(20 * 100vw / 1920);
}
.dataTable{
    margin-bottom: calc(20 * 100vw / 1920);
}
.dataTable table{
    width: 100%;
    margin-bottom: 0px;
}
.dataTable ul{
    margin-bottom: 0px;
}
.dataTable ul li{
    font-size: calc(16 * 100vw / 1920);
}
.dataTable ul li::after{
    top: calc(8 * 100vw / 1920);
}
.innerTitle p{
    font-size: calc(18 * 100vw / 1920);
    color: #fff;
    font-weight: 500;
    margin-bottom: 0px;
}

.download__btns{
    text-align: center;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.download__btns a{
    display: inline-block;
    width: 220px;
}
.download__btns a img{
    width: 100%;
}

/* Loader Css Start Here */
.loader__wrapper{
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.animation__logo{
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    transform: translate(0%, -50%);
    max-width: 200px;
}
.animation__wrapper {
    width: 200px;
    height: 200px;
    position: relative;
}

.animation__wrapper-border {
    border: 3px solid #000;
    border-top: 3px solid rgba(0,0,0,0);
    border-left: 3px solid rgba(0,0,0,0);
    border-radius: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    animation: spin-clockwise 3s infinite linear;
}

.animation__wrapper-border1 {
    border: 3px solid #000;
    border-top: 3px solid rgba(0,0,0,0);
    border-left: 3px solid rgba(0,0,0,0);
    border-radius: 100%;
    width: 80%;
    height: 80%;
    margin: 0 auto;
    position: absolute;
    top: 10%;
    left: 10%;
    animation: spin-counterclockwise 3.2s infinite linear;
}

.animation__wrapper-logo {
    margin: 0 auto;
    position: relative;
    border-radius: 100%;
    box-shadow: 0 0 10px #000;
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
    transform: translate(0%, -50%);
}
.animation__wrapper-logo img{
    width: 100%;
    height: 100%;
}

@keyframes spin-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    };
}

@keyframes spin-counterclockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    };
}
/* Loader Css End Here */


@media(max-width: 1280px){
    .header {
        padding: 20px 0px;
    }
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
        padding: 0px 12px;
    }
    .header .navbar-light .navbar-brand {
        width: 180px;
    }
    .header .navbar-light .navbar-nav .nav-link{
        font-size: 16px;
    }
    .header .navbar-light .navbar-nav .nav-link::after {
        bottom: -2px;
        height: 2px;
    }
    .header ul.navbar-nav li {
        margin-right: 20px;
    }
    .comingSoonBanner {
        height: 100vh;
        margin-top: -97.44px;
    }
    .bannerTitleTxt h1 {
        font-size: 45px;
    }
    /*  */
    .innerBannerBox{
        margin-top: -97.44px;
        padding: 150px 0px 50px;
    }
    .innerTitle h2 {
        font-size: 33px;
    }
    .innerTitle p {
        font-size: 16px;
    }
    .contentTxtBox p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .contentTxtBox h1, .contentTxtBox h2, .contentTxtBox h3, .contentTxtBox h4, .contentTxtBox h5, .contentTxtBox h6 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .contentTxtBox ul li {
        font-size: 16px;
        margin-bottom: 7px;
        padding-left: 15px;
    }
    .contentTxtBox ul li::after {
        top: 8px;
        left: 0px;
        width: 6px;
        height: 6px;
    }
}
@media(max-width: 1024px){
    .header {
        padding: 20px 0px;
    }
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 991px;
        padding: 0px 12px;
    }
    .header .navbar-light .navbar-brand {
        width: 180px;
    }
    .header .navbar-light .navbar-nav .nav-link{
        font-size: 16px;
    }
    .header .navbar-light .navbar-nav .nav-link::after {
        bottom: -2px;
        height: 2px;
    }
    .header ul.navbar-nav li {
        margin-right: 20px;
    }
    .comingSoonBanner {
        height: 100vh;
        margin-top: -97.44px;
    }
    .bannerTitleTxt h1 {
        font-size: 45px;
    }
}
@media(max-width: 991px){
    .navbar-light .navbar-toggler{
        display: none;
    }
    .collapse:not(.show) {
        display: block;
    }
    .header .navbar-light .navbar-brand {
        width: 140px;
    }
    .navbar-collapse {
        flex-basis: auto;
    }
    .header ul.navbar-nav li{
        display: inline-block;
        width: auto;
    }
    .navbar-nav {
        flex-direction: row;
        justify-content: flex-end;
    }
    .comingSoonBanner {
        margin-top: -84.67px;
    }
}
@media(max-width: 767px){
    .navbar-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .header ul.navbar-nav li {
        margin-right: 0px;
    }
    .header .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }
    .header .navbar-light .navbar-brand {
        width: 150px;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .comingSoonBanner {
        margin-top: -151.86px;
    }
    .comingSoonBanner::after {
        height: 250px;
    }
    .bannerTitleTxt h1 {
        font-size: 29px;
    }
    .innerBannerBox {
        margin-top: -151.86px;
        padding: 210px 0px 50px;
    }
    .innerTitle h2 {
        font-size: 26px;
    }
    .innerTitle p {
        font-size: 13px;
    }
    .contentTxtBox p a {
        word-break: break-word;
    }
    .bannerTitleTxt{
        padding: 0px 15px;
    }
    .bannerTitleTxt h1 br{
        display: none;
    }
    .download__btns a {
        width: 200px;
    }
}