@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root{
    --blue: #25306e;
    --red: #df2925;
    --green: #26a04e;
    --bg: #eee;
    --bg2:#fdfafa;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Outfit", sans-serif; */
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--red);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f102";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--blue);
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

#nav .menu ul{
    justify-content: center;
    display: flex;
}
#nav .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#nav .menu ul li a{
    opacity: 0.6;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li a::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-radius: 30px;
    height: 4px;
    transition: .4s ease-in-out;
    background-color: var(--red);
}
#nav .menu ul li a:hover::after{
    width: 30px;
}
#nav .menu ul li a:hover{
    opacity: 1;
}
#nav{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999;
    margin: 0 auto !important;
    width: 100%;
}
#nav .nav-item{
    padding: 10px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999;
    background-color: var(--white);
    margin: 0 auto !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
    border-radius: 0 0 25px 25px;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner img{
    position: relative;
    object-fit: cover;
    vertical-align: top;
    height: 953px;
    overflow: hidden;
}
/* #banner .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.4;
    background-color: var(--black);
} */
.carousel-caption{
    z-index: 2 !important;
    width: 40%;
    text-align: left;
    position: absolute;
    left: 300px;
    top: 50%;
    transform: translateY(-40%);
}
.carousel-caption h1{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-size: 65px;
}
.carousel-caption h1 span{
    color: var(--red);
}
.carousel-caption p{
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-size: 22px;
}
#banner .b-btn a{
    background-color: var(--red);
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--blue);
    color: var(--white);
}
#banner .carousel-indicators {
    left: auto !important;
    right: 10px !important;
    bottom: 35%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  flex-direction: column;
}
#banner .carousel-indicators > li{
  border-radius: 50% !important;
}
#banner .carousel-indicators [data-bs-target]{
    border-radius: 50%;
    width: 15px !important;
    height: 15px !important;
    margin: -5px 0;
}
#banner .carousel-indicators .active{
    width: 25px !important;
    height: 25px !important;
    background-color: var(--red) !important;
}

/********* Banner Section End *********/

/********* About Section Start *********/

#about .sup{
    margin-top: -40px;
}
#about h3{
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    color: var(--blue);
}
#about p{
    font-size: 15px;
    line-height: 1.7;
    color: #6e6e6e;
}
.small-head{
    position: relative;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    font-size: 20px;
}
.small-head:after{
    content: "";
    position: absolute;
    bottom: -7px;
    right: -10px;
    width: 60%;
    border-radius: 30px;
    height: 2px;
    background: #DF2925;
    background: linear-gradient(90deg, rgba(223, 41, 37, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.small-head:before{
    content: "";
    position: absolute;
    top: -7px;
    left: -10px;
    width: 60%;
    border-radius: 30px;
    height: 2px;
    background: #DF2925;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(223, 41, 37, 1) 100%);
}
.big-head{
    font-family: "Outfit", sans-serif;
}
#about .abtn a{
    color: #878787;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#about .abtn a:hover{
    color: var(--red);
}
#about .abtn a i{
    font-size: 24px;
    color: var(--red);
    transition: .4s ease-in-out;
}
#about .a-wrap{
    border: 3px solid var(--red);
    background-color: var(--white);
}
#about .a-wrap .a-icon i{
    margin-top: -100px;
    font-size: 50px;
    padding: 25px;
    background-color: var(--white);
}
#about .a-wrap .a-icon{
    margin-top: -70px;

}
#about .a-wrap h4{
    font-weight: 700;
    font-size: 20px;
    color: var(--blue);
}
#about .a-wrap p{
    font-size: 15px;
}
/********* About Section End *********/

/********* Our Values Section Start *********/

/* #value{
    background-color: var(--bg2);
} */
#value .col:last-child .v-item {
    border-right: 1px solid #dddddd;
}
#value .v-item{
    background-color: var(--white);
    border-left: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}
#value .v-item i{
    font-size: 45px;
    color: var(--red);
}
#value .v-item h4{
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
}
#value .v-item p{
    margin-top: 14px;
    color: #7d7d7d;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

