.container_map {
    font-family: 'arsenal_f';
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/map_bg_2.webp') no-repeat center top / cover;
    margin-bottom: 50px;
}
iframe {
    position: relative;
    opacity: 0.3;
    width: 50vw;
    height: 60vh;
    transition: 0.3s all;
    /* filter:grayscale(50%); */
}
@media (max-width: 768px) and (min-width: 300px)  {
    iframe {
        width: 90vw;
        height: 45vh;
    }
    .container_map {
        padding-top: 20%;
        display: block;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    .container_map_right {
        margin-top: 10%;
    }
}
iframe:hover {
    opacity: 1;
}
.container_map_line {
    height: 60vh;
    width: 3px;
    background-color: #e18021;
    margin: 0 30px;
}
.container_map_right h1 {
    font-size: 45px;
    color: #e18021;
}
.container_map_right h2 {
    font-size: 25px;
    color: #e18021;
}