/*estilos para la seccion de footer*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

:root{
    --color_uno: #011f5a;
    --color_dos: #fafd00 ;
    --color_tres: #6df5e9; 
 
}

  .footer {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,  1fr);
    grid-gap: 50px;
 height: 500px;
    background-color: var(--color_uno);
    padding: 30px;
    
    box-shadow: rgb(0 0 0 / 30%) 0px 20px 30px -20px;

}

.footer h2{
    margin-bottom: 15px;
    font-size: 30px;
    color: white;
    font-family: 'Open Sans';
   
    
}

.footer p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-align: left;
}

.footer a{
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    width: 50%;
    margin-left: 100px;
    margin-bottom: 15px;
    color: white;
    font-family: 'Quicksand', sans-serif;

    
    
    
}
.footer a:hover {
    color: var(--color_tres);
}


.info_footer a i{
    color: white;
    margin-right: 10px;
   
}




.footer form label{
    display: block;
    color: white;
    font-size: 14px;
    
    font-family: 'Quicksand', sans-serif;
}
.footer form .campo, textarea{
    background: rgb(255, 255, 255, 07);
    border: none;
    outline: none;
    border-bottom: 2px solid var(--color_dos);
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 15px;
    font-size: 14px;
    color: #011d5d;
    font-family: 'Quicksand', sans-serif;
    
    
}

.btn {
    padding: 15px 60px 15px 60px;
    font-size: 16px;
    border: none;
    outline: 0px;
    background-color: #011d5d;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 300ms ease;
    border: 2px solid white;
}

.btn:hover {
    background: white;
    color: var(--color_uno);
}

.footer2 {
   
    background-color: white;
    height: 80px;
  width: 100%;
   padding: 20px;
   text-align: center;
   
}


.footer2 p{
    color: #011d5d;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 20px;
}


@media (max-width: 790px)
{
    .footer {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(2,  1fr);
        grid-gap: 20px;
        height: 450px;
        background: var(--color_uno);
        padding: 15px;
        
        box-shadow: rgb(0 0 0 / 30%) 0px 20px 30px -20px;
    
    }

    
    .footer p{
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: white;
        font-family: 'Quicksand', sans-serif;
    }
    
    .footer a{
        font-size: 15px;
        display: inline-block;
        text-decoration: none;
        width: 50%;
        margin-left: 10px;
        margin-bottom: 15px;
        color: white;
        font-family: 'Quicksand', sans-serif;
        
        
    }
}


@media (max-width: 500px)
{
    .footer {
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(1,  1fr);
        grid-gap: 20px;
        height: 800px;
        background: var(--color_uno);
        padding: 15px;
        
        box-shadow: rgb(0 0 0 / 30%) 0px 20px 30px -20px;
    
    }

    
    .footer p{
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: white;
        font-family: 'Quicksand', sans-serif;
    }
    
    .footer a{
        font-size: 15px;
        display: inline-block;
        text-decoration: none;
        width: 50%;
        margin-left: 10px;
        margin-bottom: 15px;
        color: white;
        font-family: 'Quicksand', sans-serif;
        
        
    }
}








