.map{
    height: 100vh;
    width: 100%;
    /* margin-top: 150px; */
    display: flex;
    align-items: center;

}

.map-box{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.map-container{
    width: 70%;
    height: 380px;
}

.map-container iframe{
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.map-data{
    width: 50%;
}

.map-data p{
    font-size: 18px;
}

.map-data-highlight{
    font-weight: 900;
}

.map-data-btn{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .map{
        height: 100vh;
    }

    .map-box{
        display: flex;
        flex-direction: column;
    }

    .map-container,
    .map-data{
        width: 90%;
    }
}