@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arimo', sans-serif;
    text-decoration: none;

}
::selection{
    color: #000000;
    background: #eecd01;
  }




/* .......Navbar messege........ */
/* .nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
    color: #fff;
}

.line{
    height: 25px;
    width: 1px;
    background-color: #fff;
    margin-right: 15px;
}

#location{
    color: #fff;
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn .fa-brands{
    color: #fff;
    margin-right: 20px;
    font-size: 22px;
   
    &:hover{
      color: #eecd01;
    }
}

.iso{
    height: 100%;
}

.iso img{
    height: 55px;
}
 */


/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 100px;
    padding: 0 50px;
    background-color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;

    position: fixed;  
    top: 0;          
    left: 0;   
    
    box-shadow: rgba(0, 0, 0, 0.139) 0px 10px 36px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 1px;

}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 90px;
}


.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 30px;
}

.menu ul li a {
    color: #303433;
    text-decoration: none;
    padding: 20px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;

    &:hover{
        color: #eecd01;
    }
}











.fa{
    transition: all .5s ease;
}

.menu .drop:hover .fa{
    transform: rotate(180deg);
}


.dropdown-menu{
    display: none;
    border-radius: 5px;
    background-color: #fff;
}

.drop:hover .dropdown-menu{
    display: block;
    left: 0;
    top: 100%;
    background-color: #fff;
    text-decoration: none;
    margin-left: -15px;
}












/* phone view menu//////// */


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #eecd01;
    color: white;
    z-index: 1000000000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    padding: 20px 20px 50px 20px;
}

.sidebar-content {
    padding: 20px;
    font-size: 30px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 730px) {
  .nav-container .logo img{
    height: 130px;
}
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        font-size: 70px;
        background-color: #eecd01;
        color: #ffffff;
        text-align: end;
        padding: 8px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

   
    .sidebar-content {
        font-size: 40px;
    }
    .sidebar-content ul li a {
        font-size: 40px;
    }
    .drop .dropdown-menu ul li a{
        font-size: 35px;
        
    }



}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #ffffff;
    width: auto;
    padding: 25px 0;
    border-radius: 2px;
    border-bottom: 4px solid #ffdd00;

}

.dropdown-menu ul li a{
    font-size: 16px;
    padding: 10px 40px 10px 20px;
    width: auto;
    color: #000000;
}







.sub-drop .sub-menu{
  display: none;
  top: 0%;
  left: 80%;
  width: 300px;
  margin-top: 30px;
}

.dropdown-menu .sub-drop:hover .sub-menu{
  display: block;
}

.sub-drop:hover .fa-solid{
  transform: rotate(90deg);
  transition: all .3s ease;
}

@media (max-width: 730px){
  .sub-drop .sub-menu{
      width: 550px;
      margin-left: 50px;
      background-color: #f5f5f5;
  }
}








/* ////////// hero banner ///////////// */


.hero-banner{
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: url(/images/contact-us-banner.png);
    background-size: cover;
    background-position: center;

}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #18242e1b;
    padding: 50px;
}
.hero-heading{
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 40px 40px;
}

.hero-content .hero-heading h1{
    color: #fff;
    font-size: 70px;
    text-align: center;

}


