/*Fuentes*/
@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light');
/*****font-family: 'Shadows Into Light', cursive;*****/
@import url('https://fonts.googleapis.com/css?family=Inconsolata');
/****font-family: 'Inconsolata', monospace;****/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/****font-family: 'Open Sans', sans-serif;****/

*{
    margin: 0px;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*font-family: 'Inconsolata', monospace;*/
    font-family: 'Open Sans', sans-serif;
}

.logo {
    width: 30%;
}

.info-container {
    width: 100%;
    height: 470px;
    background: white;
}

.info-main {
    width: 95%;
    max-width: 90%px;
    margin: auto;
    text-align: center;
    padding: 100px 100px;
}

.info-main h3 {
    color: #f7941d;
    font-size: 60px;
    text-align: center;
}

.info-main p {
    padding: 20px 0;
    font-size: 20px;
}

/*
.info-main a {
    display: inline-block;
    background: #BF0026;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
}*/

/*****FORMATO DEL FOOTER (PIE DE PAGINA)*****/

.direc {
    padding-right: 20px;
}

.telf {
    padding-right: 20px;
}

.wapp {
    padding-right: 20px;
}

.footer {
    width: 100%;
}

.footer-container {
    width: 100%;
    background: #f2ecf3;
    color: black;
}

.footer-main {
    width: 98%;
    max-width: 1000px;
    margin: auto;
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-main .footer-columna {
    width: calc(100% / 1);
    text-align: center;
    font-size: 15px;
}

.footer-main .footer-columna:nth-child(1) {
    padding: 0 50px;
}

.footer-main .footer-columna h3 {
    font-size: 20px;
    color: #DF1828;
    margin-bottom: 20px;
}

.footer-main .footer-columna span p {
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 15px;
}

.footer-copy-redes {
    width: 100%;
    background: #003AA8;
    border-top: 3px solid #fff;
}

.main-copy-redes {
    width: 98%;
    max-width: 1000px;
    padding: 15px 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.main-copy-redes .footer-copy {
    width: 70%;
    color: white;
}

.footer-copy {
    font-size: 15px;
}

.main-copy-redes .footer-redes {
    width: 20%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-copy-redes .footer-redes a {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    text-align: center;
    transition: background .5s;
    transition: color .1s;
}

.main-copy-redes .footer-redes a:hover {
    background: #DF1828;
    color: white;
}

/*****Formato Correo - Creador*****/

a.send-2:link {
    text-decoration: none;
    transition: color .5s;
    color: white;
}

a.send-2:hover {
    color: #383DFF;
}

a.send-2:visited {
    color: #2BA2FF;
}



/*****FORMATO RESPONSIVE*****/

@media screen and (max-width: 820px) and (min-width: 611px) {
    
    .info-main {
        padding: 30px 100px;
    }
    
    .info-container {
        height: 300px;
    }
    
    .footer-main .footer-columna {
        padding: 0 10px;
    }
    
    .footer-main .footer-columna h3 {
        font-size: 28px;
    }
    
    .footer-main .footer-columna p {
        font-size: 14px;
    }
    
    .main-copy-redes .footer-copy{
        text-align: center;
        width: auto;
    }
    
    .main-copy-redes .footer-redes {
        width: 25%;
        margin: auto;
    }
}

@media screen and (max-width: 610px)  and (min-width: 411px) {
        
    .info-main {
        padding: 30px 50px;
    }
    
    .info-container {
        height: 350px;
    }
    
        .footer-main h3 {
        font-size: 20px;
    }
    
        .footer-main {
        padding: 10px 0;
    }
    
    .footer-main .footer-columna {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .footer-main .footer-columna h3 {
        margin-bottom: 5px;
    }
    
    .footer-main .footer-columna span {
        display: block;
    }
    
    .main-copy-redes .footer-copy{
        width: 100%;
        font-size: 12px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .main-copy-redes .footer-redes {
        width: 40%;
        margin: auto;
    }
}

@media screen and (max-width: 410px) {
    
    .logo {
        width: auto;
    }
    
    .info-main {
        padding: 10px 80px;
    }
    
    .footer-main .footer-columna h3 {
        font-size: 15px;
        margin-bottom: 0px;
        padding: 10px 5px;
    }
    
    .footer-main .footer-columna p {
        font-size: 11px;
    }
    
    .main-copy-redes .footer-copy{
        width: 100%;
        font-size: 12px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .main-copy-redes .footer-redes {
        width: 50%;
        margin: auto;
    }
}