@import url('https://fonts.googleapis.com/css2? family= Inter:wght@200;300;400;500;600;700 & display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
} 
a{
  text-decoration: none;
  list-style: none;
}
li{
  text-decoration: none;
  list-style: none;
}
:root{
  --purple-color: #4C58A2;
  --parrafo-color: #5B5B5B;
  --main-color: #D3D3D3;
  --white-color: white;

}

nav{
  display: flex;
  position: fixed;
  z-index: 100;
  height: auto;
  width: 100%;
  height: 70px;
  background: var(--main-color);
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
.logo{
  width: 70px;
  border-radius: 50%;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.btn-contact{
  padding: 10px 15px;
  background-color: var(--purple-color);
  color: var(--main-color);
  border-radius: 30px;
  transition: .4s;
}
.btn-contact:hover{
  background-color: var(--white-color);
  color: var(--purple-color);
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: var(--parrafo-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a:hover,
nav ul li a.active{
  color: var(--main-color);
  background-color: #2d2d2d;
}
nav .menu-btn i{
  color: var(--purple-color);
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }

}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }

  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
    color: var(--purple-color);
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: var(--main-color);
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;

  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: var(--purple-color);
  }
  .hero .hero-text h1{
    font-size: 35px;
  }
  .pr-img{
    margin-top: 60px;
    width: 300px;
  }
  .contact-description p iframe{
    width: auto;
    height: 400px;

  }
  .footer-description{
    flex-direction: column;

  }
  .footer-text{
    margin-bottom: 50px;
  }
  footer{
    height: auto;
  }

}


@media screen and (max-width: 1180px){
  .section-pr{
    width: 100%;
    height: auto;
    padding: 70px 0px;
  }

}
.hero{
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, 0)), url(/img/33.jpeg);
  background-size: cover ;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-basis: 2rem;
}
.section-pr .pr-img{
  width: 400px;
  height: auto;
}
.scrolltop{
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  background: var(--purple-color) ;
  border-radius: .4rem;
  z-index: 1000;
  transition: .4s;
  visibility: hidden;

}
.scrolltop:hover{
  background-color: var(--white-color);
  color: var(--purple-color);
}

.scrolltop__icon{
  font-size: 1.5rem;
  color: var(--main-color);
}
.scroll-header{
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}
.show-scroll{
  visibility: visible;
  bottom: 1.5rem;
}

.hero-text h1{
  color: var(--white-color);
  font-size: 40px;
}
.hero-text p{
  color: var(--white-color);
  margin-top: 15px;
  margin-bottom: 30px;
}
.arrow{
  position: absolute;
  bottom: 0;
  margin-bottom: 30px;
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, -50%);
}
.arrow span{
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: rotate(45deg);
  animation: scroll 2s infinite;
}
.arrow span:nth-child(2){
  animation-delay: -.2s;
}
.arrow span:nth-child(3){
  animation-delay: -.4s;
}
@keyframes scroll{
  0%{
    opacity: 0;
    transform: rotate(45deg)translate(-20px, -20px);

  }
  50%{
    opacity: 1;

  }
  100%{
    opacity: 0;
    transform: rotate(45deg)translate(20px, 20px);

  }
}
.wsp-btn{
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 10px;
  background-color: #559A60;
  color: var(--white-color);
  align-items: center;
  display: inline-flex;
  transition: .4s;
}
.wsp-btn:hover{
  background-color: #386840;

}
.bxl-whatsapp{
  font-size: 30px;
  margin-right: 5px;
}
.profesionalismo{
  width: 100%;
  height: auto;
  background-color: var(--main-color);
  padding-top: 50px;
}
.text-center{
  display: flex;
  padding-top: 50px;
  justify-content: center;
  color: var(--parrafo-color);
  position: relative;
}
.text-center::before{
  background-color: var(--purple-color);
  content: "";
  position: absolute;
  top: 85px;
  width: 4rem;
  height: 5px;

}
.flex-pr{
  width: 1280px;
  max-width: 95%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  margin-top: 100px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 0 100px;
}
.pr-title{
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--parrafo-color);
}
.description-pr{
  font-size: 15px;
  width: 450px;
  font-weight: 500;
  max-width: 100%;
  color: var(--purple-color);
  margin-top: 10px;
  margin-bottom: 10px;
}
.description-pr p{
  color: var(--parrafo-color);
}