/********* Our Values Section End *********/

/********* Desk Section Start *********/

#desk{
    background-color: var(--bg2);
}
#desk p{
    color: #6e6e6e;
    text-align: justify;
    font-size: 15px;
}
#desk h4{
    color: var(--blue);
    font-weight: 800;
    font-family: "Outfit", sans-serif;
}
#desk h5{
    color: var(--red);
    font-size: 17px;
    font-weight: 700;
}
#desk .d-btn a{
    background-color: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 25px;
    transition: .4s ease-in-out;
}
#desk .d-btn a:hover{
    background-color: var(--red);
}
#desk .d-btn a i{
    font-size: 16px;
    transition: .4s ease-in-out;
}
#desk .d-btn a:hover i{
    transform: rotate(180deg);
}
/********* Desk Section End *********/

/********* What Section Start *********/

#what a{
    text-decoration: none;
}
#what .w-wrap{
    position: relative;
}
#what .w-text{
    color: var(--white);
    transform: translateY(60px);
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 40px;
    transition: .4s ease-in-out;
}
#what .w-text p{
    font-weight: 400;
    color: #c2c2c2;
    opacity: 0;
    transition: .4s ease-in-out;
}
#what .w-wrap{
    overflow: hidden !important;
}
#what .w-wrap img{
    transition: .4s ease-in-out;
}
#what .what-link:hover p{
    opacity: 1;
}
#what .what-link:hover .w-text{
    transform: translateY(-20px) !important;
}
#what .what-link:hover .overlay{
    height: 400px;
    opacity: 1;
}
#what .what-link:hover img{
    transform: scale(1.3);
}
#what .what-link:hover a{
    background-color: #DF2925;
}
#what .w-link{
    z-index: 2;
    position: absolute;
    bottom: 20px;
    left: 0;
}
#what .w-link a{
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}
#what .w-text hr{
    border-top: 2px solid #c2c2c2;
}
#what .overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    opacity: 0.7;
    transition: .4s ease-in-out;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

/********* What Section End *********/

/********* Highlights Section Start *********/

#high{
    background-color: var(--bg2);
}
#high .h-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    
}
#high .h-icon i{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
#high h4{
    color: var(--blue);
    font-size: 21px;
    font-weight: 600;
}
#high p{
    margin-bottom: 0;
    font-size: 15px;
    color: #828282;
}

/********* Highlights Section End *********/

/********* Milestone Section Start *********/

#mile .road{
    width: 100%;
    height: 3px;
    background: #DF2925;
    background: linear-gradient(90deg,rgba(223, 41, 37, 0) 0%, rgba(223, 41, 37, 1) 5%, rgba(223, 41, 37, 1) 50%, rgba(223, 41, 37, 1) 95%, rgba(223, 41, 37, 0) 100%);
}
#mile h4{
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 19px;
    color: var(--blue);
}
#mile p{
    color: #6f6f6f;
    margin-bottom: 0;
    font-size: 13px;
}
#mile .m-wrap{
    padding: 30px 0;
}
#mile h2{
    font-weight: 600;
    color: var(--blue);
}
#mile .m-up h2{
    position: relative;
}
#mile .m-up h2:after{
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 55px;
    background-color: var(--red);
}
#mile .m-up h2:before{
    content: "";
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--red);
}
#mile .m-down h2{
    position: relative;
}
#mile .m-down h2:after{
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 55px;
    background-color: var(--red);
}
#mile .m-down h2:before{
    content: "";
    position: absolute;
    top: -20px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: var(--red);
}


/********* Milestone Section End *********/

/********* Key Section Start *********/

#key{
    background-image: url(./img/key.webp);
    background-size: cover;
}
#key h2{
    color: var(--white);
    font-weight: 600 !important;
}
#key h5{
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500 !important;
}
#key h3{
    color: var(--white);
    color: var(--red);
    font-size: 40px;
    font-weight: 600 !important;
}
#key h3 span{
    color: var(--white);
}
#key i{
    font-size: 50px;
    color: var(--red);
    margin-right: 15px;
    font-weight: 600 !important;
}
#key .k-wrap{
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: .4s ease-in-out;
}
#key .k-wrap:hover{
    background-color: var(--blue);
    backdrop-filter: blur(10px);
}

