@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&display=swap');

/* ==
    font-family: 'Roboto', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Red Hat Display', sans-serif;
    font-family: 'Merriweather', serif;
*/


:root{
    --green:#002E01;
    --rojo:#A20B12;
    --gold:#D8B353;
    --rob:'Poppins', sans-serif;
    --red:'Red Hat Display', sans-serif;
    --mon:'League Spartan', sans-serif;;
}

/* == FOOTER == */

footer{
    width: 100%;
    height: auto;
    background-color: none;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    padding: 100px 40px 100px 40px;
    box-sizing: border-box;
    flex-wrap: wrap;
    z-index: 11;

    background-color: var(--green);
}

.logoFoot{
    width: 150px;
    height: 150px;
    background-image:url(media/isologo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 20px;
}

.col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 250px;
}

.footT{
    font-family: var(--red);
    font-size:25px;
    color: white;
}

.footA{
    font-family: var(--rob);
    text-decoration: none;
    color: white;
    margin: 6px 0;
    transition: all 400ms ease;
    opacity: 50%;
}

.footA:hover{
    transition: all 400ms ease;
    opacity: 100%;
}

.lastP{
    width: 400px;   
    font-family: var(--red);
    font-size: 25px;
    color: white;
}

@media (max-width:1100px) {
    .lastP{
    width: 700px; 
    margin-top: 60px;  
    font-family: var(--red);
    font-size: 25px;
    color: white;
}

}

@media (max-width:750px) {
    .col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 200px;
    }
    .footT{
        font-size: 20px;
    }
    .footA{
        font-size: 14px;
    }
    .logoFoot{
        width: 100px;
        height: 100px;
    }
    .lastP{
    width: 500px; 
    margin-top: 60px;  
    font-family: var(--red);
    font-size: 20px;
    color: white;
    }
}

@media (max-width:590px) {
    .col{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100px;
    }
    .footT{
        font-size: 16px;
    }
    .footA{
        font-size: 12px;
    }
    .logoFoot{
        width: 100%;
        background-size: 20%;
        height: 100px;

    }
    .lastP{
    width: 340px; 
    margin-top: 60px;  
    font-family: var(--red);
    font-size: 18px;
    color: white;
    }
}