.section-pr h2{
  color: var(--parrafo-color);
  position: relative;
}

.checks{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}
.chek{
  display: flex;
  color: var(--purple-color);
}
.bx-check{
  padding: 5px;
  background-color: #4c57a265;
  border-radius: 50%;
  margin-right: 10px;
  
}

.services{
  width: 100%;
  height: auto;
  background-color: var(--main-color);
}
.services-box-two{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
  justify-content: center;
  padding-bottom: 100px;
}

.services-box{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 100px;
  justify-content: center;
}

.box{
  width: 280px;
  height: 270px;
  padding: 10px;
  border-radius: 6px;
  background-color: var(--main-color);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.25);
}
.box img{
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.box h5{
  font-size: 15px;
  color: var(--purple-color);
}

/*SLIDE*/

/* images */
.Carousel{
  width: 100%;
  background-color: var(--main-color);
}

.slick-list{
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 304px;
  padding: 250px 0px;
  margin: 0px auto;
  max-width: 90vw;
  overflow: hidden;
}
.slick-track{
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  transition: .5s ease-in-out;
}
.slick{
  position: relative;
  width: 275px;
  padding: 0 18px;
  float: left;
  box-sizing: border-box;
  display: flex;
  height: 100%;
}

/* buttons */

.slick-arrow{
  border-radius: 30px;
  background-color: #fff;
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
  border: 0;
  cursor: pointer;
}
.slick-arrow:focus{
  outline: 0;
}
.slick-arrow svg{
  width: 12px;
  height: 100%;
  color: rgba(0,0,0,.7);
}
.slick-prev{
  left: 0px;
}
.slick-next{
  right: 0px;
}


/* card slide*/
.card-slide{
  position: relative;
  left: -6%;
  width: 300px;
  height: 370px;
  transition: 0.3s ease-out;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}
.card-slide .img-slide{
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.card-slide .img-slide img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  display: block;
  transition: 0.5s;
}

.card-slide .card-slide-content{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  padding: 12px;
  background-color: var(--purple-color);
  transition: all 0.5s cubic-bezier(.48, -0.28, 0.41, 1.4);
  box-sizing: border-box;
  overflow: hidden;
}

/* .card-slide:hover .card-slide-content{
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
} */
.card-slide-content p{
  margin: 10px 0 0;
  padding: 1em 1em;
  color: var(--white-color);
  transform: translateY(2em);
  line-height: 1.3em;
  transition: 0.3s;
  opacity: 0;
}
/* .card-slide:hover .card-slide-content p{
  transform: translate(0);
  opacity: 1;
} */
.card-slide-content h2{
  color: var(--white-color);
}
.card-slide:hover{
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.4);
}

.contact{
  width: 100%;
  height:auto;
  padding-bottom: 100px;
  background-color: var(--main-color);
}
.contact-description{
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
}
.contact-text{
  width: 400px;
}
.contact-text p{
  color: var(--parrafo-color);
}
.contact-text h2{
  margin-bottom: 10px;
}
.social{
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--parrafo-color);
}
.social:hover{
  color: var(--purple-color);
  cursor: pointer;
}
.social i{
  font-size: 20px;
  margin-right: 10px;
}
.contact-redes{
  margin-top: 20px;
}
h2{
  color: var(--parrafo-color);
}
footer{
  width: 100%;
  bottom: 0;
  color: var(--main-color);
  height: auto;
  background-color: #2d2d2d;
}
.footer-bottom{
  background-color: var(--parrafo-color);
  color: var(--main-color);
  padding: 10px;
  display: flex;
  justify-content: center;
  bottom: 0;

}
.footer-description{
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: space-around;
  align-items: center;
}
.footer-text{
  width: 300px;
}

.footer-link ul li a{
  color: var(--main-color);
  text-decoration: underline;
  transition: .4s;
}
.footer-link ul li{
  margin: 10px;
}
.footer-link li a:hover{
  color: var(--purple-color);
}