.map-wrap{
    margin: 50px auto;
}

.border{
    width: 100%;
    height: 2px;
    background-color: #23674e;
    margin: 50px 0;
}

.map{
    width: 100%;
    height: 500px;
}
.grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.imgbox img{
    width: 28px;
}
.grid-box{
    background-color: #fff8cf;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 1rem;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.imgbox{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}
.grid-box span{
    font-size: 1.5rem;
    font-weight: 600;
}
.grid-box p{
    font-size: 1.2rem;
    font-weight: 300;
}
.callimg{
    display: inline-flex;
}

.grid-sub{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}



@media screen and (max-width:1400px) {
    .grid-box span{
        font-size: 1.3rem;
    }
    .imgbox img{
        width: 20px;
    }
}
@media screen and (max-width:1024px) {
    .border{
        margin: 30px 0;
    }
    .grid{
        gap: 15px;
    }
    .grid-sub{
        gap: 15px;
    }
}
@media screen and (max-width:860px) {
    .map{
        height: 350px;
    }
}
@media screen and (max-width:550px) {
    .grid-sub{
        grid-template-columns: 1fr;
    }
    .grid-box p{
        font-size: 1rem;
    }
    .grid-box span{
        font-size: 1.2rem;
    }
    .map{
        height: 300px;
    }
}