@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Electrolize');
@import url('https://fonts.googleapis.com/css?family=Coda:400,800|Michroma|PT+Sans:400,400i,700,700i|Squada+One');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
* {
   margin: 0;
   /*font-family: 'Raleway', sans-serif;
    font-family: 'Electrolize', sans-serif;
    font-family: 'PT Sans', sans-serif;*/
    font-family: 'Roboto', sans-serif;
}
p {
   line-height: 1.5;
   font-weight: 400;
}
/* Header Style */
.main_menu ul li:nth-child(5) a{
   padding-bottom: 15px;
   border-bottom: 2px solid #005386;
}
.banner{
   background: url(../images/innerpage/contact-banner.jpg);
}
/* Works Style */
.contact_us{
   width: 80%;
   margin: 50px auto;
   display: flex;
   justify-content: space-between;
}
.address_div{
   width: 45%;
}
.heading {
   text-align: left;
   margin-bottom: 20px;
   font-family: 'Oswald', sans-serif;
   color: #005386;
   font-weight: 400;
   font-size: 2.5em;
}
.sub_head{
   color: #005386;
   font-size: 20px;
   margin-bottom: 10px;
   font-weight: 500;
}
.address_div div{
   display: flex;
   align-items: baseline;
   margin-bottom: 30px;
}
.address_div div .fa{
   margin-right: 10px;
   color: #005386;
}
.address_div div a{
   width: 6%;
   text-decoration: none;
   display: block;
   margin-right: 15px;
}
.address_div div img{
   width: 100%;
   border-radius: 100%;
}
.contact_sec{
   width: 45%;
}
.contact_form{
   width: 100%;
   margin-top: 50px;
}
.contact_form label{
   display: block;
   margin-bottom: 10px;
   color: #005386;
   font-weight: 500;
   font-size: 18px;
}
.contact_form input{
   width: 100%;
   height: 30px;
   margin-bottom: 30px;
   border: none;
   background-color: #dadada;
}
.contact_form textarea{   
   width: 700px;
  min-width: 100%;
  max-width: 100%;
   border: none;
   background-color: #dadada;
   resize: none;
   overflow: hidden;
}
.contact_form button{
    text-align: center;
    margin-top: 30px;
    text-decoration: none;
    color: #2e649d;
    padding: 7px 15px;
    border: 2px solid #2e649d;
   font-size: 17px;
   font-weight: 500;
   text-transform: uppercase;
   cursor: pointer;
   transition: all .3s ease-in;
}
.contact_form button:hover{
   background-color: #2e649d;
   color: #fff;
}
.contact_sec iframe{
   width: 100%;
   height: 86%;
}
/* Map Style */
.map_div{
   width: 80%;
   margin: auto;
   margin-bottom: 50px;
}
.map_div iframe{
   width: 100%;
   height: 400px;
}

/* Media Query */
@media only screen and (max-width: 768px){
   .contact_us{
      width: 90%;
      display: block;
   }
   .address_div{
      width: 100%;
   }
   .contact_sec {
       width: 100%;
       margin-top: 50px;
   }
}
@media only screen and (max-width: 500px){
   
}