
body{
    font-family: 'Oxygen', sans-serif;
    background-color: #282c34;
    box-sizing: border-box;
}
.contenedor__header{
    min-height: 80px;    
    background-color: #7049b8;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #93f459;  

}

.img_logo{
    width: 150px;
}

.contenedor__logos{
    width: 100%;
    text-align: center;
    color: white;  
    height: 100%;     
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.repo{
    display: none;
}
.logo-right-enlace{
    text-decoration: none;
    color: #fff;
}
.logo-right-enlace:hover{
    color: rgb(196, 193, 193);
}
.whatsapp-right-enlace:hover{
    color: rgb(196, 193, 193);
}
        .whatsapp-right-enlace{
            color: white;
        }
.services__container{
    background-color: #1e1f29;
    display: flex;
    flex-wrap: wrap;

}

.services__box{    
    padding: 15px;
    color:rgb(221, 219, 219);
    text-align: center;
}
.services__box:first-child{
    background-color: #282c34;
    width: 100%;
    box-sizing: border-box;
}
.services__box:nth-child(2){
    width: 50%;
    box-sizing: border-box;
    
}
.services__box:nth-child(3){
    width: 50%;
    box-sizing: border-box;
}
.services__icon img{
    width: 70px;
}
.services__encabezado{
    font-size: 1.3rem;
    font-weight: 400;
}
.contenido__principal{
    width: 80%;
    margin: 20px auto;
}
.video__seccion{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.video__encabezado, .video__descripcion{
    color: #fff;
}
.video__right{
    margin-top: 30px;
}
.footer{
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e1f29;
}
.footer__descripcion{
    color: #fff;
}

.video__seccion{
    margin-bottom: 30px;
}
/* Styles pagina de error */
.errorSection{
    color: #fff;
    min-height: 200px;
    margin-top: 80px;
}
.errorContent{
    max-width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    text-align: center;
}
.btn-error{
    background-color: #7049b8;
    color: #fff;
    padding:10px 15px;
    display: inline-block;
    margin-bottom: 30px;
    text-decoration: none;
}
.btn-error:hover{
    background-color: #532f97;
    padding:10px 15px;
    display: inline-block;
 
    text-decoration: none;
}
/* Styles section ultimos trabajos */
.ultimos-trabajos{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 50px;
}
.cardContainer{
    width: 100%;
    margin-bottom: 20px;
}
.imagen-destacada{
    width: 100%;
    transition: 1s all ease-in-out;
}

p, a{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.img{
    position: relative;
    overflow: hidden;
}
.img:hover .imagen-destacada{
    transform: scale(1.6) rotate(15deg);
    transition: 1s all ease-in-out;
}
.descripcion{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    transform: translateY(120%);
    transition: .5s all ease-in-out;
}
.img:hover .descripcion{
    transform: translateY(0);
}

.titulo-ultimos-trabajos{
    display: block;
    text-align:center;
    color: #fff;
    padding: 0;
}

@media screen and (min-width: 480px){
    .img_logo{
        width: 200px;
    }
    .contenedor__header{
        flex-direction: row;
        justify-content: space-between;
    
    }


}

@media screen and (min-width: 768px){
    .img_logo{
        width: 350px;
    }
    .repo{
        display: inline-flex;
    }

    .video__seccion{        
        justify-content: space-between;
        flex-direction: row;
    }

    .video__right{
        margin-top: 0;
    }
    .video__encabezado{
        font-size: 1.9rem;
    }
    .video__left, .video__right{
        padding: 10px;
        width: calc(100% / 2);
    }
    .services__container{
        flex-wrap: nowrap;    
    }
    .ultimos-trabajos{        
        flex-direction: row;
    }
    .cardContainer{
        width: 32%;
       
    }


}