.output-container {
	width: 600px;
	margin: 1% 50%;
}

.comment-form-container {
	border: #e0dfdf 4px solid;
	padding: 30px;
	border-radius: 3px;

}

.input-row {
	margin-bottom: 20px;
	color: #ffffff;
}

.input-field {
	width: 100%;
	border-radius: 3px;
	padding: 10px;
	border: #e0dfdf 1px solid;
    box-sizing: border-box;
	height:30px;
}

.btn-submit {
	padding: 10px 20px;
    background: #137aea;
    border: #137aea 1px solid;
    color: #f0f0f0;
    border-radius: 3px;
}

.output-container ul {
	list-style-type: none;
}

.comment-row {
	border-bottom: #e0dfdf 1px solid;
	margin-bottom: 15px;
	padding: 15px;
	
}

.outer-comment {
	padding: 30px;
	border: #dedddd 1px solid;
    border-radius: 3px;
}

span.commet-row-label {
	font-style: italic;
	
}

span.posted-by {
	text-decoration: underline;
	margin-left:10px;
}

.comment-info {
	font-size: 0.9em;
	color: #ffffff;
}

.comment-text {
	margin: 10px 0px;
	margin-left: 40px;
	color: #ffffff;
}

.btn-reply {
	text-decoration: underline !important;
    color: #ffffff !important;
    font-size: 0.9em;
    cursor: pointer;
	
	margin-left:40px;
}

#comment-message {
	margin-left: 20px;
	color: #ffffff;
	display: none;
}
.icon-smile:before {
    content: " ";
    width: 30px;
    height: 30px;
    display: flex;
    background: url(emo.png);
}














.contenedor {
	width: 90%;
	max-width: 1200px;
    background-size: cover;
    background-position:center;
	margin-left: auto; 
	margin-right: auto;
    margin-top: 15px;
    padding: 20px 30px;
    position: relative;
    z-index: 99;
    opacity: .85;
}

.contenedor.header {
    height: calc(100vh - 55px);
    border: 3px solid #555555;
}

.barra-navegacion ul {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.barra-navegacion li {
    list-style: none;
    display: inline-block;
}

.barra-navegacion .logo { 
    color:#3dff3e;
    font-size: 50px;
}

.barra-navegacion a {
    text-decoration: none;
    color: #fff;
    font-size: 19px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: .5s ease;
}

.barra-navegacion a:hover {
    color: #3dff3e;
    border-bottom: 1px solid currentcolor;
}

.contenido-descripcion {
    width: 60%;
    display: flex;
    height: 100%;
    align-items: center;
}

.contenido-descripcion .titulo {
    text-transform: uppercase;
    letter-spacing: 5px;
}

.contenido-descripcion .titulo span:first-child {
    font-size: 50px; 
    display: block;
    font-weight: 300;
}

.contenido-descripcion .titulo span:last-child {
    font-weight: 900;
    font-size: 100px;
}

.contenido-descripcion .btn-link {
    display: inline-block;
    padding: 10px 20px;
    margin: 25px 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #3dff3e;
    border: 1px solid #555555;
    animation: parpadeo 2s linear infinite;
    transition: .7s ease;
}

.contenido-descripcion .btn-link:hover {
    border: 1px solid #3dff3e;
    animation: none;
}

  
  /* ---- particles.js container ---- */
  
  #particles-js{
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -1;
  }  







:root{
   --red:#56963a;
   --blue:#ede62b;
   --black:#252a34;
   --white:#eaeaea;
}

*{
   margin:0;
   padding:0;
   box-sizing: border-box;
}

body{
   background: rgb(0, 0, 0);
   overflow-x: hidden;
   font-family: 'Raleway', sans-serif;
}

/** Ir arriba **/
.go-top{
    position: fixed;
    bottom: 100px;
    right: -100%;
    width: 50px;
    height: 50px;
    background: rgb(226, 220, 173);
    border:2px solid var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: 0.5s;
}
.go-top > span:hover{
    color: var(--white);
}
.go-top:hover{
    background: var(--red);
    color:#fff;
    border:2px solid var(--white);
}
.go-top > span{
    font-size: 30px;
    color:var(--black);
}

/** Efecto 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;
}

/** Menu de Navegacion **/
#header{
    position: relative;
    width: 60%;
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}
.menu .logo-box{
    margin-left: 30px;
}
.menu .logo-box h1 a{
    text-decoration: none;
    font-size: 80px;
    font-weight: 800;
    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.activo{
    background:var(--red);
    color: #ffff;
}
.menu .list-container ul li a:hover{
    background:var(--red);
    color: #ffff;
}

.btn-menu > .fa-bars{
    display: none;
}

/** Menu de Navegacion **/




/** Testimonios **/
.testimonios{
    width: 100%;
    margin-top: 120px;
	margin:1% 35%;
	
}
.testimonios .testimonios-title{
    width: 50%;
    margin:auto;
    text-align: center;
}
.testimonios .testimonios-title h2{
    font-size:50px;
    font-weight: 800;
    color:var(--white);
    margin-bottom: 15px;
}
.testimonios .testimonios-title hr{
    width:60%;
    height: 2px;
    margin:auto;
    background: var(--white);
}
.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(--white);
}
.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);
}

/** Testimonios **/

