:root{
   --red:#ff2e63;
   --black:#252a34;
   --blue:#08d9d6;
   --white:#eaeaea;
   --title:35px;
   --text:19px;
}

*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background: #ffff;
    overflow-x: hidden;
    font-family: 'fredoka One', sans-serif;
}
.go-top{
    position: fixed;
    bottom: 100px;
    padding: 30px;
    right: -100%;
    width: 50px;
    height: 50px;
    background: #fff;
    border:2px solid var(--red);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: 0.5s;
}
.go-top:hover{
    background: var(--red);
    color:#fff;
    border: 2px solid var(--white);
}
.go-top:hover span{color:var(--white);}

.go-top > span{
   font-size: 30px;
   color: var(--black);
}


/** Skew **/
.skew-abajo{
    position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0 0 10vh 100vw;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
}
.skew-arriba{
    position: absolute;
	top: 0;
	left: 0;
	border-width: 10vh 100vw 0 0;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
	z-index: 10;
}

/** Navegation Menu **/
#header{
    position: relative;
    width: 100%;
}
.menu{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}
.menu .logo-box{margin-left: 20px;}
.menu .logo-box h1 a{
    text-decoration: none;
    font-size: var(--title);
    font-weight: 400;
    color:var(--black);
}
.menu .list-container{margin-right: 20px;}
.menu .list-container ul{display: flex;}
.menu .list-container ul li{list-style: none;}
.menu .list-container ul li a{
    text-decoration: none;
    margin: 0px 10px;
    padding:8px;
    color: var(--black);
    border-radius: 24px;
    transition: 0.3s;
    font-size: 16px;
}
.menu .list-container ul li a:hover{
    color: var(--blue);
}
.menu .list-container ul li a.active{
    background: var(--red);
    color:#fff;
}
.menu .list-container ul li a.active:hover{
    background: var(--blue);
}
.menu .list-container ul li a:hover{
    background: var(--red);
    color:#fff;
}

.btn-menu > .fa-bars{
    display: none;
}

@media only screen and (max-width:900px){
    .btn-menu > .fa-bars{
        display: block;
        position:absolute;
        right: 30px;
        top: 20px;
        font-size: 28px;
        color: var(--black);
        transition: 0.5s;
        cursor: pointer;
    }
    .btn-menu > .fa-times{color: var(--red);}
    .btn-menu > .fa-bars:hover{color:var(--red);}
    .menu .logo-box{margin-left: 30px;}
    .menu .list-container{
        position: fixed;
        top:60px;
        left:-100%;
        background:#fff;
        width: 100%;
        height: calc(100vh - 60px);
    }
    .menu .list-container .lists{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-top:4px solid var(--red);
    }
    .menu .list-container ul li{
        width: 90%;
        border-bottom: 2px solid var(--black);
        display: flex;
        justify-content: center;
    }
    .menu .list-container ul li a{
        font-size: 20px;
        text-align: center;
        padding:12px 0px;
    }
    .menu .list-container ul li a.active{
        background: none;
        color:var(--red);
    }
    .menu .list-container ul li a.active:hover{
        background: none;
    }
    .menu .list-container ul li a:hover{
        background: none;
        color:var(--red);
    }
}

/** IMG Header **/
.img-header{
    position: relative;
    width: 100%;
    height: 100vh;
    background:url(../img/products/products_fondo.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: rgba(0,0,0,0);
}
.img-header .welcome{
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img-header .welcome h1{
    font-size: 50px;
    color:#fff;
    font-weight: 200;
}
.img-header .welcome hr{
    width: 400px;
    height: 2px;
    background: #fff;
    border: none;
    margin-top: 5px;
}
.img-header .welcome p{
    font-size: 20px;
    color: #fff;
    margin-top: 20px;
}
.img-header .welcome > button{
    width: 170px;
    height: 40px;
    background: var(--red);
    border-radius: 24px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.6s;
}
.img-header .welcome > button:hover{
    background:var(--blue);
    font-size: 23px;
}
.img-header .welcome .btnContent{
    width: 100%;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.img-header .welcome .btnContent #btnCatalogo{
    width: 170px;
    height: 40px;
    background: var(--blue);
    border:1px solid var(--red);
    border-radius: 24px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.6s;
}
.img-header .welcome .btnContent #btnCatalogo:hover{
    background:var(--red);
    border:1px solid var(--blue);
    font-size: 23px;
}
.img-header .welcome .btnContent #btnCatalogo a{
    text-decoration: none;
    color: var(--white);
}

@media only screen and (max-width:773px ){
    .img-header .welcome h1{font-size: 40px;}
    .img-header .welcome > button{width: 130px; font-size: 20px;}
}
@media only screen and (max-width:590px){
    .img-header .welcome h1{font-size: 30px;}
    .img-header .welcome hr{width: 200px;}
    .img-header .welcome p{font-size: 17px;}
    .img-header .welcome > button{width: 100px; font-size: 17px;}
    .img-header .welcome > button:hover{width: 100px; font-size: 20px;}
}

