.map_text{
    margin: 20px 0;
    text-align: left;
}
.map_text h1{
    display: flex;
    align-items: center;
    font-weight: 400;
}

.map_text h1 span:last-child{
    width: calc(100% - 50px);
}

.map_text p{
    display: flex;
    align-items: center;
    font-size: 26px;
    margin-top: 10px;
}
.map_text .call_icon{
    width: 40px;
    height: 40px;
    background: var(--main-color);
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map_text .call_icon img{
    width: 70%;
}

.map_info{
    margin-top: 50px;
    text-align: left;
    width: 50%;
    float: left;
}

.map_info .title{
    width: calc(100% - 30px);
    height: 60px;
    line-height: 60px;
    /* border-bottom: 1px solid #ccc; */
    font-size: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: var(--main-color);
    color: #fff;
    padding: 0 15px;
}

.map_info .title.active .arrow_icon{
    transform: rotate(-90deg);
    transition-duration: .5s;
}

.map_info .title .arrow_icon{
    transform: rotate(90deg);
    transition-duration: .5s;
    width: 24px;
    height: 24px;
    -webkit-filter: brightness(0) invert(1); 
    filter: brightness(0) invert(1);
}

/* .map_info .map_info_drop{
    display: none;
} */

.map_info .map_info_con{
    margin-top: 40px;
}

.map_info .map_info_con h6{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.map_info .map_info_con h5{
    margin-top: 30px;
    font-size: 26px;
    margin-bottom: 10px;
}

.map_info .map_info_con p{
    font-size: 18px;
}

.map_info .map_info_con p span{
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    margin-right: 10px;
    margin-top: 10px;
}

.map_info .map_info_con p span.blue{
    background: rgb(42, 119, 219);
    color: #fff;
}

.map_info .map_info_con p span.green{
    background: rgb(95, 196, 95);
}

.map_info .map_info_con p span.red{
    background: rgb(230, 74, 74);
    color: #fff;
}

@media all and (max-width: 1024px){
    .map_text h1{
        font-size: 20px;
    }
    .map_text p{
        font-size: 20px;
    }

}

@media all and (max-width: 960px){
    .map_info{
        width: 100%;
    }
}