*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
}

nav{
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: flex-start;
}

nav a{
    color:#fff;
    text-decoration: none;
}

.icono{
    display: block;
    z-index: 100000000;
    animation: moverIzquierda 1s ease-in;
}

header{
    background: #210ece;  /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to right, #273bd3, #1a6d21);
    background: linear-gradient(to right, #273bd3, #1a6d21);  */
    height: auto;
    padding: 15px;
    width: 100%;
    
    
    background: -webkit-linear-gradient(to bottom, rgba(10, 133, 170, 0.7), rgba(10, 133, 170, 0.1)), url(andamios_toluca.jpg);  
    background: linear-gradient(to bottom, rgba(3, 32, 41, 0.1), rgba(3, 32, 41, 0.1)), url(andamios_toluca.jpg);  
    background-attachment: fixed;
    background-position: center;
    background-size: cover;

    

}

.container{
    width: 98%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
    height: 900px;
}

img{
    display: block;
    height: 450px;
    object-fit: cover;
    animation: arriba 1s ease-in;
}

.textos{
    width: 50%;
    color:#fff;
    
    
}

.textos h1{
    font-size:40px;
    animation: moverDerecha 1s ease-in;

}

.textos h2{
    font-size:30px;
    font-weight: 300;
    text-align: center;
    animation: moverIzquierda 1s ease-in;
    color:#fff;
    border: 1px solid #000;
    border-radius: 10px;
    background: rgba(0, 10, 100, 0.5);
    padding: 5px 0;
    text-align: center;
}

.textos h3{
    font-size:25px;
    padding: 20px 0;
    text-align: center;
    font-weight: 400;
    animation: moverIzquierda 1s ease-in;
}

.textos a{
    display: inline-block;
    color:#fff;
    font-weight: 300;
    text-decoration: none;
    margin-top: 30px;
    border: 1px solid #fff;
    width: 450px;
    border-radius: 4px;    
    background: darkgreen;
    text-align: center;
    padding: 10px 10px;
    animation: arriba 1s ease-in;

}

.wave{
    height: 100px;
    width: 100%;
    background: #DA4453;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #89216B, #DA4453);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #89216B, #DA4453); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */    
}

.enlaces{
    position: fixed;
    display: flex;
    top: 0;
    background: #000;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    right: 0;
    flex-direction: column;
    width: 100%;
    transition: all 1s ease;
    background: #bc4e9c;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #f80759, #bc4e9c);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #f80759, #bc4e9c); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.uno{
    
-webkit-clip-path: circle(0% at 0 0);
clip-path: circle(0% at 0 0);

}

.dos{
    
    -webkit-clip-path: circle(150% at 0 0);
    clip-path: circle(150% at 0 0);
    
    }

@keyframes moverIzquierda{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moverDerecha{
    0%{
        opacity: 0;
        transform: translateX(100px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes arriba{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }
}

footer{

    background-color: #1a6d21;

}

.pie a{

    color: #1a6d21;
    font-size: 2px;
    background-color: #1a6d21;
}

@media screen and (max-width:1000px){
 
    .container{
        width: 98%;        
        height: 800px;
    }
 
 
    img{
        height: 350px;
    }
    .textos h2{
        font-size: 19px;
    }

}

@media screen and (max-width:900px){

    .container{
        width: 98%;        
        height: 700px;
    }


    img{
        height: 300px;
    }
    .textos h1{
        font-size: 32px;
    }

  
    
    .textos h3{
        font-size: 17px;
    }
}

@media screen and (max-width:700px){

    .container{        
        height: 600px;
    }


    img{
        height: 250px;
    }
    .textos h1{
        font-size: 28px;
    }

    .textos h2{
        font-size: 18px;
    }

    .textos h3{
        font-size: 18px;
    }

    .textos a{
        width: auto; 
        padding: 20px;  
    }

    
}

@media screen and (max-width:600px){
    .container{
        width: 100%;
        height: 700px;
        /* flex-wrap: wrap-reverse; */
        flex-wrap: wrap;
        justify-content: center;
    }
    .textos{
        width: 100%;
        text-align: center;
    }
    .textos h1{
        font-size: 25px;
    }    



}

@media screen and (max-width:340px){
    img{
        height: 220px;
    }

 

    
}