/*======================================================
                CONTACT HERO
======================================================*/

.contact-hero{

    padding:180px 0 120px;

    background:#f5f5f7;

    text-align:center;

}

.contact-hero-content{

    max-width:900px;

    margin:auto;

}

.contact-hero .section-subtitle{

    display:inline-block;

    font-size:14px;

    font-weight:600;

    letter-spacing:5px;

    text-transform:uppercase;

    color:#8b8b8b;

    margin-bottom:24px;

}

.contact-hero h1{

    font-size:72px;

    line-height:1.08;

    color:#111;

    margin-bottom:28px;

    font-weight:700;

}

.contact-hero p{

    max-width:760px;

    margin:auto;

    font-size:21px;

    line-height:1.9;

    color:#6e6e73;

}

/*====================================
Responsive
====================================*/

@media(max-width:992px){

.contact-hero{

    padding:150px 0 100px;

}

.contact-hero h1{

    font-size:54px;

}

.contact-hero p{

    font-size:18px;

}

}

@media(max-width:768px){

.contact-hero{

    padding:130px 0 80px;

}

.contact-hero h1{

    font-size:40px;

}

.contact-hero p{

    font-size:16px;

}

}

/*======================================================
                CONTACT INFO
======================================================*/

.contact-info-section{

    padding:140px 0;

    background:#ffffff;

}

/*====================================
Grid
====================================*/

.contact-info-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

/*====================================
Card
====================================*/

.contact-card{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:30px;

    padding:50px 35px;

    text-align:center;

    transition:.4s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

/*====================================
Icon
====================================*/

.contact-icon{

    width:80px;

    height:80px;

    margin:0 auto 28px;

    border-radius:50%;

    background:#f5f5f7;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#111;

    transition:.35s;

}

.contact-card:hover .contact-icon{

    background:#111;

    color:#fff;

}

/*====================================
Typography
====================================*/

.contact-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#111;

}

.contact-card p{

    font-size:17px;

    line-height:1.8;

    color:#6e6e73;

}

/*====================================
Responsive
====================================*/

@media(max-width:1200px){

.contact-info-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info-section{

    padding:90px 0;

}

.contact-info-grid{

    grid-template-columns:1fr;

    gap:20px;

    margin-top:45px;

}

.contact-card{

    padding:35px 25px;

}

.contact-card h3{

    font-size:24px;

}

.contact-card p{

    font-size:15px;

}

.contact-icon{

    width:70px;

    height:70px;

    font-size:24px;

}

}

/*======================================================
                CONTACT MAP
======================================================*/

.contact-map-section{

    padding:140px 0;

    background:#f5f5f7;

}

/*====================================
Map
====================================*/

.contact-map{

    margin-top:70px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    border:1px solid #ececec;

}

.contact-map iframe{

    width:100%;

    height:550px;

    border:0;

    display:block;

}

/*====================================
Responsive
====================================*/

@media(max-width:992px){

.contact-map iframe{

    height:420px;

}

}

@media(max-width:768px){

.contact-map-section{

    padding:90px 0;

}

.contact-map{

    margin-top:45px;

    border-radius:25px;

}

.contact-map iframe{

    height:320px;

}

}