/*RAIZ*/
*{
    --color-imusa:#FF5001;
    --color-cafe: #5F3300;
    --color-gris100:#D9D9D9;
    --color-gris500:#707070;
    --color-gris900:#2B2B2B;
    --color-blanco:#FFFFFF;
    --espacion-interior: 25px;
}
html{
    margin: 0;
    padding: 0;
    font-size: 62.5%;
}

img{
    width: 100%;
}

body{
    font-family: 'Raleway', 'Arial', sans-serif;
    background-color: var(--color-blanco);
}

.centrado{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
}

h2{
    color: var(--color-cafe);
    font-weight: bold;
    font-size: 3rem;
    text-align: center;
}

h3{
    color: var(--color-azul300);
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
}

p{
    color: var(--color-gris500);
    font-size: 2rem;
    text-align: center;
}

.width_100{ 
    width: 100%;
    margin-bottom: 2rem;
}

.width_80{ 
    width: 80%;
    margin-bottom: 2rem;
}

.width_50{ 
    width: 50%;
    margin-bottom: 2rem;
}

.width_30{ 
    width: 30%;

}

.barra_titulo{
    flex-direction: row;
}

.width_20{ 
    width: 20%;
}

.espacio_superior_20{
    margin-top: 2rem auto;
}

.card_icono{
    flex-direction: column;
    margin-bottom: 2rem;
}

.seccion_cards{
    flex-direction: row;
}

.card{
    margin: 3rem auto;
    align-self: baseline;
}

.carrusel{
    flex-direction: row;
    align-items: self-start;
    justify-content: space-evenly;
}

video{
    width: 100%;
}

.footer{
    background-color: var(--color-imusa);
}

    .footer p{
        color: var(--color-blanco);

    }

    .footer img{
        margin-top: 3rem;
        width: 30%;

    }

.texto_legal{
    font-size: 1.2rem;
}

@font-face {
    font-family: 'DIN Pro';
    src: url('../fuentes/DINPro-Medium.ttf');
}

@media(max-width:700px){
    .centrado{
        flex-direction: column;
    }

    .banner_hotspot{
        width: 100%;
    }
    .card{
        width: 80%;
    }

    .banner_rojo{
        width: 100%;
    }
}

@media (max-width: 700px){

    .width_30, 
    .width_80{
        width: 100%;
    }
    .carrusel{
        width: 100%;
    }

    .seccion_iconos{
        width: 100%;
        flex-direction: column;
    }

    .seccion_iconos .card{
        width: 80%;
        flex-direction: column;
        margin: var(--espacion-interior) auto;
    }

}
