@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');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
:root{
    --blue: #133756;
    --yellow: #ffa600;
    --green: #408732;
    --bg: #eee;
    --bg2:#eff8ff;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden;
}

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

#top{
    display: inline-block;
    background-color: var(--yellow);
    width: 60px;
    height: 60px;
    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 8px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.8em;
    line-height: 50px;
    color: var(--black);
    transition: .3s ease-in-out;
  }
  #top:hover {
    cursor: pointer;
    color: var(--white) !important;
    background-color: var(--blue);
  }
  #top:hover::after {
    color: var(--white) !important;
  }
  #top:active {
    background-color: var(--blue);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

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

#navs .menu ul{
    justify-content: right;
    display: flex;
}
#navs .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#navs .menu ul li .menu-link{
    opacity: 1;
    font-size: 17px !important;
    font-weight: 700;
    text-decoration: none;
    color: var(--blue) !important;
    text-transform: uppercase;
    position: relative;
    transition: .4s ease-in-out;
}
#navs .menu ul li .menu-link::after{
    display: block;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--yellow);
}
#navs .menu ul li .menu-link:hover::after{
    width: 60%;
}
#navs .menu ul li .menu-link:hover{
    opacity: 1;
}
#navs{
    position: fixed;
    top: -100px;
    opacity: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    margin: 0 auto !important;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    transition: 1s ease-in-out !important;
}
.nav-down{
    opacity: 1 !important;
    top: 0 !important;
}
#navs img{
    transition: .4s height ease-in-out;
    /* filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%); */
}
#navs .by{
    background-color: var(--blue);
}
#navs .yb{
    background-color: var(--white);
}
/* #nav .logo-wrap{
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#nav .bord{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
#navs .mcon span{
    font-size: 14px;
}
#navs .mcon i{
    color: var(--yellow);
    margin-right: 5px;
    margin-top: 40px !important;
    font-size: 16px;
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    /* height: 50px; */
    filter: none !important;
}
.heading span{
    color: var(--white);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px;
    text-transform: uppercase;
    background-color: var(--yellow);
    position: relative;
}
.heading span::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--yellow);
}
#about h2{
    font-weight: 700;
    color: var(--blue);
}
#navs .ham .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#sub-menu{
    width: 100%;
    overflow: hidden;
}
.sub-menu{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    width: 450px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
.sub-menu p{
    font-size: 16.5px;
    color: var(--blue);
    font-weight: 500;
}
.sub-menu h5{
    font-weight: 500;
    font-size: 16px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.sub-menu h3{
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.sub-menu .pad{
    padding: 40px 60px;
}
.sub-menu .close a{
    color: var(--black);
    background-color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
.closed{
    right: -450px !important;
    opacity: 0 !important;
}
.opens{
    right: 0 !important;
    opacity: 1 !important;
}
.m-social ul{
    display: flex;
}
.m-social ul li {
    margin-right: 10px;
    list-style: none;
}
.m-social ul li a{
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.m-social ul li a:hover{
    color: var(--blue);
    background-color: var(--yellow);
}

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

#nav .bord ul li a{
    width: auto;
    height: auto;
    background-color: transparent;
    margin-right: 15px;
    font-size: 14px !important;
}
#nav .bord ul li a:hover{
   color: var(--yellow);
}
#nav .bord ul li a::after{
   display: none;
}
#nav .menu ul{
    justify-content: right;
    display: flex;
}
#nav .menu ul li{
    padding: 10px 15px;
    list-style: none;
}
#nav .menu ul li .menu-link{
    opacity: 1;
    font-size: 18px !important;
    font-weight: 600;
    text-decoration: none;
    color: var(--white) !important;
    position: relative;
    transition: .4s ease-in-out;
}
#nav .menu ul li .menu-link::after{
    display: block;
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    border-radius: 30px;
    height: 2px;
    transition: .4s ease-in-out;
    background-color: var(--yellow);
}
#nav .menu ul li .menu-link:hover::after{
    width: 60%;
}
#nav .menu ul li .menu-link:hover{
    opacity: 1;
}
#nav{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 999999999;
    /* background-color: var(--white); */
    margin: 0 auto !important;
    transition: .4s ease-in-out;
    /* box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3); */
}
#nav img{
    transition: .4s height ease-in-out;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
}
#nav .logo-wrap{
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
#nav .bord{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
#nav .mcon span{
    font-size: 14px;
}
#nav .mcon i{
    color: var(--yellow);
    margin-right: 5px;
    margin-top: 40px !important;
    font-size: 16px;
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    /* height: 50px; */
    filter: none !important;
}
.heading span{
    color: var(--white);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px;
    text-transform: uppercase;
    background-color: var(--yellow);
    position: relative;
}
.heading span::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--yellow);
}
#about h2{
    font-weight: 700;
    color: var(--blue);
}
#nav .ham .ham-wrap{
    display: block;
    width: 80px;
    height: 80px;
    font-size: 40px;
    color: var(--black);
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: pointer;
    background-color: var(--yellow);
}
#sub-menu{
    width: 100%;
    overflow: hidden;
}
.sub-menu{
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999999;
    width: 450px;
    background-color: #f1f1f1;
    transition: 1s ease-in-out;
}
.sub-menu p{
    font-size: 16.5px;
    color: var(--blue);
    font-weight: 500;
}
.sub-menu h5{
    font-weight: 500;
    font-size: 16px;
    color: #585858;
    line-height: 1.5;
    margin-bottom: 0;
}
.sub-menu h3{
    color: var(--blue);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
}
.sub-menu .pad{
    padding: 40px 60px;
}
.sub-menu .close a{
    color: var(--black);
    background-color: var(--yellow);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
.closed{
    right: -450px !important;
    opacity: 0 !important;
}
.opens{
    right: 0 !important;
    opacity: 1 !important;
}
.m-social ul{
    display: flex;
}
.m-social ul li {
    margin-right: 10px;
    list-style: none;
}
.m-social ul li a{
    width: 40px;
    height: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
    transition: .3s ease-in-out;
}
.m-social ul li a:hover{
    color: var(--blue);
    background-color: var(--yellow);
}

/********* 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: 950px;
    top: 55%;
    transform: translateY(-50%);
}
.spa{
    display: inline-block;
    color: var(--blue);
    position: relative;
}
.spa::after{
    content: "";
    position: absolute;
    left: -10%;
    top: -10%;
    width: 120%;
    height: 120%;
    background-color: var(--white);
    z-index: -1;
}

.carousel-caption h1{
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
    font-size: 70px;
}
.carousel-caption h1 span{
    color: var(--yellow);
}
.carousel-caption p{
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-size: 18px;
}
#banner .b-btn a{
    background-color: var(--yellow);
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    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: 30% !important;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
    align-items: center;
}
#banner .carousel-indicators > li{
  border-radius: 0 !important;
}
#banner .carousel-indicators [data-bs-target]{
    border-radius: 0;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: -5px 3px;
}
#banner .carousel-indicators .active{
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    /* background-color: var(--yellow) !important; */
}
.carousel-control-next, .carousel-control-prev{
    opacity: .9;
}
.carousel-control-next:hover i{
    color: var(--blue) !important;
}
.carousel-control-prev:hover .carousel-control-prev-icon{
    background-color: var(--black);
}
.carousel-control-next, .carousel-control-prev{
    width: 7%;
}
/* #banner .custom-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: all 0.3s ease;
} */

