@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');
:root{
    --blue: #33b3de;
    --blue2: #454894;
    --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; */
    font-family: "Rethink Sans", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

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

#top{
    display: inline-block;
    background-color: var(--blue2);
    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: 0 5px;
    list-style: none;
}
#nav .menu ul li a{
    opacity: 1;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: var(--black);
    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;
    border-bottom: 2px solid #f2f2f2;
    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); */
}
.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;
}
.menu-color{
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.3);
}
#nav .h-btn a{
    padding: 12px 30px;
    background-color: var(--blue);
    text-decoration: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    transition: .4s ease-in-out;
}
#nav .h-btn a i{
    margin-right: 5px;
}
#nav .h-btn a:hover{
    background-color: var(--blue2);
}
#nav .navs{
    padding: 8px 20px;
    border-radius: 50px;
}
#nav .navs:hover{
    background-color: #f2f2f2;
}
#nav .active{
    background-color: #e2e2e2;
}
#nav .active:hover{
    background-color: #e2e2e2;
}
#nav .offcanvas{
    height: 100vh;
    width: 250px;
}
#nav .offcanvas-backdrop.show{
    opacity: 0.7;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
}
.custom-toggler:focus{
    box-shadow: none;
}
.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--blue2);
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}
.hamburger:hover span{
    background: var(--blue);
}

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

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

#banner{
    position: relative;
    overflow: hidden;
}
#banner img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
  object-position: 70% 100%;
}
#banner .ban-text{
    width: 550px;
    position: absolute;
    top: 50%;
    left: 270px;
    transform: translateY(-50%);
}
#banner .ban-text-2{
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
#banner .ban-text-2 h1{
    line-height: 1.2;
    color: var(--white);
    font-size: 145px;
    text-shadow: 1px 1px 45px #0000009c;
    font-weight: 600;
}
#banner .ban-text h1{
    line-height: 1.2;
    color: var(--white);
    font-size: 32px;
    text-shadow: 1px 1px 10px #0000009c;
    font-weight: 600;
    margin-bottom: 30px;
}
#banner .ban-text h1 span{
    color: var(--blue);
}
#banner .ban-text p{
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
}
#banner .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
#banner .b-btn a{
    font-size: 17px;
    padding: 14px 25px;
    background-color: var(--blue);
    text-decoration: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--blue2);
}

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

/********* About Section Start *********/
.head{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
#about h1{
    margin-top: 25px;
    font-size: 57px;
    font-weight: 500;
    line-height: 1;
}
#about h1 span{
    color: #a0a5b0;
}
#about p{
    font-size: 17px;
}
#about img{
    border-radius: 30px;
}
#about h6{
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 5px;
}
#about h3{
    font-size: 65px;
    letter-spacing: 1px;
    font-weight: 700;
}

/********* Core Values Section Start *********/

#services{
    background-color: #f1fafd;
}
#services h1{ 
    font-size: 57px;
    /* margin-top: 25px; */
    font-weight: 500;
    line-height: 1;
}
#services .icon svg{
    filter: brightness(0) saturate(100%) invert(32%) sepia(39%) saturate(860%) hue-rotate(199deg) brightness(93%) contrast(92%);
    height: 60px !important;
}
#services .icon{
    margin-bottom: 20px;
}
#services .c-head h4{
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}
#services .c-head p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #70737a;
}

/********* Core Values Section End *********/

/********* Para Section End *********/

#para{
    background-image: url(./img/para.webp);
    background-size: cover;
}
#para .para-text{
    background-color: var(--blue2);
    padding: 50px;
}
#para h1{
    line-height: 1.1;
    font-size: 47px;
    color: var(--white);
    margin-bottom: 20px;
}
#para p{
    line-height: 1.5;
    font-size: 17px;
    font-weight: normal;
    color: #d1d1d1;
}

/********* Para Section End *********/

/********* Activity Section Start *********/

