*{
  margin: 0;
  padding: 0;
  font-family: Signika;
}

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
.img {vertical-align: middle;}

/* Slider suave */
html{
  /* width: 100%; */
  height: 100%;
  /* display: flex; */
   justify-content: center;
   align-items: center;
   /* font-size: 10px; */
   margin: 0;
   padding: 0;
  /* background-color: aqua; */
  /* font-family: sans-serif; */
}

body *,
html *{
   box-sizing: border-box;
}

.epic-slider {
   display: flex;
   flex-direction: row;
   width: 100%;
   height: 80vh;
   /* background-color: blue; */
   /* max-width: 100rem; */
   /* aspect-ratio: 20/10; */
}

.epic-slider .epic-slider-view {
   height: 92vh;
   background-color: black;
   width: 100%;
   /* border-radius: 1.5rem; */
   overflow: hidden;
   position: relative;
}

.epic-slider .epic-slider-view .slider-content{
   /* background-color: blue; */
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
 opacity: 0;
 transition: all 250ms ease-in-out;
 transform: translate(-2rem, 0);
}

.epic-slider .epic-slider-view .slider-content.preview{
   z-index: 2;
   transform: translate(2rem, 0);
}

.epic-slider .epic-slider-view .slider-content.active{
   transform: translate(0,0);
   opacity: 1;
   z-index: 4;
}

.epic-slider .epic-slider-view .slider-content.active .info h3,
.epic-slider .epic-slider-view .slider-content.active .info p,
.epic-slider .epic-slider-view .slider-content.active .info button{
   opacity: 1;
   transform: translate(0,0);
}


.info a{
  width: 100%;
  border: 3px solid white; 
  text-align: center;        
  padding: 10px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

.a{
  width: 100%;
}

.info h1{
  font-size: 2rem;
  color: white;
}

.cont-p p{
  font-size: 3lvw;
  color: #9689a7;
  padding: 5%;
}


.epic-slider .epic-slider-view .slider-content .info{
  position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   padding: 2em;
   height: 100%;
   width: 100%;
   z-index: 2;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   background-image: linear-gradient(90deg, black 5%, rgb(0,0,0,0)100%);
}
 
.epic-slider .epic-slider-view .slider-content .info h3{
   color: #fff;
   font-size: 2rem;
   text-transform: uppercase;
   width: 100%;
   opacity: 0;
   transition: 350ms 150ms ease-in-out all;
   transform: translate(5rem, 0);
}

.epic-slider .epic-slider-view .slider-content .info p{
   color: white;
   font-size: 1.5rem;
   line-height: 1.5rem;
   width: 100%;
   margin: 1rem;
   transition: 350ms 100ms ease-in-out all;
   transform: translate(4rem, 0);
}

.epic-slider .epic-slider-view .slider-content .info button{
   font: 1.5rem;
   transition: 350ms 50ms ease-in-out all;
   transform: translate(3rem, 0);
   width: 100%;
  border: 3px solid white; 
  text-align: center;        
  padding: 10px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

.epic-slider .epic-slider-view .slider-content .background{
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
}

.epic-slider-preview {
   display: flex;
   /* background-color: #410099; */
   height: 3vh;
   align-items: center;
   flex-direction: row;
   justify-content: center;
   margin-top: 12vh;
}

.epic-slider-preview button{
   height: 15px;
   margin: 2px;
   border: none;
   width: 15px;
   margin: 0 2px;
   background-color: #bbb;
   border-radius: 50%;
   display: inline-block;
}

.epic-slider-preview button:hover{
   background-color: #717171;
}
@keyframes process{
   0%{
       width: 0;
   }
   100%{
       width: 100%;
   }
}

@-webkit-keyframes process{
   0%{
       width: 0;
   }
   100%{
       width: 100%;
   }
}

@keyframes bounce {
   0%{
       transform: scale(1);
   }
   50%{
       transform: scale(1.15);
   }
   100%{
       transform: scale(1);
   }
}

@-webkit-keyframes bounce {
   0%{
       transform: scale(1);
   }
   50%{
       transform: scale(1.15);
   }
   100%{
       transform: scale(1);
   }
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 90vh;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

.slideshow-container div{
  transition: all 0.5s ease-out;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  /* width: 100%; */
  height: 100vh;
}

#img1{
  background-image: url(IMG/limpieza-1.png);
}

#img2{
  background-image: url(IMG/limpieza-2.png);

}

#img3{
  background-image: url(IMG/limpieza-3.png);
}


/* .slider-auto{
  margin-top: 10vh;
  display: flex;
  width: 100%;
  height: 90vh;
}

.slider-auto img{
  width: 100%;
  height: 100%;
} */

