/*=================================
Contact Hero
=================================*/
.contact-hero{
    background:linear-gradient(135deg,#0D2240,#123C73);
    padding:160px 0 90px;
    color:#fff;
    text-align:center;
    }
    .contact-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border-radius:50px;
    border:1px solid rgba(255,255,255,.15);
    margin-bottom:25px;
    }
    .contact-hero h1{
    font-size:clamp(2.8rem,5vw,4.5rem);
    font-weight:700;
    margin-bottom:20px;
    color: white;
    }
    .contact-hero p{
    max-width:720px;
    margin:auto;
    line-height:1.9;
    opacity:.9;
    color: white;
    }
    /*=================================
    Cards
    =================================*/
    .contact-cards{
    margin-top:-60px;
    position:relative;
    z-index:10;
    padding-bottom:70px;
    }
    .contact-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    }
    .contact-card:hover{
    transform:translateY(-8px);
    }
    .contact-card i{
    font-size:2rem;
    color:#123C73;
    margin-bottom:20px;
    }
    /*=================================
    Form
    =================================*/
    .contact-form{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    }
    .contact-form h2{
    margin-bottom:30px;
    }
    .contact-form .form-control{
    height:56px;
    border-radius:12px;
    border:1px solid #dbe3ef;
    }
    .contact-form textarea.form-control{
    height:auto;
    }
    .contact-form .form-control:focus{
    border-color:#123C73;
    box-shadow:none;
    }
    /*=================================
    Office Card
    =================================*/
    .office-card{
    background:#123C73;
    color:#fff;
    padding:45px;
    border-radius:20px;
    height:100%;
    }
    .office-card h3{
    margin-bottom:30px;
    color: white;
    }
    .office-card ul{
    list-style:none;
    padding:0;
    margin:0;
    }
    .office-card li{
    margin-bottom:30px;
    line-height:1.8;
    }

    /*=================================
    Responsive
    =================================*/
    @media(max-width:991px){
    .contact-cards{
    margin-top:40px;
    }
    .contact-hero{
    padding:100px 0 80px;
    }
    }
    @media(max-width:768px){
    .contact-form,
    .office-card{
    padding:30px;
    }
    .contact-map iframe{
    height:320px;
    }
    }