body {
    width: 100%;
    background-image: linear-gradient(rgba(5, 59, 125, 0.9), rgba(5, 59, 125, 0.9)), url('../images/bg_image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
    background-attachment: fixed;
}
.reach-us{
    width: 100%;
    padding: 10px;
    background-color: #fff;
    margin-top: 160px;
}
.reach-us .reach-details{
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}
.reach-details h3{
    margin: 0;
    text-align: center;
}
.reach-details .contact-details{
    width: 100%;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
}
.contact-details table{
    width: 50%;
}
.contact-details table .td-1{
    width: 50px;
}
.contact-details table .td-1 img{
    width: 30px;
    height: 30px;
}
.contact-details table a{
    text-decoration-line: none;
    color: #000;
}
.contact-forms{
    width: 100%;
    min-height: calc(100vh - 400px);
    display: flex;
    flex-wrap: wrap;
    padding: 20px 5%;
    align-items: flex-start;
}
.contact-forms .form-div{
    width: 50%;
    padding: 20px;
}

@media (max-width:768px){
    .contact-details table, .contact-forms .form-div{
        width: 100%;
    }
    .contact-details table a{
        font-size: 14px;
    }
}