.main-header{
  height: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  /* background-color: white; */
  padding: 0 0.4rem;
}
.main-nav{
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  margin-left: -100%;
  transition: all .2s linear;
  background-color: rgba(0,0,0,.7);
  z-index: 100;
}  

.main-nav.show{
  margin-left: 0;
}

.nav-links{
  /* margin-top: 10%; */
  background-color: rgb(250,250,250);
  display: flex;
  font-family: cursive;
  flex-direction: column;
  width: 70%;
  height: 100%;
}

.centrar{
  height: 70vh;
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}

.centrar li{
  list-style: none;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.link-item{
  margin-top: 2rem;
  color: #410099;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.link-item::after {
  position: absolute;
  content: "";
  background-color: black;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 3px;
  transition: 0.3s ease all;
}

.link-item:hover::after {
  width: 100%;
}

.button-menu{
  z-index: 200;
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  background: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button-menu span{
  width: 37px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background:#410099;
  border-radius: 3px;
  transform-origin: 4px 0px;
  transition: all .2s linear;
}

.button-menu.close span {
  opacity: 1;
  transform: rotate(45deg) translate(0px, 0px);
  background:white;
}

.button-menu.close span:nth-child(2){
  transform: rotate(-45deg) translate(-8px, 5px);
}

.button-menu.close span:nth-child(3){
  display: none;
}

.logo{
  display: none;
}

.icons{
  display: flex;
  flex-direction: row;
  align-self: center;
  height: 30vh;
}

.icons img{
  width: 48px;
  padding: 5px;
}

/* informacion en el scroll sobre nosotros */

.cont-p a{
  width: 100%;
  border: 3px solid white; 
  text-align: center;        
  padding: 10px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}


.cont-p{
  /* margin-left: 10%; */
  width: 80%;
  display: flex;
  padding: 5%;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   padding: 3em;
   height: 100%;
   width: 60%;
   z-index: 2;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   align-items: flex-start;
   background-image: linear-gradient(90deg, black 0%, rgb(0,0,0,0)100%);
   background-color: black;
}  

.cont-p div{
  height: auto;
  background-color: red;
}

.cont-p h1{
  font-size: 6lvw;
  color: white;
}

.cont-p p{
  font-size: 3lvw;
  color: #9689a7;
  padding: 5%;
}

  .cont-who{
    height: auto;
    width: 90%;
    margin-left: 5%;
    margin-top: 5vh;
    display: flex;
    align-items: center;
    border: solid 1px;
    border-color: #775f97;
    box-sizing: border-box;
    box-shadow: 3px 3px 3px 2px rgba(64, 0, 153, 0.233);
    background-color: #eaddff57;
  }

  .who-are-we{
    margin-top: 2rem;
    margin: 2%;
    color: black;
  }

  .who-are-we p{
    font-family: cursive;
  }


/* estilo de mision vision y valores y la descripcion de la dueña */

.parte-media{
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .cont-obj{
    margin-top: 10vh;
    height: auto;
    width: 90%;
    margin-left: 5%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .cont-obj div{
    height: auto;
    width: 80%;
    margin: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: solid 1px; */
    /* border-color: #40009973; */
    box-sizing: border-box;
    margin-top: 5%;
    /* box-shadow: 10%; */
    box-shadow: 3px 3px 3px 2px rgba(64, 0, 153, 0.233);
    /* background-color: #eaddff57; */
    border-radius: 10px;
    transition: 0.1s;
  }

  .cont-obj div:hover{
    transform: scale(1.02);
    box-shadow: 0 5px 20px #40009973;
  }

  .cont-obj img{
    width: 50%;
  }

  .cont-obj h2{
    padding: 5px 5px;
  }

  .cont-obj p{
    padding: 5px 10px;
    margin: 5px 5px;
  }

  .cont-p-boss{
    height: 80vh;
    width: 90%;
    max-width: 800px;
    margin-left: 5%;
    margin-top: 5vh;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px;
    border-color: #40009973;
    box-sizing: border-box;
    box-shadow: 3px 3px 3px 2px rgba(64, 0, 153, 0.233);
    border-radius: 10px;
    transition: 0.5s;
    /* background-color: #eaddff57; */
  }

  .cont-p-boss:hover{
      transform: scale(1.02);
      box-shadow: 0 5px 20px #40009973;
  }

  .cont-p-boss img{
    padding: 0%;
  }

  .cont-img-boss img{
    width: 40%;
  }
  
  .cont-img-boss{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    background-image:url(IMG/fondo-para-laidy.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    background-position: center;
  }

  .cont-img-boss h1{
    color: white;
  }

  .cont-w-boss{
    /* background-color: red; */
    height: 30%;
  }
  
  .cont-boss{
    height: 100%;
    width: 90%;
    background-image:url(IMG/leidy2.png) ;
    background-size: cover;
    background-repeat: no-repeat;
  }

  @media screen and (min-width: 370px){
    .epic-slider .epic-slider-view .slider-content .info button{
      width: 70%;
     color: red;
   }

   .cont-boss{
    width: 80%;
  }
  }

  @media screen and (min-width: 400px){
    .cont-boss{
    width: 70%;
  }
  }


  @media screen and (min-width: 450px){
    .epic-slider .epic-slider-view .slider-content .info button{
      width: 65%;
     color: blue;
   }

   .epic-slider .epic-slider-view .slider-content .info p{
    width: 90%;
  }

  .info a{
    width: 100%;
  }
  }

  @media screen and (min-width: 500px){
    .info a{
      width: 85%;
    }
  }

  @media screen and (min-width: 550px){
    .cont-boss{
    width: 80%;
  }
  }

  

  @media screen and (min-width: 600px){
    .epic-slider .epic-slider-view .slider-content .info button{
      width: 60%;
     color: blueviolet;
   }
   .epic-slider .epic-slider-view .slider-content .info p{
    width: 70%;
  }

  .info a{
    width: 75%;
  }

  .cont-boss{
    width: 45%;
  }
  }

  @media screen and (min-width: 1000px){
    .epic-slider .epic-slider-view .slider-content .info button{
      width: 55%;
     color: lawngreen;
   }
   .epic-slider .epic-slider-view .slider-content .info p{
    width: 100%;
  }

  .cont-boss{
    height: 100%;
    width: 60%;
    background-image:url(IMG/leidy2.png) ;
    background-size: cover;
    background-repeat: no-repeat;
  }
  }


  @media screen and (min-width: 1025px) {
    .fondo{
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .info h1{
      font-size: 6lvw;
    }

    .cont-img-boss{
      flex-direction: row;
    }
    

    .epic-slider .epic-slider-view .slider-content .info{
      width: 50%;
      background-image: linear-gradient(90deg, black 10%, rgb(0,0,0,0)100%);
    }

    .epic-slider .epic-slider-view .slider-content .info button{
      font: 1.5rem;
      transition: 350ms 50ms ease-in-out all;
      transform: translate(3rem, 0);
      width: 60%;
     border: 3px solid white; 
     text-align: center;        
     padding: 10px;
     text-decoration: none;
     color: white;
     border-radius: 30px;
     font-weight: bold;
     display: inline-block;
   }


    .logo{
        display: block;
    }

    .icons{
      display: none;
    }

    .button-menu{
      display: none;
    }
  
    .main-nav{
      /* position: relative; */
      margin-left: 0;
      /* flex-basis: 70%; */
      height: 15vh;
      width: 100%;
    }

    .centrar li{
      flex-direction: row;
      align-items: center;
    }

    .centrar{
      height: 0px;
      margin-top: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: center;
      background-color: blue;
    }
  
    .nav-links{
      width: 100vw;
      height: 15vh;
      height: min(100% + 1px, 15vh);
    }

    .nav-links svg{
        width: 48px;
        height: 48px;
    }
  
    .link-item{
      display: inline-block;
      margin-top: 0;
      margin-right: 2rem;
    }

    .link-item::after {
      display: none;
    }
    
    .link-item:hover::after {
      display: none;
    }

    .link-item:hover{
     color: rgba(234,148,26);
    }
  
    .main-logo{
      flex-basis: 30%;
    }

    .cont-obj{
      margin-top: 10vh;
      height: auto;
      width: 90%;
      margin-left: 5%;
      /* background-color: red; */
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    .cont-obj div{
      height: 60vh;
    }

    .cont-p-boss{
      flex-direction: column;
    }
  }

  .slider{
    margin-top: 0px;
    /* width: 30%; */
    height: 90vh;
    margin: 0px;
    overflow: hidden;
}

.slider ul{
    display: flex;
    padding: 0%;
    margin: 0%;
    width: 400%;

    animation: cambio 20s infinite;
}

.slider li{
    width: 100%;
    list-style: none;
}

.slider img{
    width: 100%;
}

@keyframes cambio{
    0% {margin-left: 0%; }
    20% {margin-left: 0%; }

    25% {margin-left: -100%; }
    45% {margin-left: -100%; }

    50% {margin-left: -200%; }
    70% {margin-left: -200%; }
   
    75% {margin-left: -300%; }
    100% {margin-left: -300%; }
}