/*==================================================
CONTACT MAP
==================================================*/

.contact-map-section{

    padding:100px 0;

}

.contact-map-wrapper{

    display:grid;

    grid-template-columns:40% 60%;

    gap:50px;

    align-items:center;

}

.contact-map-info h2{

    font-size:42px;

    color:#173b6d;

    margin-bottom:25px;

    font-weight:900;

}

.contact-map-info p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}

.map-details{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.map-item{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.map-item i{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#e31e24;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.map-item strong{

    display:block;

    color:#173b6d;

    margin-bottom:6px;

}

.map-item span{

    color:#666;

}

/*==================================================
MAP BOX
==================================================*/

.contact-map-box{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

    min-height:500px;

}

.contact-map-box iframe{

    width:100%;

    height:500px;

    border:none;

    display:block;

}

/*==================================================
HOVER
==================================================*/

.contact-map-box:hover{

    transform:translateY(-6px);

    transition:.35s;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.map-item{

    transition:.3s;

}

.map-item:hover{

    transform:translateX(-6px);

}

.map-item:hover i{

    background:#173b6d;

}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:992px){

    .contact-map-wrapper{

        grid-template-columns:1fr;

        gap:40px;

    }

    .contact-map-info{

        text-align:center;

    }

    .map-details{

        align-items:center;

    }

}

@media (max-width:768px){

    .contact-map-section{

        padding:70px 0;

    }

    .contact-map-info h2{

        font-size:32px;

    }

    .contact-map-box{

        min-height:350px;

    }

    .contact-map-box iframe{

        height:350px;

    }

}