#banner .custom-icon i {
  color: var(--white) !important;
  font-size: 35px;
  transition: .3s ease-in-out;
}


.carousel-control-next:hover .custom-icon {
  background-color: none !important;
}
#banner .carousel-control-next:hover .custom-icon i {
  color: var(--yellow) !important;
}
.carousel-control-prev:hover .custom-icon {
  background-color: none !important;
}
#banner .carousel-control-prev:hover i {
  color: var(--yellow) !important;
}


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

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

#about{
    background-color: var(--yellow);
    /* background-image: url(./img/about-bg.webp);
    background-size: cover;
    background-repeat: no-repeat; */
}
#about .a-btn a{
    padding: 14px 24px;
    font-size: 14px;
    background-color: var(--blue);
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: .4s ease-in-out;
}
#about .a-btn a:hover{
    background-color: var(--black);
    color: var(--white);
}
#about .a-btn a::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0px;
    height: 2px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#about .a-btn a:hover::after{
    width: 75%;
}
#about .a-btn a i{
    transition: .3s ease-in-out;
}
#about .a-icon i{
    font-size: 45px;
    color: var(--white);
    margin-right: 30px;
}
#about .a-text{
    line-height: 1.4;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
}
#about .a-wrap{
    background-color: var(--white);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.07);
    transition: .3s ease-in-out;
}
#about .a-wrap:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
#about h4{
    color: var(--black);
    font-weight: 700;
    font-size: 35px;
}
#about p{
    font-size: 16px;
    font-weight: 500;
}
#about h1{
    margin-top: 30px;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    font-size: 80px;
    font-weight: 800;
    /* font-family: "Inter Tight", sans-serif; */
    text-transform: uppercase;
}
#about .heading span{
    background-color: var(--blue);
}
#about .heading span::after{
    background-color: var(--blue);
}
#about .line{
    width: 100%;
    height: 2px;
    background-color: var(--blue);
}
#about .a-s{
    font-weight: 600;

}