.banner-link{
    width: 40%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-heading a{
    color: #fff;
    font-size: 17px;
    text-align: start;
    font-weight: 600;
    padding: 0px 7px;
}

.hero-heading .fa-solid{
    color: #fff;
    font-size: 17px;
}

.hero-heading a:hover{
    color: #eecd01;
}











/* ////// Contact us form/////// */


.contact-heading{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;  
  padding: 50px 100px 0px 60px;
}

.contact-heading h1{
  font-size: 40px;
  color: #212d45;
  font-weight: 500;
}

.contact-heading h1 span{
  color: #eecd01;
}

.contact-heading a,
.contact-heading p{
  font-size: 16px;
  color: #666666;
  padding-top: 20px;
  line-height: 1.6;
}





.address-details-container{
  width: 30%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}


.add-details{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 33px 0 15px 0;

}

.add-icon{
  width: 50px;
  height: 50px;
  color: #666666;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(189, 189, 189);

}

.add-details:hover .add-icon{
  color: #fff;
  background-color: #eecd01;
  border: 1px solid #eecd01;
}

.add-heading-details{
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin-left: 10px;
}

.add-heading-details h1{
  font-size: 17px;
  color: #101010;
}

.add-heading-details a,
.add-heading-details p{
  font-size: 15px;
  color: #696969;
  margin-top: 7px;
  line-height: 1.4;
}






/* ////// form /////////// */

.form-container{
  width: 100%;
  display: flex;
  padding: 30px 10px;
  height: auto;
  /* background: #def1fb98; */
  align-items: start;
  justify-content:space-around;
  flex-direction: row-reverse;
}

.wrapper{
  width: 65%;
  height: 600px;
  background: transparent;
  color: #fff;
  border-radius: 5px;
}
.wrapper header{
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
}
.wrapper form{
  margin: 35px 30px;
}
.wrapper form.disabled{
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field{
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field{
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i{
  position: absolute;
  top: 50%;
  left: 18px;
  color: #696969;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea{
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border: 1px solid #a2a2a2;
}
.field input::placeholder,
.message textarea::placeholder{
  color: #696969;
  
}
.field input:focus,
.message textarea:focus{
  padding-left: 47px;
  border: 2px solid #eecd01;
}
.field input:focus ~ i,
.message textarea:focus ~ i{
  color: #eecd01;
}
form .message{
  position: relative;
}
form .message i{
  top: 30px;
  font-size: 20px;
}
form .message textarea{
  min-height: 220px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar{
  width: 0px;
}
.message textarea:focus{
  padding-top: 14px;
}
form .button-area{
  margin: 25px 0;
  display: flex;
  align-items: center;
}
.button-area button{
  color: #212d45;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  padding: 13px 25px;
  background: #eecd01;
  transition: background 0.3s ease;
}
.button-area button:hover{
  background: #303433;
  color: #fff;
}
.button-area span{
  font-size: 17px;
  margin-left: 30px;
  display: none;
}


/* // Captcha /// */

.captcha-container {
  margin: 2px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 50px;
  gap: 10px;
}
.captcha-box {
  font-weight: bold;
  font-size: 18px;
  padding: 8px;
  color: #000;
  border-radius: 2px;
  height: 35px;
  width: 80px;
  position: relative;
  overflow: hidden;
  user-select: none; 
  -webkit-user-select: none; 
  -ms-user-select: none; 
}
.captcha-over{
  position: absolute;
  height: 35px;
  width: 80px;
  background: #c9c9c954;
  border: 1px solid #ccc;

}
.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}
#captchaInput{
  padding: 4px;
  font-size: 20px;
}

.captcha-container button {
  padding: 6px 7px;
  background: #c3c3c3;
  color: #000;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;

  display: flex;
  justify-content: center;
  align-items: center;
}

.captcha-container button img{
  width: 25px;
  height: auto;
}







@media (max-width: 600px){
  .form-container{
      height: 1300px;
  }
  .wrapper{
      height: 1200px;
  }
  .wrapper header{
    text-align: center;
    font-size: 50px;
  }
  .wrapper form{
    margin: 45px 20px;
    
  }
  form .dbl-field{
    flex-direction: column;
    margin-bottom: 0px;
  }
  .field .fas{
      font-size: 40px;
  }
  .message .material-icons{
      font-size: 50px;
  }
  form .dbl-field .field{
    width: 100%;
    height: 115px;
    margin-bottom: 30px;
  }
  form .field input{
      font-size: 40px;
     padding-left: 80px;
    }
  form .message textarea{
    resize: none;
    font-size: 40px;
    height: 600px;
    padding-left: 80px;
  }
  form .button-area{
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button{
    width: 100%;
    height: 85px;
    padding: 11px 0;
    font-size: 40px;
  }
  .button-area span{
    margin: 20px 0 0;
    text-align: center;
    font-size: 40px;
  }


  
.captcha-container{
  margin-top: 50px;
  margin-bottom: 30px;
}

.captcha-over,
.captcha-box{
  font-size: 40px;
  width: 200px;
  height: 60px;
}
.captcha-container input{
  height: 60px;
  width: 610px;
}
#captchaInput{
  font-size: 40px;
}
.captcha-container button{
  height: 60px;
  width: 90px;
}
.captcha-container button img{
  height: 50px;
  width: auto;
}

}











/* ///////////map//////////// */

.map{
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.map iframe{
  width: 100%;
  height: 600px;
}



























/* ////////// Footer ///////// */





.footer-container{
    margin-top: 60px;
    background-color: #212d45;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
}

.footer-box{
    width: 95%;
    height: auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 30%;
}

.footer-logo img{
    height: 90px;
}

.fsize p{
    color: #eecd01;
    font-size: 26px;
    font-weight: 600;
    padding: 30px 0;
}

/* .fsize hr{
    margin: 20px 0 20px 0;
    width: 240px;
    border: 1px solid #f37930;

} */

.fsize ul li{
    list-style: none;
    line-height: 1.5;
    margin-bottom: 10px;
    width: 260px;
    font-size: 16px;
    color: #ffffff;
    transition: all .3s ease;
}

.fsize ul li a{
    color: #fff;
    transition: all .3s ease;
    font-size: 16px;
}

.fsize ul li a:hover{
    cursor: pointer;
    padding-left: 7px;
    color: #eecd01;
}
.fbox3 .cont-name{
    font-size: 16px;
    color: #ffffff;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #ffffff;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #ffffff;
}




.footer1{
    height: 80px;
    border-top: 1px solid #eecd01;
    width: 100%;
    background-color: #212d45;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.footer1 a{
    color: #fff;
    text-decoration: none;

    &:hover{
        color: #eecd01;
    }
}

















/* /////////// Responcive view ////////// */




@media(max-width: 1218px){

  .nav-container,
  .hero-banner,
  .contact-heading,
  .form-container,
  .map,
  .footer-container,
  .footer1{
    width: 1064px;
  }
}





/* ///////// Phone view ///////// */





@media(max-width: 600px){
  
  .nav-container{
    height: 250px;
  }
  .nav-container .logo img{
    height: 200px;
  }

  


.hero-banner{
  height: 1300px;
}
.hero-content .hero-heading h1{
  font-size: 90px;
}
.banner-link{
  width: 100%;
}
.hero-heading a{
  font-size: 45px;
}



.contact-heading h1{
  font-size: 75px;
}
.contact-heading a,
.contact-heading p{
  font-size: 40px;
}



.form-container{
  flex-direction: column;
  height: auto;
  margin-top: 90px;
}
.address-details-container{
  width: 100%;
  padding: 50px 40px;
}


.address-details-container{
  width: 100%;
}
.add-icon{
  width: 150px;
  height: 150px;
  border: 1px solid rgb(130, 130, 130);
  margin-right: 30px;
}
.add-icon .fa-regular,
.add-icon .fa-solid{
  font-size: 50px;
}
.add-heading-details h1{
  font-size: 45px;
}
.add-heading-details a,
.add-heading-details p{
  font-size: 40px;
}
.wrapper{
  width: 95%;
  height: auto;
  margin-left: 20px;
}

.map iframe{
  width: 100%;
  height: 900px;
}




    
      
.footer-box{
  flex-direction: column;
  height: auto;
  padding-bottom: 30px;
}
.fsize .footer-logo img{
  width: 300px;
  height: auto;
  margin: 50px 10px;
}
.fsize{
  width: 100%;
}
.fsize p{
  font-size: 50px;
  margin-top: 90px
}
.fsize hr{
  width: 95%;
}
.fsize ul li{
  font-size: 40px;
  width: 100%;
}
.fsize ul li a{
  font-size: 40px;
  width: 100%;
}
.fsize .cont-name{
  font-size: 40px;
}



.footer1{
  height: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.footer1 p{
  font-size: 40px;
  text-align: center;
}

.footer1 a{
  font-size: 40px;
  text-align: center;
}

}