@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
::selection{
    color: #000000;
    background: #ffc03d;
  }

/* .......Navbar messege........ */
.nav-msg{
    width: 100%;
    height: 55px;
    color: #ffffff;
    background-color:  #ffc03d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-msg a{
    color: #4b4f58;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
    margin-right: 15px;
    color: #4b4f58;
}

.line{
    height: 25px;
    width: 1px;
    background-color: #4b4f58;
    margin-right: 15px;
}

#location{
    color: #4b4f58;
    
}


.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.subnav-btn .fa-brands{
  color: #4b4b4b;
  margin-right: 20px;
  font-size: 22px;
  
  &:hover{
    color: #fff;
  }
}


/* .....navbar...... */



.nav-container{
    width: 100%;
    height: 110px;
    padding: 0 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #4b4f58;

    position: sticky;
    top: -2px;
    z-index: 10000;


    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 130px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu span{
    padding: 10px 20px;
    background-color: #ffc03d;
    color: #4b4f58;
    background-size: 260%;
    border-radius: 5px;
}



.menu ul li a {
    color: #4b4f58;
    text-decoration: none;
    padding: 10px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    background: linear-gradient(to left, #ffffff 50%, #ffc03d 50%) right;
    background-size: 260%;
    border-radius: 5px;
    text-transform: uppercase;
}

.menu ul li a:hover{
    background-position: left;
    color: #4b4f58;
}







.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;
}

.dropdown-menu ul{
    display: block;
    /* margin: 5px; */
    position: absolute;
    z-index: 100;
    background-color: rgb(216, 216, 216);
    width: 230px;
    padding: 20px 0;
    border-radius: 9px;
}

.dropdown-menu ul li a{
    font-size: 14px;
    width: 190px;
}

.dropdown-menu ul li{
    /* width: 120px; */
    padding: 3px 20px;
    border-radius: 3px;
    border: none;
}

.dropdown-menu ul li:hover{
    box-shadow: .5px .5px 3px  rgba(190, 190, 190, 0.87);
}







/* 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: #212d45;
    color: white;
    z-index: 100000;
    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: white;
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 60px;
}

@media (max-width: 600px) {
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        font-size: 65px;
        background-color: #242d24;
        color: #ffffff;
        text-align: end;
        padding: 10px;
        border-radius: 3px;
    }
    .left-section{
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .sidebar-content ul li a{
      font-size: 40px;
    }
}

.sidebar.open {
    display: block;
    transform: translateX(0);
}

.dropdown-menu ul{
    display: block;
    position: absolute;
    z-index: 100;
    background-color: #242d24;
    width: auto;
    padding: 20px 0;
    border-radius: 9px;
}
















/* ////////// hero banner ///////////// */


.hero-banner{
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-image: url(/images/Contact-us-banner.png);
    background-size: cover;
    background-position: center right;

}

.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #212d4556;
    padding-top: 50px;
}
.hero-heading{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.hero-content .hero-heading h1{
    color: #fff;
    font-size: 90px;
    margin-bottom: 25px;
    text-align: center;

}















/* ////// Contact us form/////// */


.form-container{
    display: flex;
    padding: 50px 10px;
    height: auto;
    background: #ffffff;
    align-items: center;
    justify-content: center;
  }
  
  .wrapper{
    width: 1000px;
    height: auto;
    background: #212d45;
    color: #ffc03d;
    border-radius: 5px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
  }
  .wrapper header{
    font-size: 22px;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #ffc03d;
  }
  .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: #212d45;
    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-radius: 5px;
    border: 1px solid #ccc;
  }
  .field input::placeholder,
  .message textarea::placeholder{
    color: #212d45;
    
  }
  .field input:focus,
  .message textarea:focus{
    padding-left: 47px;
    border: 2px solid #ffc03d;
  }
  .field input:focus ~ i,
  .message textarea:focus ~ i{
    color: #ffc03d;
  }
  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;
    border-radius: 5px;
    padding: 13px 25px;
    background: #ffc03d;
    transition: background 0.3s ease;
  }
  .button-area button:hover{
    background: #ffae00;
  }
  .button-area span{
    font-size: 17px;
    margin-left: 30px;
    display: none;
  }





  