/********* Key Section End *********/

/********* News Section Start *********/

#news{
    background-color: var(--bg2);
}
#news .n-wrap{
    height: 100%;
    border: 1px solid #e7e7e7;
    background-color: var(--white);
    transition: .4s ease-in-out;
}
#news a{
    text-decoration: none;
}
#news .n-wrap i{
    margin-right: 5px;
    color: var(--red);
}
#news .n-wrap p{
    font-size: 14px;
    color: #434343;
}
#news .n-wrap h6{
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
}
#news .n-link a{
    font-weight: 500;
    color: #999999;
    transition: .4s ease-in-out;
}
#news .n-link a i{
    color: #999999;
    transition: .4s ease-in-out;
}
#news .n-wrap:hover a{
    color: var(--red);
}
#news .n-wrap:hover i{
    transform: translateX(10px);
    color: var(--red);
}
#news .n-wrap:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

/********* News Section End *********/

/********* Certification Section Start *********/

#certificate .c-btn a{
    background-color: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 25px;
    transition: .4s ease-in-out;
}
#certificate .c-btn a:hover{
    background-color: var(--red);
}
#certificate .c-btn a i{
    font-size: 18px;
    margin-left: 5px;
    transition: .4s ease-in-out;
}
#certificate .c-btn a:hover i{
    transform: rotate(360deg);
}
#certificate p{
    color: #6e6e6e;
}

/********* Certification Section End *********/

/********* Investors Section Start *********/

#investors .i-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background-color: var(--white);
    border: 1px dotted var(--red);
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
    transition: .4s ease-in-out;
}
#investors .i-wrap:hover{
    background-color: var(--red);
}
#investors a{
    text-decoration: none;
}
#investors .i-wrap h5{
    color: var(--blue);
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: .4s ease-in-out;
}
#investors .i-wrap i{
    color: var(--red);
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 20px;
    transition: .4s ease-in-out;
}
#investors .i-wrap:hover h5{
   color: var(--white);
}
#investors .i-wrap:hover i{
   color: var(--white);
}
#investors h1{
    font-weight: 600;
    color: var(--blue);
    font-size: 60px;
}
#investors h1 span{
    color: var(--red);
    font-size: 40px;
}
#investors h6{
    color: #b2b2b2 !important;
}
#investors h4{
    font-weight: 600;
}
.nav-tabs .nav-link h5{
    padding: 0 5px;
    font-weight: 600;
}
.nav-tabs .nav-link{
    border: none;
    color: var(--black) !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: var(--red);
    border-bottom: 5px solid var(--red);
}
/********* Investors Section End *********/

/********* Footer Section Start *********/

#footer{
    border-top: 3px solid var(--blue);
    background-image: url(./img/footer.webp);
    background-size: cover;
    background-position: center;
}
#footer img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
}
#footer p{
    opacity: 0.7;
    color: var(--white);
    font-size: 15px;
}
#footer h4{
    font-weight: 600;
    color: var(--white);
}
#footer .men a{
    color: var(--white);
    opacity: 0.8;
    font-weight: 500;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    color: var(--red);
    opacity: 1;
}
#footer .men a i{
    transition: .4s ease-in-out;
    margin-right: 0;
}
#footer .men a:hover i{
    margin-right: 5px;
}
#footer .men ul li{
    margin-bottom: 7px;
    list-style: none;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .social ul li a{
    font-size: 25px;
    color: var(--white);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .social ul li a:hover{
    opacity: 1;
}
#footer .social ul{
    display: flex;
}
#footer .contact i{
    margin-right: 8px;
    color: var(--red);
    font-size: 20px;
}
#footer .contact li{
    padding-bottom: 8px;
}
#footer span a{
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    font-size: 15px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer span a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer hr{
    border-color: #fff;
}

/********* Footer Section End *********/