#activity h1{ 
    font-size: 57px;
    margin-top: 25px;
    font-weight: 500;
    line-height: 1;
}
.ac-wrap{
    height: 100%;
}
.f-ac{
    padding: 30px;
    border-radius: 20px;
    background-color: #e2eff4;
    height: 100%;
}
.s-ac{
    padding: 30px;
    border-radius: 20px;
    background-color: #f1f4eb;
}
.s-ac h4{
    margin-bottom: 30px;
}
.st-ac{
    margin-bottom: 30px;
}
.ac-wrap span{
    font-size: 23px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #A0A5B0;
}
.ac-wrap h4{
    font-size: 28px;
}
.ac-wrap p{
    color: #70737a;
    font-size: 17px;
}

/********* Activity Section End *********/

/********* Contact Section End *********/

#contact{
    background-color: #f1fafd;
}
#contact .form-control{
    padding: 15px 20px !important;
    border-radius: 50px;
}
#contact .form-control:focus{
    box-shadow: none;
    border: 1px solid var(--blue2);
}
#contact textarea{
    border-radius: 20px !important;
}
#contact button{
    padding: 12px !important;
    border-radius: 50px;
    background-color: var(--blue2) !important;
    border-color: var(--blue2);
}
#contact button:hover{
    padding: 12px !important;
    border-radius: 50px;
    background-color: var(--blue) !important;
    border-color: var(--blue);
}
#contact h1{ 
    font-size: 40px;
    margin-top: 25px;
    font-weight: 500;
    line-height: 1;
}
#contact .conts span{
    color: #7B808C;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
}
#contact .conts h5{
    font-weight: 600;
    color: var(--black);
    font-size: 20px;
}
#contact .conts h5 a{
    text-decoration: none;
    color: var(--black);
    transition: .4s ease-in-out;
}
#contact .conts h5 a:hover{
    color: var(--blue);
}

/********* Contact Section End *********/


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

#footer{
    background-image: url(./img/footer.webp);
    background-size: cover;
    background-position: center;
}
#footer .social ul li{
    margin-right: 20px;
    list-style: none;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%) !important;
}
#footer .menu li{
    list-style: none;
    padding: 0 35px;
    border-right: 1px solid #7f7f7f;
}
#footer .menu li:last-of-type{
    border-right: none;
}
#footer .menu{
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 70px; */
}
#footer .menu li a{
    text-decoration: none;
    color: var(--white);
    opacity: 0.7;
}
#footer .menu li a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer .f-about{
    font-size: 17px;
    color: var(--white);
    font-weight: 400;
    opacity: 0.7;
}
#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{
    justify-content: right;
    display: flex;
}
#footer .copy{
    color: var(--white);
    opacity: 0.5;
}
#footer hr{
    border-color: var(--white);
}

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

/********* Responsive Section Start *********/

@media only screen and (max-width: 1865px) {
  #banner .ban-text-2 h1{
    font-size: 120px;
  }
}
@media only screen and (max-width: 1550px) {
  #banner .ban-text-2 h1{
    font-size: 100px;
  }
}
@media only screen and (max-width: 1290px) {
  #banner .ban-text-2 h1{
    font-size: 80px;
  }
  #banner .ban-text{
    left: 100px;
  }
}
@media only screen and (max-width: 1030px) {
  #banner .ban-text-2 h1{
    font-size: 60px;
  }
  #banner .ban-text{
    left: 50px;
    width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  #about h1{
    font-size: 40px;
  }
  #about p{
    font-size: 16px;
  }
  #about img{
    border-radius: 10px;
  }
  #services h1{
    font-size: 40px;
  }
  #footer .social ul{
    justify-content: center;
  }

}
@media only screen and (max-width: 780px) {
  #banner .ban-text-2 h1{
    font-size: 45px;
    margin-left: 20px;
    text-align: left;
  }
  #banner .ban-text h1{
    font-size: 23px;
  }
  #banner .ban-text{
    top: 55% !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 500px) {
  #banner .ban-text{
    left: 20px;
    right: 20px;
    width: auto;
  }
  #para .para-text{
    background-color: var(--blue2);
    padding: 30px;
}
  #para h1{
    font-size: 35px;
    }
    #nav .logo img{
        height: 30px;
    }
}
@media only screen and (max-width: 455px) {
  #footer .menu li{
    padding: 0 20px;
  }
}
@media only screen and (max-width: 360px) {
  #footer .menu li{
    padding: 0 10px;
  }
}

/********* Responsive Section End *********/