*{padding:0;
    margin:0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Lato', sans-serif;
}


.about-h1{
    font-size: 3rem;
    color:rgb(241, 120, 34); 
    text-align: center;
    padding:0 1rem;
    
}

@media screen and (max-width: 720px){
    .tech-h1{
        font-size: 2rem;
    }
}

.banner-p{
    color:rgb(127, 225, 255);
    font-size: 2rem;
    font-style: italic;
    font-weight: bold;
}

.home-link{
    padding:0.2rem 1rem;
    border:0.15rem solid white;
    border-radius: 0.3rem;
    color:white;
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s linear;
}

.home-link:hover{
    background-color: white;
    color:rgba(14, 88, 120, 0.937);
}
/* header{
 
    background-size: cover;
    background-position: center;
} */

.about-header{
    display: grid;
    place-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.534),rgba(0, 0, 0, 0.492)),url('images/2.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding:10rem 0;
}

.tech-header{


    display: grid;
    place-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.534),rgba(0, 0, 0, 0.492)),url('images/1.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    padding:10rem 0;

}










 


/* section{
    min-height: 20rem;
    text-align: center;
} */

.about{
    background-color: rgb(69, 167, 174);
}

.services{
    background-color: rgb(189, 207, 219);
}

.contact{
    background-color: rgb(242, 211, 179);
}



footer{
    background-color: #292d77;
    padding:1rem 0;
    color:white;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; */
}

footer a {
    color:rgb(248, 225, 162);
    text-decoration: none;
    transition: all 0.3s linear;
}

footer a:hover {
    color:rgb(218, 130, 67);
    
}
footer p{
    padding:0 1rem;
}

.footer-center{
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin:0 auto;
}

