@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=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..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: "Inter Tight", sans-serif; */
     font-family: "Montserrat", sans-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: 1;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    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%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    /* background-color: var(--white); */
    background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.8));
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
#nav img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    filter: none !important;
}

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

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

#banner{
    overflow: hidden;
    width: 100%;
    height: 953px;
}

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

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

#about h3{
    font-weight: 700;
    font-size: 25px;
    line-height: 1.4;
    color: var(--blue);
    font-family: "Inter Tight", sans-serif;
}
#about p{
    font-size: 15px;
    line-height: 1.7;
    color: #6e6e6e;
}
.small-head{
    font-family: "Inter Tight", sans-serif;
    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: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 35px;
}
#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{
    background-color: var(--red);
    height: 100%;
}
#about .a-col{
    background-color: var(--blue);
}
#about .a-wrap .a-icon i{
    color: var(--white);
    font-size: 50px;
}
#about .a-wrap h4{
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}
#about .a-wrap p{
    color: var(--white);
    opacity: 0.9;
    font-size: 15px;
}
/********* About Section End *********/

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

/* #value{
    background-color: var(--bg2);
} */
#value .v-item{
    background-color: var(--white);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
#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(--blue); */
    background-image: url(./img/chair.webp);
    background-size: cover;
}
#desk .chair-name{
    padding: 5px 20px;
    background-color: var(--red);
}
#desk .big-head{
    color: var(--white);
}
#desk img{
    border-radius: 75px 75px 0 0;
}
.ani{
    animation: ani 10s linear infinite both;
}
@keyframes ani{
  0%   {transform: translateY(25px);}
  50%  {transform: translateY(-25px);}
  100% {transform: translateY(25px);}
}
#desk p{
    color: var(--white);
    opacity: 0.7;
    text-align: justify;
    font-size: 15px;
}
#desk h4{
    color: var(--white);
    font-weight: 800;
    font-family: "Inter Tight", sans-serif;
}
#desk h5{
    font-family: "Inter Tight", sans-serif;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}
#desk .d-btn a{
    background-color: var(--red);
    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(--black2);
}
#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{
    height: 400px;
    position: relative;
}
#what .w-text{
    color: var(--white);
    transform: translateY(60px);
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: .4s ease-in-out;
}
#what .w-text p{
    font-weight: 400;
    color: #dbdbdb;
    opacity: 0;
    transition: .4s ease-in-out;
}
#what .w-wrap{
    overflow: hidden !important;
}
#what i{
    transition: .4s ease-in-out;
    opacity: 0;
    font-size: 45px;
}
#what .w-wrap img{
    width: 100%;
    transition: .4s ease-in-out;
}
#what .what-link h4{
    text-shadow: 0 0 15px #000;
    font-size: 30px;
    font-weight: 600;
    opacity: 1;
    transform: translateY(90px);
    transition: .4s ease-in-out;
}
#what .what-link:hover h4{
    text-shadow: none;
    transform: translateY(0);
}
#what .what-link:hover p{
    opacity: 1;
}
#what .what-link:hover i{
    opacity: 1;
}
#what .what-link:hover .overlay{
    height: 400px;
    opacity: 0.85;
}
#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: 50px;
    left: 50%;
    transform: translateX(-50%);
}
#what .what-link:hover .w-link{
    bottom: 30px !important;
}
#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: 100%;
    z-index: 1;
    opacity: 0;
    transition: .4s ease-in-out;
    background: var(--blue);
}
#what .over-2{
    
    background: var(--red);
}


/********* 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 .big-head{
    font-weight: 500;
}
#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);
}
#mile .m-wrapper-down{
    background-color: var(--bg2);
    border: 1px dotted var(--blue);
    padding: 15px;
    margin-top: 30px;
}
#mile .m-wrapper-up{
    background-color: var(--bg2);
    border: 1px dotted var(--blue);
    padding: 15px;
    margin-bottom: 30px;
}


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

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

#key h2{
    font-weight: 500 !important;
}
#key h5{
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500 !important;
}
#key h3{
    color: var(--white);
    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: var(--blue);
    transition: .4s ease-in-out;
}
#key .k-wrap-2{
    background-color: var(--red);
    transition: .4s ease-in-out;
}
#key .k-wrap-2 i{
    color: var(--blue);
}

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

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

#news{
    background-image: url(./img/footer.webp);
    background-size: cover;
}
#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 .n-btn a{
    background-color: var(--red);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 25px;
    transition: .4s ease-in-out;
}
#news .n-btn a:hover{
    background-color: var(--black2);
}
#news .n-btn a i{
    font-size: 16px;
    transition: .4s ease-in-out;
}
#news .n-btn a:hover i{
    transform: rotate(180deg);
}

/********* 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: #f8f8f8;
    border: 1px dotted var(--blue);
    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(--black);
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: .4s ease-in-out;
}
#investors .i-wrap i{
    color: var(--blue);
    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{
    margin-top: -7px;
    background-color: var(--blue);
    background-size: cover;
    background-position: center;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
}
#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 *********/