/********* About Section End *********/

/********* Miss Section Start *********/

#miss button{
    background-color: var(--bg);
    color: var(--blue);
    border-radius: 0;
}
#miss button:hover{
    background-color: var(--bg2);
}
#miss button .m-icon{
    font-size: 40px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: var(--blue) !important;
    color: var(--yellow) !important;
}
#miss button .m-head{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}
#miss h1{
    color: var(--blue);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
}
#miss h5{
    line-height: 1.6;
}

/********* Miss Section End *********/

/********* Services Section Start *********/

#services{
    position: relative;
   background-color: var(--blue); 
}
#services .bg{
    position: absolute;
    top: 0;
    left: 50px;
}
#services .home{
    position: absolute;
    bottom: 0;
    right: 0;
}
#services .home2{
    position: absolute;
    bottom: 0;
    left: 0;
}
#services h2{
    font-weight: 600;
    color: var(--white);
    font-size: 44px;
    margin-bottom: 20px;
}
#services .s-wrap{
    position: relative;
    height: 100%;
    background-color: var(--white);
    border: 1px solid #dfdfdf;
    transition: .3s ease-in-out;
}
#services .s-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
#services .s-icon img{
    transform: scale(1) !important;
    filter: brightness(0) saturate(100%) invert(98%) sepia(93%) saturate(1%) hue-rotate(189deg) brightness(107%) contrast(100%);
}
#services .s-wrap h5{
    color: var(--blue);
    font-weight: 700;
    font-size: 19px;
    padding: 5px 0;
    transition: .3s ease-in-out;
}
#services .s-wrap p{
    opacity: 1;
    padding: 5px 0;
    font-size: 14px;
}
#services .s-btn a{
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    color: var(--blue);
    transform: translateX(-50px);
    transition: .3s ease-in-out;
}
#services .s-btn a:hover{
    color: var(--yellow);
}
#services .s-btn a:hover i{
    margin-left: 5px;
}
#services .s-btn a i{
    transition: .3s ease-in-out;
}
#services .s-wrap:hover{
    border-color: var(--yellow);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07);
}
#services .s-wrap:hover a{
    transform: translateX(0);
    opacity: 1;
}
#services .s-wrap:hover .s-icon{
    background-color: var(--yellow);
}
#services .s-img{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
#services .s-img img{
    object-fit: cover;
    height: 100% !important;
    transition: .3s ease-in-out;
}
#services .s-wrap:hover img{
    transform: scale(1.1);
}
#services .s-wrap:hover h5{
    color: var(--yellow);
}
#services .s-icon{
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 1;
    width: 60px;
    height: 60px;
    font-size: 45px;
    color: var(--white);
    background-color: var(--blue);
    transition: .3s ease-in-out;
}
#services .sa-btn a{
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    color: var(--blue);
    padding: 14px 25px;
    text-transform: uppercase;
    background-color: var(--yellow);
    transform: translateX(-50px);
    transition: .3s ease-in-out;
}
#services .sa-btn a:hover{
   background-color: var(--black);
   color: var(--white);
}

/********* Services Section End *********/

/********* Projects Section Start *********/

#projects{
    background-color: var(--blue);
}
#projects h2{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 50px;
    color: var(--white);
}
#projects .pro{
    border-left: 1px solid var(--yellow);
    transition: .3s ease-in-out;
}
#projects .pro a{
    text-decoration: none;
}
#projects .p-text h4{
    color: var(--white);
    margin-bottom: 70px;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
}
#projects .p-text p{
    margin-bottom: 7px;
    font-size: 15px;
    color: var(--yellow);
}
#projects .over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.1;
    transition: .3s ease-in-out;
}
#projects .pro:hover .p-text{
    bottom: 20px;
}
#projects .pro:hover .over{
    opacity: 0.4;
}
#projects .pro:hover{
    transform: translateY(-15px);
}
#projects .pro img{
    object-fit: cover;
    width: 100%;
    height: 300px;
    transition: .3s ease-in-out;
}
#projects .pro:hover img{
    transform: scale(1.04);
}
#projects .p-btn a{
    text-decoration: none;
    color: var(--yellow);
    font-weight: 500;
}
#projects .pa-btn a{
    text-decoration: none;
    color: var(--black);
    background-color: var(--yellow);
    padding: 14px 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
