/* HERO */

.contact-hero{
    padding:140px 0;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),
    url("../image/flight/hero session.jpg");
    background-size:cover;
    background-position:center;
}

.contact-hero span{
    color:#42d6e7;
}

.contact-hero h1{
    color:#fff;
    font-size:70px;
    font-weight:800;
    margin:15px 0;
}

.contact-hero p{
    color:#fff;
    max-width:700px;
    margin:auto;
}

/* INFO CARDS */

.contact-info-section{
    padding:100px 0 50px;
}

.contact-info-card{
    background:#fff;
    text-align:center;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.contact-info-card:hover{
    transform:translateY(-8px);
}

.contact-info-card i{
    font-size:50px;
    color:#42d6e7;
    margin-bottom:20px;
}

/* FORM */

.contact-form-section{
    padding:50px 0 100px;
}

.contact-form-box h2{
    font-size:45px;
    font-weight:800;
    color:#0d1b3e;
    margin-bottom:25px;
}

.form-control{
    border-radius:12px;
    min-height:55px;
}

textarea.form-control{
    min-height:180px;
}

.map-box iframe{
    border-radius:20px;
}
 

/* CTA */

.contact-cta{
    padding:120px 0;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url("../image/about/aboutairline.jpg");
    background-size:cover;
    background-position:center;
}

.contact-cta h2{
    color:#fff;
    font-size:55px;
    font-weight:800;
}

.contact-cta p{
    color:#fff;
    margin:20px auto 35px;
    max-width:700px;
}

/* BUTTON */

.theme-btn{
    display:inline-block;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background:linear-gradient(
    90deg,
    #42d6e7,
    #ff6b6b);
}

/* RESPONSIVE */

@media(max-width:768px){

    .contact-hero h1{
        font-size:40px;
    }

    .contact-form-box h2{
        font-size:32px;
    }

    .contact-cta h2{
        font-size:32px;
    }

    .map-box{
        margin-top:30px;
    }
}