.captcha-container {
  margin: 2px 0;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 45px;
  gap: 10px;
}
.captcha-box {
  font-weight: bold;
  font-size: 18px;
  padding: 8px;
  color: #ffffff;
  border-radius: 2px;
  height: 35px;
  width: 80px;
  position: relative;
  overflow: hidden;
  user-select: none; 
  -webkit-user-select: none; 
  -ms-user-select: none;
  display: flex;
  justify-content: center;
  align-items: center; 
}
.captcha-over{
  position: absolute;
  height: 35px;
  width: 80px;
  background: #c9c9c93f;
  border: 1px solid #ccc;

}
.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}
#captchaInput{
  padding: 3px;
  font-size: 17px;
}

.captcha-container button {
  padding: 5px 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;
}

  }
  
  





  
  
  
  
  /* ///////// Address /////////////// */





  .address-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
  }

  .address-details{
    width: 30%;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }

  .address-details h1{
    font-size: 30px;
    color: #ffc03d;
  }

  .address-name h2{
    font-size: 24px;
    color: #212d45;
  }

  .address-name p{
    font-size: 15px;
    color: #4b4f58;
  }

  .address-name a{
    color: #4b4b4b;
    text-decoration: none;
    font-size: 15px;
  }

  .address-details button{
    font-size: 15px;
    padding: 10px 40px;
    border: none;
    background-color: #ffc03d;
    color: #212d45;
    margin-top: 30px;

    &:hover{
        background-color: #ffae00;
        cursor: pointer;
    }
  }



  .address-map{
    width: 70%;
    height: 470px;
  }

  .address-map iframe{
    width: 100%;
    height: 100%;
  }












/* ////////// Footer ///////// */





.footer-container{
    background-color: #212d45;
    width: 100%;
    display: flex;
    justify-content:center ;
    padding-top: 20px;
}

.footer-box{
    width: 95%;
    height: 350px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 30%;
}
.fsize p{
    margin-top: 10px;
    color: #ffc03d;
    font-size: 23px;
    font-family: 900;
}

.fsize hr{
    margin: 20px 0 20px 0;
    width: 250px;
    border: 1px solid #ffc03d;

}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    width: 260px;
    font-size: 15px;
    color: #ffffff;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.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 #ffc03d;
    width: 100%;
    background-color: #212d45;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.footer1 a{
    color: #fff;
    text-decoration: none;

    &:hover{
        color: #ffae00;
    }
}








/* ///////////// Responsive view /////////// */












@media(max-width: 1064px) {
    .nav-msg{
        width: 1064px;
    }

    .nav-container{
        width: 1064px;
    }
    
    .hero-banner{
        width: 1064px;
    }


    .form-container{
      width: 1064px;
    }
    .address-container{
      width: 1064px;
    }


    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }
}















/* ////////// Responcive phone view ///////////// */







@media(max-width: 600px){
    .nav-msg a{
        font-size: 40px;
  }
  .nav-msg p{
    font-size: 40px;
  }
  #location{
    margin-left: 25px;
  }
  #phone-hide{
    display: none;
  }
  .subnav-btn .fa-brands{
    font-size: 40px;
  }



  .nav-msg{
    height: 100px;
  }
  .nav-container{
    height: 250px;
  }
  .nav-container .logo img{
    height: 270px;
  }






  .hero-banner{
    height: 1100px;
  }
  .hero-content .hero-heading h1{
    font-size: 70px;
  }




  

  .address-container{
    flex-direction: column;
    padding: 0;
  }
  .address-details{
    width: 100%;
    height: auto;
    padding: 50px 60px;
  }
  .address-name{
    padding: 40px 0;
  }
  .address-details h1{
    font-size: 60px;
    padding: 50px 0;
  }
  .address-name h2{
    font-size: 50px;
  }
  .address-name p{
    font-size: 40px;
  }
  .address-name a{
    font-size: 40px;
  }
  .address-details button{
    font-size: 35px;
    margin-bottom: 70px;
  }

  .address-map{
    width: 100%;
    height: 1000px;

  }







  
.footer-box{
    flex-direction: column;
    height: auto;
    padding-bottom: 30px;
  }
  .fsize{
    width: 100%;
  }
  .fsize p{
    font-size: 50px;
    margin-top: 90px
  }
  .fsize hr{
    width: 95%;
  }
  .fsize ul li{
    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;
  }
  
}

