/*=========================================
LOCATION
=========================================*/

.location-section{

    padding:120px 0;

    background:#f8fafc;

}

.location-wrapper{

    display:grid;

    grid-template-columns:1fr 1.4fr;

    gap:50px;

    align-items:center;

}

.location-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    display:flex;

    gap:20px;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.info-box:hover{

    transform:translateX(8px);

}

.info-box i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#d4af37;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.info-box h3{

    margin-bottom:10px;

}

.info-box p{

    color:#666;

    line-height:1.8;

}

.map-box{

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.map-box iframe{

    width:100%;

    height:620px;

    border:0;

}

@media(max-width:992px){

.location-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.location-section{

padding:80px 0;

}

.map-box iframe{

height:420px;

}

}