#projects .pa-btn a:hover{
    color: var(--white);
    background-color: var(--black);
}
#projects .heading p{
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 500 !important;
}
.custom-buttons {
      margin-top: 10px;
    }

    .custom-buttons button {
      width: 60px;
      height: 60px;
      background: var(--white);
      color: var(--blue);
      border: none;
      margin-right: 7px;
      font-size: 20px;
      cursor: pointer;
      transition: .3s ease-in-out;
    }

    .custom-buttons button:hover {
      background: var(--yellow);
    }

/********* Projects Section End *********/

/********* Clients Section Start *********/

#clients h2{
    font-size: 44px;
    text-transform: uppercase;
}
#clients .c-btn a{
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);
    padding: 14px 25px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
#clients .c-btn a:hover{
    color: var(--white);
    background-color: var(--black);
}


/********* Clients Section End *********/

/********* Cap Section Start *********/

#cap{
    background-color: var(--yellow);
}
#cap h3{
    font-weight: 500;
    font-size: 25px;
    line-height: 1.5;
    color: var(--black);
    margin: 10px 0;
}
#cap h1{
    font-size: 45px;
    opacity: 0.3;
    margin-bottom: 0;
    color: var(--blue);
}


/********* Cap Section End *********/

/********* FAQ Section Start *********/

#faq h1{
    font-size: 55px;
    color: var(--blue);
    font-weight: 700;
}
#faq .accordion{
    border-radius: 0 !important;
}
#faq .accordion-item{
    background-color: transparent;
}
#faq .accordion-item{
    border: none;
    background-color: none;
}
#faq .accordion-button{
    background-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    padding-left: 5px;
    padding-right: 5px;
    color: var(--blue);
 }
 #faq .accordion-button span{
    font-weight: 700 !important;
    font-size: 20px;
    color: #929292;
 }
#faq .accordion-item{
    padding: 15px 0;
   border-bottom: 2px solid var(--blue);
}
#faq .accordion-button:not(.collapsed){
    background-color: transparent !important;
    border-bottom: none;
}
#faq .accordion-button:focus{
    box-shadow: none;
}
#faq .accordion-button::after {
    content: '\2b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-image: none !important;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  
  #faq .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
  }
  #faq .accordion-item:last-of-type{
    border-radius: 0;
  }


/********* FAQ Section End *********/

/********* Contact Section Start *********/

#contact{
    background-image: url(./img/world.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
#contact .f-wrap{
    border: 1px dashed #c2c2c2;
}
#contact h2{
    font-weight: 700;
    font-size: 45px;
    color: var(--blue);
}
 .form {
      background: var(--white);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: var(--yellow);
    }

    .btn-custom {
      background-color: var(--blue);
      color: white;
      border-radius: 0;
    }

    .btn-custom:hover {
      background-color: var(--yellow);
    }
    #contact h3{
        font-weight: 700;
        font-size: 23px;
    }
     #contact h3 i{
        color: var(--yellow);
        margin-right: 5px;
    }
    #contact .det p{
        font-weight: 500;
        font-size: 16px;
        margin-left: 35px;
    }
    #contact .form{
        border-radius: 0;
    }
    #contact .form-control{
        border-radius: 0;
    }

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

/********* Need Section End *********/

#need{
    position: relative;
    z-index: 3;
    margin-top: -80px;
}
.need{
    color: var(--black);
    background-color: var(--yellow);
}
.need h2{
    font-weight: 700;
}
#need .n-btn a{
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px;
    background-color: var(--blue);
    transition: .3s ease-in-out;
}
#need .n-btn a:hover{
    background-color: var(--black);
}

/********* Need Section End *********/

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

#footer{
    margin-top: -70px;
    background-image: url(./img/footer.webp);
    background-size: cover;
    background-position: center;
    z-index: 2;
}
#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);
    position: relative;
}
#footer h4::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--yellow);
}
#footer .men a{
    color: var(--white);
    opacity: 0.8;
    font-weight: 400;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#footer .men ul{
    padding-top: 10px;
}
#footer .men a:hover{
    color: var(--yellow);
    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;
    color: var(--yellow);
}
#footer .social ul{
    display: flex;
}
#footer .contact i{
    margin-top: -3px;
    margin-right: 8px;
    color: var(--yellow);
    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 *********/
