@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
*{
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}
p{
    line-height: 2;
    font-weight: 300;
}
.container{
    width: 80%;
    margin: auto;
}
/* Bread crumbs Style */
.bread_crumbs{
    width: 80%;
    margin: auto;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    color: #303030;
}
.bread_crumbs span{
    margin: 0 15px;
}
.bread_crumbs a{
    color: #303030;
    text-decoration: none;
    color: #b1b1b1;
    font-weight: 300;
}
/* Contact Us Style */
.contact_div {
    padding: 50px 10%;
    text-align: center;
    background: url(../images/background/contact-banner.jpg);
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 0;
}
.contact_div::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    z-index: -1;
}
.contact_div p{
    color: #fff;
}
.contact_div h2{
    color: #00d0a3;
    font-weight: 400;
    font-size: 2em;
}
.flex_class{
    display: flex;
    justify-content: space-between;
}
.address{
    width: 30%;
    text-align: center;
    margin-top: 30px;
}
.address h3{
    color: #00d0a3;
    font-weight: 600;
    font-size: 20px;
}
.address p{
    line-height: 1.5;
}
.rep{
    color: #283891;
}
.contact_txt{
    margin-top: 10px;
}
.address .fa{
    color: #fff;
    margin-right: 5px;
}
.flx_div{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}
.contact_form{
    margin-top: 50px;
    width: 35%;
}
.contact_form h2{
    color: #283891;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.contact_form input{
    width: 98%;
    height: 35px;
    display: block;
    margin-bottom: 30px;
    padding-left: 2%;
    outline: none;
    border: none;
    background-color: #f7f7f7;
}
.contact_form div{
    display: flex;
    justify-content: space-between;
}
.contact_form div input{
    width: 45%;
}
.contact_form textarea{
    width: 98%;
    display: block;
    height: 150px;
    display: block;
    margin-bottom: 30px;
    padding-left: 2%;
    outline: none;
    border: none;
    background-color: #f7f7f7;
}
.contact_form button{
    border: none;
    width: 130px;
    margin: auto;
    text-align: center;
    padding: 10px 0;
    display: block;
    margin-top: 30px;
    background-color: #283891;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    border: 2px solid #283891;
}
.contact_form button:hover{
    background-color: transparent;
    color: #283891;
}
.flx_div img{
    width: 60%;
    margin-top: 50px;
}
/* Media Query */
@media only screen and (max-width:768px){
    .flex_class{
        display: block;
    }
    .address {
        width: 100%;
    }
    .flx_div{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .flx_div iframe,.contact_form{
        width: 100%;
    }
}