:root{
   --red:#ff2e63;
   --black:#252a34;
   --blue:#4169E1;
   --white:#eaeaea;
   --title:23px;
   --text:45px;
}

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background:#000000;
    overflow-x: hidden;
    font-family: 'Arial Text', sans-serif;
}
.go-top{
    position: fixed;
    bottom: 100px;
    right: -100%;
    width: 50px;
    height: 50px;
    background: #fff;
    border:2px solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: 0.5s;
}
.go-top:hover{
    background: var(--blue);
    color:#fff;
    border: 2px solid var(--white);
}
.go-top:hover span{color:var(--while);}

.go-top > span{
   font-size: 30px;
   color: var(--dark);
}


/** 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:2;
    color:var(--dark);
}
.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(--dark);
    border-radius: 24px;
    transition: 0.3s;
    font-size: 16px;
}
.menu .list-container ul li a.active{
    background: var(--blue);
    color:#fff;
}
.menu .list-container ul li a:hover{
    background: var(--blue);
    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(--dark);
        transition: 0.5s;
        cursor: pointer;
      }
    .btn-menu > .fa-times{color: var(--blue);}
    .btn-menu > .fa-bars:hover{color:var(--blue);}
    .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(--white);
        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(--blue);
    }
    .menu .list-container ul li a:hover{
        background: none;
        color:var(--blue);
    }
}

/** Navegation Menu **/

/** IMG Header **/
.img-header{
    position: relative;
    width: 100%;
    height: 25vh;
 background:url(../img1/color17,jpeg.png);
  background-attachment: fixed;
    background-position: justify;
 background-size: cover;
}
.img-header .welcome{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   

    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.img-header .welcome h1{
    font-size: 40px;
    color:#fff;
    font-weight:0;
}
.img-header .welcome hr{
    width: 100px;
    height: 2px;
    background: #fff;
    border: none;
    margin-top: 2px;
    
}
.img-header .welcome p{
    font-size: 15px;
    color: #fff;
    margin-top: 20px;
}
.img-header .welcome > button{
    width: 100px;
    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.5s;
}
.img-header .welcome > button:hover{
    background:var(--blue);
}

@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: 100px;}
    .img-header .welcome p{font-size: 17px;}
    .img-header .welcome > button{width: 100px; font-size: 17px;}
}





/** Testimonios **/


.testimonios .testimonios-title h2{
    font-size: 60px;
    font-weight: normal;
    color: var(--while);
    margin-bottom: 10px;
}
.testimonios .testimonios-title hr{
    width: 100%;
    height: 2px;
    margin:auto;
    background: var(--white);
}
.testimonios .box-testimonio{
    width: 100%;
    margin: 5px auto;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}
.testimonios .box-testimonio .card-testimonio{
    width: 35%;
    margin: 50px;
}
.testimonios .box-testimonio .card-testimonio .card-img{
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.testimonios .box-testimonio .card-testimonio .card-img img{
    width: 200px;
    height: 200px;
   
}
.testimonios .box-testimonio .card-testimonio .testimonio-text{
    border: 2px solid var(--white);
    padding:15px;
    transition: 0.1s;
  
}
.testimonios .box-testimonio .card-testimonio .testimonio-text h4{
    font-size: 30px;
    font-weight: 100;
    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: 30px;
    color: var(--white);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover{
    border: 3px solid var(--white);
}
.testimonios .box-testimonio .card-testimonio .testimonio-text:hover h4{
    color: var(--white);
}

@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;}
}


.icon-block {
  padding: 0 100px;
}
.icon-block .material-icons {
	font-size: inherit;
}
.slider .btn{
  margin-top: 20px;
  padding:0 20px;
  border-radius: 10px;

}
.footer-text{
  font-size: 5px;
}

.social-container{
  width: 100%;
  height: 100px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-container a{
  color:#ffff;
  font-size: 50px;
  margin:0px 40px;
}







