:root {
    --1: #59B954;
    --2: #0F1114;
    --3: #1B1E24;
    --4: #30FF13;
    --5: #9B9B9B;
    --6: #FFD700;
}

.banner_c {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 60px;
    gap: 150px;
}

.bienvenida {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: white;
}

.bienvenida h2 {
    margin-top: -80px;
    font-weight: 400;
    font-size: 80px;
}

.bienvenida h1 {
    margin-top: -30px;
    font-size: 100px;
    color: var(--4);
}

.bienvenida p{
    margin-top: 15px;
    font-size: 20px;
    margin-bottom: -15px;
}

.Lineas_a {
    max-width: 100%;
    width: 100%;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.Lineas_a a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.Lineas_a img{
    width: 75%;
}

.Lineas_a img:hover{
    transform: scale(1.1);
    transition: transform 1s;
}

@media (max-width: 768px) {
    .banner_c {
        margin-top: 80px;
        flex-direction: column;
        height: auto;
    }
    .Lineas_a {
        padding: 60px 60px;
        flex-direction: column;
        height: auto;
        gap: 30px;
        margin-bottom: -10px;
    }
    .bienvenida {
        width: 100%;
        padding: 0px;
    }
    .bienvenida h2 {
        font-size: 6vw;
    }
    .bienvenida h1 {
        margin-top: 2px;
        font-size: 15vw;    
    }
    
    .bienvenida p{
        text-align: center;
    }    
    .mapa {
        margin-top: -70px;
    }
    .mapa iframe{
        width: 100%;
    }
}
@media (max-width: 480px) {

}