.contact_us {
    min-height:390px;
    background-color:#123456;
}
.contact_us h1 {
    color:#fff;
}
.contact_title {
    display:flex;
    justify-content:center;
    padding-top:120px;
}
.main {
    background-color: #F2F5FA; 
}
.contact_details {
    padding-bottom:100px;
}
.contact_details .content_area {
    max-width:1400px;
    margin:0 auto;
}
.details_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:30px;
    margin-top:-105px;
}
.details {
    box-shadow: 0px 4px 4px 0px #00000040;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align:center;
    padding:50px 50px 80px;
}
.details h6 {
    font-size:24px;
    line-height: 32px;
}
.details p {
    font-size:18px;
}
.minheight {
    min-height:80px;
}
.secondary_btn_white {
    min-width:153px;
}
.secondary_btn_white, .secondary_btn_white:hover, .secondary_btn_white:active, .secondary_btn_white:focus {
    padding:10px 30px 10px;
}
.secondary_btn_white.blue {
    border:1px solid #123456;
    color:#123456;
    font-weight:500;
}
.footer_final_sec a {
    font-size:16px;
}
.footer_final_sec p {
    font-size:18px;
}
@media only screen and (max-width:767px) {
    .contact_title {
        padding-top:80px;
    }
    .contact_details {
        padding-bottom: 50px;
    }
    .contact_us {
        min-height:350px; 
    }
    .details_grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -145px;
    }
    .details {
        max-width: 340px;
        padding: 25px 25px 50px;
    }
}
