@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    display: inline-block;
    text-decoration: none;
}
li{
    list-style: none;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
body{
  overflow-x: hidden;
}
:root{
--darkblue:#36689E;
--lightblue:#F3FAFA;
}

.container{
    max-width: 1305px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.container1{
    max-width: 1261px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* navbar */
.navbar{
     font-family: "Roboto", sans-serif;
}
.navbrand img{
    width: 115px;
}
.navlist li{
    padding: 0 18px;
    font-size: 18px;
}
.navlist li a{
    color: black;
}
.navlist li a:hover{
    color: var(--darkblue) !important;
}
.navcontact{
    background-color: var(--darkblue);
    color: white;
    padding: 8px 20px;
}
.navcontact:hover{
    background-color: black;
    color: white;
}
.navdigit{
    border: 1px solid gray;
     padding: 8px 20px;
     margin-left: 20px;
}
.navdigit:hover{
    background-color: var(--darkblue);
    color: white;
}
/* contact */
.cont_head{
    margin-top: 30px;
    position: relative;
}
.cont_head::before{
    content: "";
    background: var(--darkblue);
    height: 3px;
    width: 11%;
    position: absolute;
    margin-top: 40px;
}
.form-control{
    border: none;
    background-color: #F4F4F4;
    padding: 15px 10px;
    margin-top: 15px;
}
.form-control:focus{
    box-shadow: none;
    outline: 0;
}
.form-control:hover{
   box-shadow: 0 0 10px gray;
}
.sub{
  background-color: var(--darkblue);
  color: white;
  padding: 10px 30px;
  border: 0;
  margin-bottom: 50px;
}
.error{
  color: rgb(248, 84, 84);
}
.gmap{
  max-width: 1600px;
  width: 100%;
  height: 500px;
}

   /* footer */
  .footer{
    padding-top: 50px;
    background-color: #F3FAFA;
  }
  .mainfot{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .fot1 img{
    width: 160px;
  }
  .fot1 p{
    max-width: 454px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin: 20px 0;
    color: rgb(86, 86, 86);
    text-transform: capitalize;
     font-family: "Roboto", sans-serif; 
  }
  .fot1 a{
    color: black;
    padding-left: 10px;
    font-size: 20px;
  }
  .fot1 a:hover{
    color: var(--darkblue);
  }
  .fot2 p{
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    margin-left: 30px;
    margin-bottom: 0;
  }
  .fot2 ul li a{
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: rgb(100, 99, 99);
    padding-top: 18px;
  }
  .fot2 a:hover{
    color: #36689E;
  }
  .lastfot p{
    text-align: center;
    font-size: 14px;
    color: rgb(91, 90, 90);
     font-family: "Roboto", sans-serif;
  }





@media screen and (max-width:1199px){
  .navlist li{
   padding:0 7px;
   font-size: 16px;
  }
}
@media screen  and (max-width:991px){
 

}
@media screen and (max-width:767px) {
 
  .mainfot{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width:489px) {
  .navdigit{
    margin-left: 0;
    margin-top: 4px;
  }
 
}