.footer-content{
    flex:1 15rem;
    max-width: 20rem;
    margin:1rem;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-h3{
text-align: center;
margin-bottom: 1.5rem;

}

.copyright{
    margin:0 auto;
    /* background-color: aquamarine; */
    text-align: center;
    border-top: 0.15rem solid grey;
    padding-top: 1.5rem;
}

.social-icons i{
color: #d8232a;;
   font-size:1.8rem;
   margin:0 0.5rem;
   transition: 0.5s;
   cursor: pointer;
}

.social-icons i:hover{
    transform: scale(1.2);
 }


.maps-link{
    display: flex;
   
}

.maps-p{
    color:#f0d890;
    transition: 0.5s;
}

.maps-p:hover{
    color: #d8232a;
}


     


   



.top-link{
    cursor: pointer;
    position: fixed;
    right:5%;
    bottom:10%;
    font-size: 2rem;
    width:4rem;
    height:4rem;
    border-radius: 50%;
    background-color: #d8232a;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0.3rem black;
    animation: scroll 2s ease-in-out infinite;
    visibility: hidden;
    z-index: -100;
    transition: 0.5s;
}

.top-link a:hover{
    color:white;
}

.top-link:hover{
    background-color: #9e2024; 
    color:white;
}

.show-top-link{
    visibility: visible;
    z-index: 100;
}

@keyframes scroll{
  0%{
         transform: scale(1);
  }

  50%{
    transform: scale(1.1);
}

100%{
    transform: scale(1);
}


}

.top-link a{
    color:white;
}

 /* h2{
    text-align: center;
    color:white;
    background-color: rgb(11, 68, 109);
    padding: 0.2rem 1rem;
    display: inline-block;
  
}  */


.carousel{
    
}

.d-block{
    height:100vh;
    /* object-fit: contain; */
}


@media screen and (max-width:770px){
     .d-block{
          height: 50vh;
     }

    }

.slide-p{
    
    
    background-color: rgba(0, 0, 0, 0.719);
    font-size: 1.5rem;
    width:35rem;
    margin:0 auto;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    
}

@media screen and (max-width:400px){
    .slide-p{
    
    
       
        font-size: 1.2rem;
        width:15rem;
       
    }
}

@media screen and (min-width:401px)  and (max-width:770px){
    .slide-p {



        font-size: 1.3rem;
        width: 18rem;
        

    }
}

.slide-h2{
    background-color: rgb(241, 120, 34);
    letter-spacing: 0.1rem;
    font-size: 2.5rem;
    display: inline-block;
    padding: 0 0.5rem;
}



   .slide-link{
    display: inline-block;
    text-decoration: none;
    color:rgb(255, 255, 255);
    padding:0.4rem 1rem;
    border:0.2rem solid rgb(241, 120, 34);
    background-color: rgb(241, 120, 34);
    margin-bottom: 15rem;
    margin-top: 1rem;
    transition: 0.5s all linear;
   }

   .slide-link:hover{
    color:rgb(241, 120, 34);
    background-color: rgba(241, 120, 34, 0);
   }

   @media screen and (max-width:770px){
    
    .slide-link{
        margin-bottom: 0;
    }
    .slide-h2{
        
        font-size: 1.5rem;
    }


   }
/*WHO WE ARE*/
   .wwa{
    padding:3rem 0;
   }

   .wwa1{
    padding-bottom: 0;
   }

   .wwa-careers{
    padding-top: 0;
   }

   .wwa-careers1 {
       padding-bottom: 0;
       background-color: #ebebeb;
       
   }

   .wwa2{
    padding-top: 0;
    text-align: center;
    padding-bottom: 0;
   }

   .wwa2a{
    padding-bottom: 2rem;
   }
 
    .wwa3{
    padding-bottom: 3rem;
   } 

   .center{
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   }

   .center1{
    flex-direction: row-reverse;
   }

   .wwa-text, .wwa-image{
    flex: 1 30rem;
    max-width: 30rem;
    margin:1rem;
   }

   .wwa-text1{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   }

   

   .wwa-text ul{
    text-align: left;
    font-size: 1.1rem;
   }

   .wwa-text2{
    text-align: center;
    /* flex-direction: column; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
   }

   .wwa-text3{
    max-width: 100%;
   }

   .wwa-text4{
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
   }

   .wwa-h2{
    /* text-transform: uppercase; */
    text-align: center;
    color:#292d77;
   }

   .wwa-p{
    text-align: justify;
    font-size: 1.15rem;
    color:rgb(52, 52, 52);
   }

   .wwa-photo{
    width:100%;
   }

   .tech-photo{
    width:100%;
   }

   .about-link{
    color:white;
    display: inline-block;
    background-color: rgb(241, 120, 34);
    border:0.2rem solid rgb(241, 120, 34);
  font-size: 1.1rem;
    text-decoration: none;
    
    padding:0.3rem 0.6rem;
    transition: 0.5s;
   }

   .read-more-btn{
    margin-top: 2rem;
   }

   .benefits-btn{
    margin-top: 0;
   }

   .about-link:hover{
    background-color: rgb(135, 66, 17);
    color: white;
    border:0.2rem solid rgb(135, 66, 17);
   }

   .line{
    width:8rem;
    height:0.3rem;
    margin: 0 auto;
    background-color: #d8232a;
    margin-bottom: 1.5rem;
   }
   .principles{
    padding:3rem 0;
    background-color: rgb(226, 226, 226);
   }

   .principles-center{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 90%;
    margin:0 auto;
   }

   .principle{
    flex:1 30rem;
    max-width: 35rem;
    margin:1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(205, 205, 205);
    text-align: center;
    transition: 0.5s;
   }

   .principle:hover{
    box-shadow: 0 0 0.7rem grey;
   }


   .principle-image, .principle-text{
    flex:1 15rem;
    max-width: 20rem;
    margin:0.5rem;
   }

  

   .principle-photo{
    width:100%;
    height:100%;
    object-fit: cover;
   }


   @media screen and (min-width:600px){
    .principle-image{
       height: 15rem;
    }

  }
   .principle-h3{
    color: rgb(241, 120, 34);
   }

   .principle-p{
    font-size: 1.1rem;
   }
/* 
   footer i{
    color:rgb(241, 120, 34);
   } */

.phone-icon{
    color:#d8232a; 
    margin-right: 0.5rem; 
}

/*TAB START*/
.tab-content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    /* margin-top: 2rem; */
    padding:3rem 0;
    /* background-color: #6165a8; */
}

