body{
    background-color: #e9e1da;
}
#location{
    padding:100px 0;
    /* width: 1000px; */
    margin:0 auto;
    max-width: 100%;
    color:#170d01;
}
#location h3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}
#location h3 img{
    width: 140px;
}
#location h3 span{
    font-size: 33px;
    font-weight: 700;
}
#location #location_map{
    margin-bottom: 50px;
    height: 400px;
}
#location .map img{
    display: block;
    margin:0 auto;
}
#location .location-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
#location .location-info>li{
    width: 100%;
}
#location .location-info>li>strong{
    display: block;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0.76em;
}
#location .location-info>li>div{
    position: relative;
}
#location .location-info>li>div p{
    position: relative;
    font-size: 16px;
    line-height: 1.4em;
    padding-left: 70px;
    font-weight: 300;
}
#location .location-info>li>div p span{
    position: absolute;
    left:0;
    top:0;
    font-weight: 600;
}

@media (max-width:1400px){
    #location {
        padding:80px 0;
    }
    #location h3 {
        gap: 20px;
    }
    #location h3 img{
        width: 110px;
    }
    #location h3 span{
        font-size: 30px;
    }
    #location .location-info>li>strong{
        /* font-size: 20px; */
    }
}
@media (max-width:768px){
    #location {
        padding:60px 0;
    }
    #location h3{
        gap: 15px;
        margin-bottom: 35px;
    }
    #location h3 span{
        font-size: 26px;
    }
    #location #location_map{
        margin-bottom: 45px;
        height:300px;
    }
    #location .location-info>li>strong{
        font-size: 18px;
    }
    #location .location-info>li>div p{
        font-size: 14px;
        padding-left: 50px;
        word-break: keep-all;
    }
}