.loc-map {
    position: relative;
    width: 100%;
    height: 500rem;
    border: 1px solid #ddd;
    overflow: hidden;
}

#daumRoughmapContainer1747496846802 {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 100%;
}

.root_daum_roughmap .wrap_map {
    height: 100% !important;
}
.root_daum_roughmap .map_border {
    opacity: 0 !important;
}


.loc-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35rem;
}

.loc-box-wrapper {
    display: flex;
    align-items: center;
    gap: 100rem;
}

.loc-box {
    display: flex;
    align-items: center;
    gap: 20rem;
}

.loc-box-icon {
    width: 66rem;
    min-width: 66rem;
    height: 66rem;
    min-height: 66rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
}

.loc-box-icon i {
    color: #fff;
    font-size: 24rem;
}

.loc-box-text p {
    color: var(--main-color);
    font-size: 17rem;
    font-weight: 700;
}

.loc-box-text h5 {
    color: #222;
    font-size: 20rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.5px;
    white-space: nowrap;
    margin-top: 6px;
}

.locBtn {
    position: absolute;
    top: 20rem; right: 20rem;
    display: flex;
    width: 170rem;
    height: 60rem;
    color: #fff;
    font-size: 22rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background-color: var(--main-color);
    box-shadow: 0 15rem 15rem 0 rgba(0, 0, 0, .2);
    z-index: 97;
}


/*==================================================*/
@media (max-width: 768px) {
    .loc-box-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30rem;
    }
}



@media (max-width: 550px) {
    .loc-box-icon {
        width: 80rem;
        min-width: 80rem;
        height: 80rem;
        min-height: 80rem;
    }
    
    .loc-box-icon i {
        color: #fff;
        font-size: 30rem;
    }
    
    .loc-box-text p {
        font-size: 20rem;
    }
    
    .loc-box-text h5 {
        font-size: 26rem;
        margin-top: 5px;
    }

    .locBtn {
    }
}