.image, .text{
    flex:1 30rem;
    max-width: 30rem;
    margin:1rem;
    
}

.photo{
    width:100%;
    border-radius: 0.3rem;
}

.text{
    background-color: white;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.5rem rgb(3, 37, 46);
    
}

.buttons{
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

button{
    /* display: inline-block; */
    text-align: center;
    flex:1 5rem;
    cursor: pointer;
    padding:1rem 0;
    color:#292d77;
    color:white;
    background-color: #d8232a;
    border:none;
    font-size: 1.3rem;
    font-weight: bold;
transition: all 0.3s linear;
}

button:hover:not(.active){
    /* display: inline-block; */
   
    color:rgb(255, 255, 255);
    /* background-color: rgb(166, 81, 20); */
   
}

.active{
color:#292d77;
background-color: white;
}

.text-content{
    padding:2rem 1rem;
border-bottom-left-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
    display: none;
    /* transition: all 0.3s linear; */
}

.text-content.active{
    display: block;
}

/* h2{
    text-align: center;
    color:rgb(117, 117, 117);
} */

.tab-h2{
    text-align: center;
    color:#292d77;
}

/* .p2{
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color:rgb(6, 40, 40);
    
} */

.tab-p{
    text-align: center;
    color:rgb(75, 75, 75); 
    font-size: 1.2rem;
}

.tab-p .fa{
    color:#d8232a;
    margin-right: 0.5rem;
    font-size: 1.6rem;

}



/* .line{
    width:5rem;
    background-color: rgb(246, 200, 74);
    height:0.3rem;
    margin:0 auto;
    margin-top: 1rem;
} */

/* .fa{
    font-size: 1.9rem;
    margin-right: 0.5rem;
    color:rgb(9, 116, 105);
    
} */

.vision-btn{
    border-top-left-radius: 0.3rem;
}

.mission-btn{
    border-top-right-radius: 0.3rem;
}

.tab-content .d-block{
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.tab-content .carousel-control-next, .tab-content .carousel-control-prev, .tab-content .slide-h1, .tab-content .slide-h2, .tab-content .slide-p, .tab-content .slide-link {
display: none;
}


/*TAB END*/

/*OBJECTIVES START*/


.card1{
    padding:3rem 0;
   
    background: linear-gradient(rgba(0, 0, 0, 0.691), rgba(5, 60, 72, 0.254)), url('images/tech.jpeg');
    border:none;
    border-radius: 0;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.card-p{
    font-size: 1.2rem;
    color:rgb(44, 149, 44);
    text-align: center;
    margin-top: 1.5rem;
    color:#ffffff;
}

.card-h3{
  color:rgb(99, 205, 99);
  margin-top: 1rem;
}

.card1 .fa{
    color:rgb(241, 120, 34);
    font-size: 3rem;    
}

.icon-c{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2rem solid rgb(241, 120, 34);
    padding:1rem;
    width:5.5rem;
    height: 5.5rem;
    border-radius: 50%;
}

.card-center{
    width:90%;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card-content{
    margin:1rem;
    flex:1 30rem;
    max-width: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding:2rem 0;
    /* border: 0.2rem solid rrgb(18, 68, 114) */
    border-radius: 0.5rem;
    /* height: 25rem; */
    padding:1rem;
    /* box-shadow: 0 0 0.6rem rgb(6, 40, 85); */
  
}

.card1-p{
    color:rgb(114, 56, 18);
    font-size:1.3rem;
    margin:0 auto;
    max-width: 60rem;
    text-align: center;
    margin-bottom: 2rem;
    padding:0 1rem;
}

.card-content{
    background-color: rgba(255, 255, 255, 0.816);
    background-color: rgba(0, 0, 0, 0.409);
    padding:2rem 1rem;
}

@media screen and (min-width:1200px){
    .card-content{
        height:18rem;
    }
}

.objectives-h2{
    text-align: center;
    font-size: 2rem;
    color:rgb(241, 120, 34);
}


/*OBJECTIVES END*/

/*CORE VALUES START*/
.what-we-do{
    padding: 0rem 0;
    background-color: #e6f4d8;
    background: linear-gradient(rgb(211, 211, 211), rgb(215, 215, 215)),url('images/house.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.water-center{
    background: linear-gradient(rgba(0, 153, 255, 0), rgba(0, 0, 255, 0)), url('IMG/IMG-20220327-WA0025.jpg');
    background-position: center;
    background-size: cover;
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    margin:0 auto;
    flex-wrap: wrap;
    margin:0 auto;
    padding: 5rem 0;
}

.services-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.c-left-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-values-content{
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cvalues{
    text-align: center;
    font-size: 2rem;
    color:rgb(241, 120, 34);
}

.core-values-list li{
    font-size: 1.2rem;
}

/*CORE VALUES END*/

/*SERVICES START*/

.services-container{
    padding:3rem 0;
    background-color: #ebebeb;
}

.services-center{
    max-width:90%;
    margin:0 auto;
    
}

.even-service{
    display: flex;
    justify-content: space-around;
   align-items: center;
   flex-wrap: wrap;
}

.odd-service{
    flex-direction: row-reverse;
    margin-top: 2rem;
}

.inner-service{
    margin-top: 2rem; 
}



.service-image, .service-text{
flex: 1 30rem;
max-width: 30rem;
margin:1rem;

}

.service-text{
    color:rgb(241, 120, 34);
    text-align: center;
}

.service-photo{
    width:100%;
}

/*SERVICES END*/


  /**********************/
   /*--CONTACT FORM--**/
   /*********************/
   .contact-form {
    background: linear-gradient(rgba(0, 0, 0, 0.596),rgba(0, 0, 0, 0.596)), url('images/1.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    border-top: 0.4rem solid rgb(228, 110, 19);
    
 }
 
 
 
 
 
 
 
 form {
 display: flex;
 flex-direction: column;
 padding:3rem 0;
 
 
 }
 
 .form-control {
     width: 25rem;
    
     font-size: 1.5rem;
     outline: none;
     border: none;
     box-shadow: 0 0 0.4rem rgb(63, 62, 61);
     border-radius: 0.2rem;
     
     padding: 0.5rem 0;
     padding-left: 0.5rem;
     color:rgb(146, 81, 7);
 }
 
 .submit{
     border:none;
     background-color: rgb(146, 81, 7);
     color:rgb(255, 255, 255);
     padding: 0.8rem 0;
     border:0.2rem solid rgb(146, 81, 7);
     font-size: 1.3rem;
     transition: 0.5s all;
     
 }
 
 .submit:hover {
     border:0.2rem solid rgb(146, 81, 7);
     color: rgb(146, 81, 7);
     background-color: transparent; 
 }
 
 @media screen and (max-width:507px){
     .form-control {
         width: 100%;
        
     }
 
     form {
         padding-left:0.5rem;
         padding-right:0.5rem;
     }
 
 }

 @media screen and (max-width:480px){
     .contact-email {
         font-size: 1.1rem;
     }

     .contact-section{
      
        width:95%;
        
    }


     .contact-details {
      
        
       
        padding:2rem 1rem;
       
    
     
    
    }

 }

 

 .top-bar-span{
    font-style: italic;
 } */


 
  /**********************/
   /*--POP UP--**/
   /*********************/
.lightbox {
   
    padding-top: 2rem;
    display: none;
    
}

.popup-h2 {
    text-align: center;
    letter-spacing: 0.1rem;
    color:rgb(241, 120, 34);
    margin-bottom: 1rem;
}

.popup-p {
    text-align: justify;
    font-size: 1.1rem;
}
.popup-p, .lightbox ol, .lightbox ul{
    color: rgb(77, 77, 77);
    line-height: 1.5rem;
    font-size: 1.1rem;
}

.lightbox ol, .lightbox ul {
    width:60%;
    margin: 0 auto;
}

/*BENEFITS*/

.benefits-cover{
    padding:3rem 0;
    background-color: #d7d6d6;
}

.benefits-center{
    max-width: 50rem;
    margin:0 auto;
    text-align: center;
    
}

.benefits-h2{
    color:#292d77;
    text-align: center;
}

.benefits-p{
    color:rgb(241, 120, 34);
    font-size: 1.3rem;
    text-align: center;
    font-style: italic;
    margin-top: 1.5rem;
   
}

.benefits-image{
   max-width: 40rem;
   margin: 0 auto;
}

.benefits-photo{
    width:100%;
}

.benefits-h1{
    font-size: 2rem;
}

.benefits-containter{
    padding:3rem 0;
    background-color: rgb(236, 236, 236);
   
}

.benefits-containter1{
    background-color: #ffffff;
}

.benefits-center1{
    max-width: 80%;
    margin: 0 auto;

}

@media screen and (max-width:400px){
    .benefits-center1{
        max-width: 85%;}
        
    
}


.benefits-para{
    color:rgb(68, 68, 68);
    text-align: justify;
}

.benefits-ul li{
    color:rgb(68, 68, 68);
    max-width: 12rem;
    margin: 0 auto;
   
}

.ims-ul li{
    max-width:30rem;
}

.ims-ul1 li{
    max-width: 100%;
}


/*Menu Items*/

nav{
    padding:1rem 0;
    /* background-color: #292d77aa; */
    position: absolute;
    z-index: 2;
    top:0;
    left:0;
    width:100%;
}

.nav-content{
    max-width: 90%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #d8232a; */
    /* padding:1rem 0; */
    flex-wrap: wrap;
}

.logo-image{
    width:100%;
}

.logo-box{
    width:10rem;
    
}

.menu-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    list-style: none;   
}

.menu-item{
    margin-left: 2rem;
    padding-bottom: 1rem;
}

.menu-link{
    color:white;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
}

.menu-link:hover{
    color: #ffffff;
}

.menu-link::after{
    content: "";
    background-color: #d8232a;
    position: absolute;
    height:0.2rem;
    width:100%;
    top:1.5rem;
    left:0;
    transition: 0.5s;
    transform: scaleX(0);
    transform-origin: left;

}

 .menu-link:hover::after{  
    transform: scaleX(1);
}

.active-menu-item::after{
    content: "";
        background-color: #d8232a;
        position: absolute;
        height: 0.2rem;
        width: 100%;
        top: 1.5rem;
        left: 0;
        transition: 0.5s;
        transform: scaleX(1);
        transform-origin: left;

}

.fa-search{
    color:white;
    cursor: pointer;
}
.slide-h1{
    text-shadow: 0 0 0.4rem black;
}
 
@media screen and (max-width:450px){
.slide-h1 {
       font-size: 1.3rem;
     margin:0 auto;
    }
}

.fixed-nav{
background-color: white;

width:100%;
position: fixed;

top:0;
left:0;
box-shadow: 0 0 0.5rem black;
padding:0.5rem 0;
padding-bottom: 0;
padding-top: 0;
height: 4.2rem;
}

.fixed-nav .menu-link{
    color:#292d77;
}

.fixed-nav .logo-box {
    width:4.5rem;
}

.fixed-nav .menu-items{
    margin-top: 1.4rem;
   
}

.fixed-nav .fa-search{
    color:#292d77;
}

.drop-down-parent{
    position: relative;
}

.drop-down-ul{
    position: absolute;
    display: none;
    /* background-color: #ffffff; */
    list-style: none;
    min-width: 16.5rem;
    min-width: 12rem;
    top:2rem;
    box-shadow: 0 0 0.3rem black;
    padding-left: 0;;
 /* z-index: 999999999999!important; */
}

@media screen and (min-width:1000px){

    .drop-down-ul {
         
            min-width: 16.5rem;
            
    
        }

}

.drop-down-ul2{
min-width: 11.5rem;
}

.drop-down-ul3{
    min-width: 12rem;
}

.drop-down-ul li{
    background-color: #ffffff;
    padding-left: 1rem;
    /* box-shadow: 0 0 0.4rem black; */
    border-top: 0.1rem solid rgb(188, 188, 188);
    padding:0.5rem 1rem;
}

.drop-down-ul li a {
    color:#292d77;
    text-decoration: none;
    transition: 0.5s;
    
    display: inline-block;
    width: 100%;;
    
}

.drop-down-ul li a:hover {
    color: #d8232a;
    

}

.drop-down-ul li:first-child {
    border-top: none;
    
    padding-top: 0.5rem;
}

.drop-down-ul li:last-child {

    padding-bottom: 0.5rem;
}

.drop-down-parent:hover .drop-down-ul{
    display: block;
  
}

.nav-toggle, .nav-close{
    color:white;
    font-size: 3rem;
    /* font-size: 2rem; */
    display: none;
    cursor: pointer;
}

@media screen and (max-width:1000px){
.nav-toggle {
        display: block;
    }

.nav-toggle.hide{
    display: none;
}

.nav-close.show{
    display: block;
}

.menu-items{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    border-radius: 0.5rem;
    /* overflow: visible; */
 
    
}

.menu-link{
    color:#292d77;
    text-align: center;
}

.menu-link:hover {
    color: #292d77;
    text-align: center;
}

.fa-search {
    color: #292d77;
}

.menu-items.show{
/* padding:1rem 0; */
padding-top: 1rem ;
    height: auto;
}

.logo-box{
    width:9rem;
}

.fixed-nav{
    padding-bottom: 0;
}

.menu-item{
    margin-left: 0;
    
}

.drop-down-ul{
    
    z-index: 999;
    /* background-color: aqua!important; */
    
}

}


.fixed-nav .nav-toggle {
    color: #292d77;
}

.fixed-nav .nav-close {
    color: #292d77;
}

.carousel-indicators{
    display: none!important;
}

.menu-form-parent{
    position: relative;
    padding-bottom: 0.5rem;
}

.menu-input{
    position: absolute;
    top:1.5rem;
    left:-8.5rem;
border-radius: 0.2rem;
    box-shadow: 0 0 0.3rem #292d77;
    border: none;
    padding:0.2rem 0.5rem;
    display: none;
}

.menu-form-parent:hover .menu-input {

    display: block;
}

@media screen and (max-width:1000px){
    .menu-input {
            
            left: 0rem;
            
        }
}

/*Home Services*/
.home-services{
    padding:3rem 0;
    padding-bottom: 1rem;
}

.home-h2{
    color:#292d77;
    text-align: center;
}

.home-services-center{
    width:90vw;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin:0 auto;
}

.projects-center{
    /* background-color: #9e2024; */
    justify-content: center;
    width: 100vw;
    max-width:100% ;
    align-items: flex-start;
}

.business-areas-content{
    width:100%;
    max-width: 95%;
    justify-content: center;
    /* background-color: aqua; */
}

.services-center1{
    align-items: flex-start;
}

.home-service{
    flex:1 15rem;
    max-width: 15rem;
    margin:1rem;
    
}

.project-image{
    flex: 1 15rem;
        max-width: 18rem;
        margin: 1rem;

}

.business-area{
    flex: 1 12rem;
    max-width: 14rem;
}

.home-service-image{
    width:100%;
  
    height: 12rem;
    object-fit: cover;
}



.home-services-center a{
  text-decoration: none;
}



.home-service-p{
    color:#231f20;
    text-align:center;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 1rem;
}

.projects-p{
    font-weight: normal;
}
.services-page-p{
    color:white;
    background-color: #d8232a;
    padding:0.5rem 0;
}


/*Home Fields*/
.home-fields{
    padding:3rem 0;
    padding-top: 0;
}

.home-fields a{
    text-decoration: none;
    color:white;
    transition: 0.5s;    
}

.home-fields a:hover {
   
    color: #d8232a;
   
}



.home-fields-content{
    margin-top: 1.5rem;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
}

.home-field{
    flex:1 10rem;
    /* flex: 1 13rem; */
    max-width: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:white;
}

@media screen and (max-width:400px){
    .home-field{
        flex: 1 15rem;
        max-width: 30rem;
    }
}

.home-field h3{
    text-shadow: 0 0 0.3rem black;
}

.home-field1{
background: linear-gradient(rgba(0, 0, 0, 0.295),rgba(0, 0, 0, 0.295)), url('images/water3.jpg'); 
 background-position: center;
background-size: cover;
height:12rem;
}

.home-field1a {
    background: linear-gradient(rgba(0, 0, 0, 0.295), rgba(0, 0, 0, 0.295)), url('images/env.jpg');
    background-position: center;
    background-size: cover;
    height: 12rem;
}

.home-field2 {
    background: linear-gradient(rgba(0, 0, 0, 0.293), rgba(0, 0, 0, 0.297)), url('images/energy.jpg');
    background-position: center;
    background-size: cover;
    height: 12rem;
}

.home-field3 {
    background: linear-gradient(rgba(0, 0, 0, 0.292), rgba(0, 0, 0, 0.292)), url('images/trans.jpeg');
    background-position: center;
    background-size: cover;
    height: 12rem;
}

.home-field4 {
    background: linear-gradient(rgba(0, 0, 0, 0.297), rgba(0, 0, 0, 0.292)), url('images/oil.jpg');
    background-position: center;
    background-size: cover;
    height: 12rem;
}

.home-field5 {
    background: linear-gradient(rgba(0, 0, 0, 0.295), rgba(0, 0, 0, 0.295)), url('images/buildings.jpg');
    background-position: center;
    background-size: cover;
    height: 12rem;
}

.floating-wpp{
    z-index: 999;
}

.other-headers .d-block{
    height:19rem;
    object-fit: cover;
}

.other-headers .carousel-control-prev,.other-headers .carousel-control-next{
    display: none;
}

.services-ul{
color:#231f20;

}

.other-headers .slide-h1{
    text-shadow: 0 0 0.3rem black;
   
}

.fcf-btn-block{
    background-color: #d8232a!important;
    transition: 0.5s;
    border:none!important;
}

.fcf-btn-block:hover {
    background-color: #80181c!important;
    
}

/*Accordion*/
main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 40rem; */
    flex: 1 30rem;
    max-width: 40rem;

    padding: 1rem;
    background-color: #17458F;

}

.accordion {
    /* width: 100%; */
    width:90vw;
    max-width:60rem;
    margin:0 auto;
    padding-bottom: 2rem;
  

}

.accordion-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    padding: 0.5rem;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    border-radius: 0.3rem;
}

.accordion-article {
    margin-top: 2rem;
    background-color: white;
    border-radius: 0.3rem;
    /* padding:1rem; */
    box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.681);
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;

}

.accordion-p {
    border-top: 0.15rem solid #d8232a;
    padding-top: 0.5rem;
    display: none;
    text-align:justify;

    border-bottom-left-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
    padding: 0.5rem;
    transition: 0.5s;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #434343;
}


.show .accordion-p {
    display: block;
}

.fa-chevron-down {
    transition: 0.5s;
    color: #d8232a;
}

.rotate .fa-chevron-down {
    display: inline-block;
    transform: rotate(180deg);

}

.accordion-h3 {
    padding-bottom: 0.5rem;

    padding-top: 0.5rem;
    font-family: 'Lato', sans-serif;
    color: rgb(183, 121, 7);
    color: #292d77;
    /* color:#17458F;
    color:#01B4E7; */
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: bold;
}

.overview{
    padding-bottom: 0;
    /* background-color: #231f20; */
}

.organo{
    width:100%;
}