/** Footer **/
.footer{
    position: relative;
    width:100%;
    height: 100%;
    background: url(../../img/footer.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
	margin: 1% 35%;
	
}
.footer .deg-footer{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}
.footer .ejeZfooter{
    position: relative;
    width: 100%;
    height: 100%;
}
.footer .footer-content{
    padding-top: 100px;
    width:90%;
    margin: 1% 50%;
}
.footer .footer-content .footer-title{
    width: 50%;
    margin: 1% 50%;
    border:2px solid #ffff;
    padding:15px;
}
.footer .footer-content .footer-title h2{
    font-size: 35px;
    font-weight: 400;
    color:#fff;
    text-align: center;
    margin-bottom: 5px;
}
.footer .footer-content .footer-title hr{
    background: #fff;
    height: 2px;
    width: 80%;
    margin:auto;
}
.footer .formulario-content{
    width: 60%;
    margin:50px auto;
    background: #fff;
    padding:30px;
    border-radius: 50px;
    border:1.5px solid var(--red);
    margin-bottom: 100px;
}
.footer .formulario-content #formulario{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.footer .formulario-content #formulario label{
    font-size: 20px;
    text-align: center;
    color:var(--black);
    margin:30px 0px 10px 0px;
}
.footer .formulario-content #formulario input{
    width: 90%;
    height: 40px;
    margin:auto;
    border-radius: 24px;
    outline: none;
    border:1.5px solid var(--red);
    text-align: center;
    font-size: 18px;
    color: var(--black);
}
.footer .formulario-content #formulario textarea{
    width: 90%;
    height: 200px;
    margin:auto;
    border-radius: 24px;
    outline: none;
    border:1.5px solid var(--red);
    padding: 20px;
    font-size: 15px;
    color: var(--black);
}
.footer .formulario-content #formulario .send{
    margin:30px;
    display: flex;
    justify-content: center;
}
.footer .formulario-content #formulario .send 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;
}
.footer .formulario-content #formulario .send button:hover{
    background: var(--blue);
}
.footer .formulario-content #formulario .mensaje-form{
    width: 100%;
    margin:auto;
    padding:20px;
}
.footer .formulario-content #formulario .mensaje-form p{
    font-size: 19px;
    color:var(--black);
    line-height: 35px;
}
.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-family: 'Raleway', cursive;
    font-size: 30px;
    text-align: center;
    color:#fff;
}

/** Footer **/

/** Media Query **/

@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-bars:hover{
    color:var(--red);
   }
   .btn-menu > .fa-times{
       color:var(--red);
   }
   .menu .list-container{
       position:fixed;
       top: 60px;
       left: -100%;
       background: #ffff;
       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 .lists li{
       width: 90%;
       border-bottom: 2px solid var(--black);
       display: flex;
       justify-content: center;
   }
   .menu .list-container .lists li a{
       font-size:20px;
       text-align: center;
       padding:12px 0px;
   }
   .menu .list-container .lists li a.activo{
       background: none;
       color:var(--red);
   }
   .menu .list-container .lists li a:hover{
    background: none;
    color:var(--red);
   }

}


@media only screen and (max-width:890px) {
  /** Testimonios **/
  .testimonios .box-testimonios .card-testimonio .card-img img{
      width: 200px;
      height: 200px;
  }
  .testimonios .box-testimonios .card-testimonio{
      width: 100%;
  }
  .testimonios .box-testimonios .card-testimonio .testimonio-text h4{
      font-size: 25px;
  }
  .testimonios .box-testimonios .card-testimonio .testimonio-text p{
      font-size: 17px;
      line-height: 35px;
  }

}

@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:773px) {
   
    /** IMG header **/
    .img-header .welcome h1{
        font-size:40px;
    }
    .img-header .welcome > button{
        width: 130px;
        font-size: 20px;
    }

    /** Acerca de Nosotros **/
    .acerca-de .info-container .about-gallery{
        flex-direction: column;
    }
    .acerca-de .info-container .about-gallery img{
        width: 100%;
    }

    /** Nuestros Proyectos **/
    .our-projects .container-project .project-img img{
        width: 80%;
        margin-bottom: 30px;
    }

}

@media only screen and (max-width:590px) {
   /** Img Header **/
   .img-header .welcome h1{
       font-size: 30px;
   }
   .img-header .welcome hr{
       width: 100px;
   }
   .img-header .welcome p{
       font-size: 17px;
   }
   .img-header .welcome > button{
       width: 100px;
       font-size:17px;
   }

}

@media only screen and (max-width:890px) {
  /** Testimonios **/
  .testimonios .box-testimonios .card-testimonio .card-img img{
      width: 200px;
      height: 200px;
  }
  .testimonios .box-testimonios .card-testimonio{
      width: 100%;
  }
  .testimonios .box-testimonios .card-testimonio .testimonio-text h4{
      font-size: 25px;
  }
  .testimonios .box-testimonios .card-testimonio .testimonio-text p{
      font-size: 17px;
      line-height: 35px;
  }

}

@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%;
   }
}








































































/* ---- particles.js container ---- */
  
#particles-js{
    width: 100%;
    height: 100%;
    background-color: #000000;
    background-image: url('');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: fixed;
    z-index: -1;
  }  