/** Acerca de Nosotros **/
.acerca-de{
    width: 100%;
    margin-top: 120px;
}
.acerca-de .info-container{
    width: 80%;
    margin:auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.acerca-de .info-container h1{
    font-size: 50px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}
.acerca-de .info-container p{
    text-align: center;
    font-size: 17px;
    color: var(--black);
    line-height: 35px;
    margin:10px 0px;
}
.acerca-de .info-container section.testimonios button#btnMapa{
    width: 170px;
    height: 40px;
    background: var(--blue);
    border:1px solid var(--red);
    border-radius: 24px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.6s;
}
.acerca-de .info-container section.testimonios button#btnMapa:hover{
    background:var(--red);
    border:1px solid var(--blue);
    font-size: 23px;
}
.acerca-de .info-container section.testimonios button#btnMapa a{
    text-decoration: none;
    color: #fff;
}
.acerca-de .video_shelo{
    margin: auto;
    width: 90%;
    height:350px;
}
.acerca-de .queSomos_hijo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.acerca-de .info-container .about-gallery{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0px;
}
.acerca-de .info-container .about-gallery img{
    width: calc(33.333% - 10px);
    height: 300px;
    margin: 10px 10px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}
.acerca-de .info-container .about-gallery img:hover{
    height: 320px;
}
.acerca-de .info-container .about-more{
    width: 100%;
    display: flex;
    justify-content: center;
}
.acerca-de .info-container .about-more button{
    width: 120px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    background: var(--red);
    border: none;
    outline: none;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.acerca-de .info-container .about-more button:hover{background: var(--blue);}

@media only screen and (max-width:773px){
    .acerca-de .info-container .about-gallery{flex-direction: column;}
    .acerca-de .info-container .about-gallery img{width: 100%;}
    .acerca-de .video_shelo{height: 300px;}
}
@media only screen and (max-width:590px){
    .acerca-de .info-container h1{font-size: 30px;}
    .acerca-de .info-container p{font-size: 15px;}
    .acerca-de .video_shelo{height: auto;}
}

/** Nuestros Servicios **/
.our-projects{
    position: relative;
    width: 100%;
    height: 100%; 
    background: url(../img/img-23.jpg);
    background-attachment:fixed;
    background-position: center;
    background-size: cover;
    margin-top: 100px;
}
.our-projects .deg-background{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,0.5);
}
.our-projects .ejeZproject{
    position: relative;
    width: 100%;
    height: 100%;
}
.our-projects .container-project{
    width: 90%;
    margin:auto;
    padding-bottom: 30px;
    padding-top: 100px;
}
.our-projects .container-project .project-title{
    border:2px solid var(--blue);
    background: var(--black);
    border-radius: 0px 10px 10px 10px;
    padding:10px;
    text-align: center;
    width: 60%;
    margin: auto;
}
.our-projects .container-project .project-title h2{
    font-size: 40px;
    color: var(--blue);
    font-weight: normal;
}
.our-projects .container-project .project-title hr{
   background: var(--blue);
   border: 1px solid var(--blue);
   width: 50%;
   height: 3px;
   margin: 10px auto;
}
.our-projects .container-project .project-title p{
    color: var(--blue);
}
.our-projects .container-project .sheloTop{
    padding: 15px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.our-projects .container-project .sheloTop ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.our-projects .container-project .sheloTop ul li{
    border: 2px solid var(--blue);
    margin: 10px;
    border-radius: 5px;
    background: var(--black);
    list-style: none;
    align-content: center;
    padding: 10px 30px;
    text-align: center;
}
.our-projects .container-project .sheloTop ul li a{
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 10px;
}
.our-projects .container-project .sheloTop ul li a img{
    width: 150px;
    height: 150px;
    border-radius: 10px
}
.our-projects .container-project .sheloTop ul li a img:hover{
    width: 160px;
    height: 160px;
}
@media only screen and (max-width: 773px){
    .our-projects .container-project .sheloTop ul{
        flex-direction: column;
        width: 90%;
    }
}
.our-projects .container-project .sheloSecciones{
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.our-projects .container-project .sheloSecciones ul li{
    background: var(--black);
    border: 2px solid var(--blue);
    border-radius: 15px;
    margin: 15px;
    padding: 10px;
    list-style: none;
    text-align: center;
}
.our-projects .container-project .sheloSecciones ul li a{
    text-decoration: none;
    font-size: 14px;
    color: var(--white);
}
@media only screen and (max-width: 773px){
    .our-projects .container-project .sheloSecciones ul li a{
        font-size: 12px;
    }
}
.our-projects .container-project .project-img{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    padding-bottom: 100px;
}
.our-projects .container-project .project-img img{
  width: calc(30% - 10px);
  margin:10px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}
@media only screen and (max-width:773px){
    .our-projects .container-project .project-img img{width: 120px; margin-bottom: 30px;}
}
@media only screen and (max-width:446px){
    .our-projects .container-project .project-title h2{font-size: 16px;}
    .project-title{width: 70%; border: 1px solid #fff;}
    .project-title hr{width: 70%; height: 2px;}
}

/** Catalogo **/
.testimonios{
    width: 100%;
    margin-top: 120px;
}
.testimonios .testimonios-title{
    width: 50%;
    margin:auto;
    text-align: center;
}
.testimonios .testimonios-title h2{
    font-size: 50px;
    font-weight: normal;
    color: var(--black);
    margin-bottom: 10px;
}
@media only screen and (max-width:447px){
    .testimonios .testimonios-title h2{font-size: 35px;}
}
.testimonios .testimonios-title hr{
    width: 60%;
    height: 2px;
    margin:auto;
    background: var(--black);
}
.testimonios .catalogo{
    margin-bottom: 20px;
}
.testimonios .box-testimonio{
    width: 90%;
    margin: 80px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonios .box-testimonio .card-testimonio{
    width: 45%;
    margin: 20px;
}
.testimonios .box-testimonio .card-testimonio .card-img{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.testimonios .box-testimonio .card-testimonio .card-img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text{
    border: 2px solid var(--red);
    padding:20px;
    border-radius: 20px;
    transition: 0.1s;
    cursor: pointer;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{
    font-size: 30px;
    font-weight: 400;
    color: var(--red);
    text-align: center;
    margin-bottom: 10px;
    transition: 0.1s;
}
.testimonios .box-testimonio .card-testimonio .testimonio-text p{
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    color: var(--black);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover{
    border: 2px solid var(--blue);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover h4{
    color: var(--blue);
}

@media only screen and (max-width:890px){
    .testimonios .box-testimonio .card-testimonio .card-img img{width: 200px; height: 200px;}
    .testimonios .box-testimonio .card-testimonio{width: 100%;}
    .testimonios .box-testimonio .card-testimonio .testimonio-text h4{font-size: 25px;}
    .testimonios .box-testimonio .card-testimonio .testimonio-text p{font-size: 17px; line-height: 35px;}
}
.testimonios .btnContent{
    width: 100%;
    justify-content: center;
    align-content: center;
    text-align: center;
}
.testimonios .btnContent #btnCatalogo {
    width: 170px;
    height: 40px;
    background: var(--blue);
    border-radius: 24px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.6s;
}
.testimonios .btnContent #btnCatalogo:hover{
    background:var(--red);
    font-size: 23px;
}
.testimonios .btnContent #btnCatalogo a{
    text-decoration: none;
    color: var(--white);
}

/** Footer **/
.footer{
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/footer.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.footer .deg-footer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.footer .ejeZfooter{
    position: relative;
    width: 100%;
    height: 100%;
}
.footer .ejeZfooter .footer-content{
    padding: 100px 0px;
    width: 90%;
    margin: auto;
}
.footer .footer-content .footer-title{
    width: 50%;
    margin: auto;
    padding:15px;
}
.footer .footer-content .footer-title h2{
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
}
@media only screen and (max-width:446px){
    .footer .footer-content .footer-title h2{font-size: 25px;}
}
.footer .footer-content .footer-title hr{
    background: #fff;
    height: 2px;
    width: 80%;
    margin:auto;
}
.footer .footer-content .datos{
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.footer .footer-content .datos i{
    font-size: 30px;
    color: #fff;
    margin: 15px;
}
@media only screen and (max-width:550px){
    .footer .footer-content .datos i{font-size: 20px;}
}
@media only screen and (max-width:390px){
    .footer .footer-content .datos i{font-size: 17px;}
}






.footer .footer-text{
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background:rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #fff;
}
.footer .footer-text p{
    font-size: 20px;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width:900px){
    .footer .formulario-content{width: 85%; padding:20px;}
    .footer .formulario-content #formulario input{width: 100%;}
    .footer .formulario-content #formulario textarea{width: 100%;}
}
@media only screen and (max-width:590px){
    .footer .formulario-content{width: 95%; padding:20px;}
    .footer .formulario-content #formulario label{font-size: 17px;}
    .footer .formulario-content #formulario input{width: 100%; font-size: 17px;}
    .footer .formulario-content #formulario textarea{width: 100%;}
    .footer .formulario-content #formulario .mensaje-form p{font-size: 17px;}
    .footer .footer-text{width: 100%; padding: 0px 30px;}
    .footer .footer-text p{font-size: 17px;}
}
