.location {
    margin-bottom: 50px;
}

.map_container {
    position:relative;
}

.location_text {
    position:absolute;
    top:0;  
    left:0;  
    color: var(--main-color);
    font-size: 32px;
    background-color: var(--second-color);
    opacity: 85%;
    border-radius:0px 0px 40px 0px;
    padding: 16px 32px;
}

@media(max-width:1200px) {
    .location_text {       
        font-size: 27px;    
        padding: 15px 30px;
    }
}
@media(max-width:1000px) {
    .location_text {       
        font-size: 23px;     
        padding: 15px 30px;
    }
}
@media(max-width:760px) {
    .location_text {       
        font-size: 20px;     
        padding: 10px 20px;
        border-radius:0px 0px 30px 0px;
    }
}
@media(max-width:580px) {
    .location_text { 
        text-align: center;      
        font-size: 18px;     
        padding: 8px 0px;
        border-radius:0px;
        top:0;
        left:0;
        right:0;
    }
}