* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #fff url(../img/bg.png) top right no-repeat;
	color: #363639;
    font-family: 'Work Sans', sans-serif;
}





/* ? ----- PORTADA ----- */
.portada {
	width: 100%;

	min-height: 60vh;
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}


.portada .header {
	margin-bottom: 100px;
	text-transform: uppercase;
	letter-spacing: 3px;
}


.portada .header .mensaje {
	font-size: 50px;
	font-weight: 600;
}







/* ? ----- Cuenta Regresiva ----- */
#logos {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}

.logo {
	
	color:#fff;
	width: 96;
	height: 161;
	margin: 0 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simply-amount {
	display: block;
	font-size: 50px;
	font-weight: 700;
}

.simply-word {
	font-weight: 300;
	font-size: 20px;
}

ul{
    list-style: none;
}
.redes{
    font-family: work sans;
    width: 630px;
    height: 30px;
    margin: 0 auto;
    display: flex;
    padding: 5px 0;
    flex-direction: column;
    align-items: center;
    border-top:1px solid #0024a3;
    border-bottom: 1px solid #0024a3;
}
.telefonos{
    width: 100%;
    height: 30px;
    margin: 0 auto;
    display: flex;
    padding: 10px 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.telefonos ul{
    position: relative;
    top: initial;
    left: initial;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
}
.telefonos .espacio{margin-right: 20px;}
.redes ul{
    position: relative;
    top: initial;
    left: initial;
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    padding: 0;
    margin: 0;
    width: 500px;
    
}
li{
    padding:0 5px 0 0;
    font-size: 20px;
}
ul.movil{
    display:none;
}
a,a:visited{
    text-decoration: none;
    color:#0024a3;
    
}


/* ? ---------------------------- movil */

@media (max-width: 480px) {
	

	.header img{width:400px}

    .logo img{width: 50px;}

    .redes,.telefonos{
        width:380px;
        height:20px;
        text-align:center;
    }
    .redes ul{
        width: 380px;
    }
    li{
        font-size: 12px;
    }
    i{
        font-size: 14px;
    }
    .espacio {
        margin-right: 5px;
    }
    ul.compu{
        display: none;
    }
    ul.movil{
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    ul.movil li{
        margin:0 0 10px 0;
        font-size: 18px;
    }
    ul.movil i{
        font-size:16px;
    }
}

