
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Sen:wght@800&display=swap);



/* mandar la scrollbar a tlaxcala */
::-webkit-scrollbar {
  width: 0px;
}






body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #EFEFEF;
    text-decoration: none;
  }

  a{
    text-decoration: none;
  }

  .navbar {
    position: fixed;
    justify-content: right;
    top: 30px;
    left: 20px;
    right: 20px; /* Added right spacing */
    background-color: #fff;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    padding: 25px; /* Adjusted padding */
    border-radius: 15px;
    z-index: 999;
    display: flex;
    align-items: center; /* Center vertically */
    background-color: #ffffff;
    overflow: hidden;
  }
  
  .navbar-logo {
    position: fixed;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-top: 5px;
    z-index: 1000;
  }
  
  .navbar-stuff {
    text-decoration: none;
    margin-right: 30px;
    font-family: 'Sen', sans-serif;
    color: #236ff3;
    font-size: 20px;
    transition-duration: 0.2s;
    
    flex-grow: 1; /* Added flex-grow property to evenly distribute the space */
    text-align: center; /* Center the text horizontally */
  }
  
  .navbar-stuff:hover {
    color: #238ef3;
    text-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    height: 120px;
  }

  
  .hero-text {
    text-align: left;
    color: #fff;
    position: relative; /* Agregamos posición relativa para que el texto quede por encima del pseudo-elemento */
    z-index: 2; /* Establecemos una posición por encima del pseudo-elemento */
    padding-left: 5%;
    padding-bottom: 10%;

  }

  .hero-text h2 {
    font-family: 'Sen', sans-serif;
    color: #23C3F3;
    font-size: 150px;
    margin-bottom: -50px;
  }
  
  .hero-text p {
    font-family: 'Quicksand', sans-serif;
    color: rgb(255, 255, 255);
    max-width: 100%;
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .hero-image {
    background-image: url(assets/hero.png);
    height: 960px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative; /* Agregamos posición relativa para que el pseudo-elemento funcione correctamente */
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.3);
  }
  
  .hero-image::before {
    content: ""; /* Agregamos un pseudo-elemento */
    position: absolute; /* Lo posicionamos sobre el contenedor de la imagen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 44, 65, 0.75); /* Establecemos un color semitransparente para el fondo */
    z-index: 1; /* Establecemos una posición por encima de la imagen */
  }

  .topbtn {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Sen', sans-serif;
    display: inline-block flex;
    background-color: #236ff3;
    color: #fff;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    border-radius: 15px;
    text-decoration: none;
    margin-right: 0px;
    transition-duration: 0.4s;
  }

  .topbtn:hover {
    background-color: #238ef3;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
  }



  .btn {
    font-family: 'Quicksand', sans-serif;
    display: inline-block flex;
    background-color: #236ff3;
    color: #fff;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 50px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    transition-duration: 0.3s;
  }
  
  .btn2 {
    font-family: 'Sen', sans-serif;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 25px;
    padding: 30px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-right: 10px;
    transition-duration: 0.3s;
  }

  .btn:hover {
    margin-left: 4px;
    margin-right: 14px;
    font-size: 24px;
    background-color: #238ef3;
  }
  .btn2:hover {
    transform: scale(1.1);
  }

  .topbtnlogin {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    font-family: 'Sen', sans-serif;
    display: inline-block flex;
    background-color: #EFEFEF;
    color: #236ff3;
    font-size: 20px;
    padding-left: 20px;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition-duration: 0.4s;
  }
  
  .topbtnlogin:hover {
    background-color: #e7e7e7;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.3);
  }
  .scroll-down-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border: 2px solid #23C3F3;
    border-radius: 50%;
    z-index: 3;
    transition-duration: 0.5s;
  }
  
  .scroll-down-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 25px solid #23C3F3;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    width: 0;
    height: 0;
    transition: opacity 0.3s ease-in-out;
    animation: scrollDown 2s infinite;
  }
  
  .scroll-down-arrow:hover {
    border: 2px solid #ffffff;
  }

  .about {
    background-color: #EFEFEF;
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 20px;
    text-align: center;
  }
  
  .about h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 15px;
    margin-top: 50px;
  }
  .about p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 200;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    color: #7B8697;
    max-width: 600px;
  }
  
  .rectangle {
    position: relative;
    width: 900px;
    height: 400px;
    background-color: #236ff3;
    border-radius: 35px;
    color: white;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    margin: 50px;
    padding-left: 50px;
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.3);
  }
  
  .rectangle img {
    width: 250px;
    height: 250px;
    border: 5px solid #238ef3;
    border-radius: 10px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    
  }

  .rectangle p {
    font-family: 'Quicksand', sans-serif;
    color: rgb(255, 255, 255);
    text-align: left;
    max-width: 100%;
    font-weight: 10;
    font-size: 22px;
    margin: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }


  .buttons2 {
    margin: 0 auto;
    max-width: 70%; 
    font-family: 'Quicksand', sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-top: 75px;
    margin-bottom: 75px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
    
  .button {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    
  .button__icon {
    background-color: #006eff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
    
  .button__icon i {
    color: #fff;
    font-size: 36px;
  }
    
  .button__title {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #000000;
  }
    
  .button__description {
    font-size: 14px;
    font-weight: 200;
    color: #7B8697;
    text-align: center;
    margin-bottom: 40px;
    max-width: 70%;
  }

  .vouches {
    background-color: #EFEFEF;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-content: center;
    margin: 20px;
    text-align: center;
  }

  .vouchet {
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: #EFEFEF;
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 20px;
    text-align: center;
    margin-bottom: 0px;
  }
  
  .vouchet h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 15px;
    margin-top: 20px;
  }
  .vouchet p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 200;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    color: #7B8697;
    max-width: 600px;
    margin-bottom: 0px;
  }

  .reviewbtn {
    background-color: #EFEFEF;
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 20px;
    text-align: center;
  }
  
  .nj-review {
    font-family: 'Quicksand', sans-serif;
    display: inline-block flex;
    background-color: #236ff3;
    color: #fff;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 50px;
    border-radius: 7px;
    text-decoration: none;
    margin-right: 10px;
    transition-duration: 0.3s;
  }


  .container-footer{
    box-sizing: border-box;
    max-width: 1170px;
    margin:auto;
  }

  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #236ff3;
      padding: 50px 0;
  }
  .footer-col{
     width: 25%;
     padding: 0 0px;
  }
  .footer-col h4{
    font-family: 'Quicksand', sans-serif;
    font-size: 25px;
    font-weight: 900;
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: rgba(255,255,255,0.2);;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }

  .footer-col li:not(:last-child){
    margin-bottom: 10px;
  }

  .footer-col li{
    text-decoration: none;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
    color: #ffffff;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col li a{
    text-decoration: none;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
    color: #ffffff;
    display: block;
    transition: all 0.3s ease;
  }

    

  .footer-col li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #236ff3;
    background-color: #ffffff;
  }



/* Gallery stuff: */

  .titledesc {
    padding-top: 90px;
    padding-bottom: 30px;
    background-color: #EFEFEF;
    display: grid;
    justify-content: center;
    align-content: center;
    margin: 20px;
    text-align: center;
  }
  
  .titledesc h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 15px;
    margin-top: 50px;
  }
  .titledesc p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 200;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    color: #7B8697;
    max-width: 600px;
  }


  .images h1 {
    text-decoration: none;
    padding-top: 25px;
    margin-right: 0px;
    font-family: 'Sen', sans-serif;
    color: #236ff3;
    font-size: 22px;
    transition-duration: 0.2s;
    
    flex-grow: 1; /* Added flex-grow property to evenly distribute the space */
    text-align: center; /* Center the text horizontally */
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    
}
.grid img {
    width: 100%;
    height: auto;
    display: block;
  }

  .grid-item .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.3);
}
.grid-item:hover {
    z-index: 10;
    filter: brightness(50%);
    transform: scale(1.026);
}




.popup {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
    
}

.popup-content {
    
    background-color: #EFEFEF;
    margin: 125px auto;
    padding: 20px;
    border: 5px;
    border-radius: 15px;
    width: 650px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    
}

.popup-content h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
  margin: 0px;
  margin-top: 1px;
}


.popup-content p {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 200;
  justify-content: left;
  align-content: left;
  text-align: left;
  margin: 0;
  margin-top: 0px;
  color: #7B8697;
  max-width: 600px;
  
}

.close-button {
  text-decoration: none;
  font-family: 'Sen', sans-serif;
  color: #236ff3;
  font-size: 40px;
  transition-duration: 0.2s;
  cursor: pointer;
  float: right;
}

div.container {
  
  width: 600px;
  height: 330px;
  position: relative;
  margin: 0px;
  border-radius: 15px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.soloimage {
  width: 600px;
  height: 330px;
  position: relative;
  margin: 0px;
  border-radius: 15px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

div.image {
  border-radius: 15px;
  border-color: #236ff3;
  height: 330px;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

div.before {
  width: 50%;
  z-index: 2;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

div.after {
  width: 100%;
  z-index: 1;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

input.slider {
  width: 100%;
  height: 330px;
  outline: none;
  background-color: transparent;
  position: absolute;
  margin: 0px;
  z-index: 3;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: 0.25s all ease-in-out;
  -moz-transition: 0.25s all ease-in-out;
  -webkit-transition: 0.25s all ease-in-out;
  z-index: 4;
}

input.slider::-moz-range-thumb {
  width: 6px;
  height: 330px;
  background-color: #236ff3;
  cursor: pointer;
}

input.slider::-webkit-slider-thumb {
  width: 6px;
  height: 330px;
  background-color: #236ff3;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

div.slider-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -moz-broder-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #236ff3;
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  cursor: pointer;
  z-index: 3;
}

div.slider-button:before {
  text-decoration: none;
  font-family: 'Sen', sans-serif;
  color: #ffffff;
  position: absolute;
  top: 4px;
  left: 3px;
  content: "<";
}

div.slider-button:after {
  text-decoration: none;
  font-family: 'Sen', sans-serif;
  color: #ffffff;
  position: absolute;
  top: 4px;
  right: 3px;
  content: ">";
}


/* Services Stuff */

.type {
  text-decoration: none;
  padding-top: 45px;
  margin-right: 0px;
  font-family: 'Sen', sans-serif;
  color: #236ff3;
  font-size: 22px;
  transition-duration: 0.2s;
  
  flex-grow: 1; /* Added flex-grow property to evenly distribute the space */
  text-align: center; /* Center the text horizontally */
}


.servicesgrid-container {
  text-decoration: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  padding-top: 1px;
}

.servicesgrid-item {
  text-decoration: none;
  background-color: #236ff3;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative; /* Added positioning */
}

/* Icon styles */
.servicesgrid-item i {
  text-decoration: none;
  color: #ffffff;
  font-size: 48px;
  margin-top: 40px;
  margin-bottom: 25px;
  display: block; /* Ensures the icon is a block element */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Text styles */
.servicesgrid-text {
  
  font-family: 'Sen', sans-serif;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
  color: #ffffff;
  padding-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.schedulenow {
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #EFEFEF;
  display: grid;
  justify-content: center;
  align-content: center;
  margin: 20px;
  text-align: center;
}

.schedulenow h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin: 15px;
  margin-top: 50px;
}
.schedulenow p {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 200;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 0px;
  color: #7B8697;
  max-width: 600px;
}

.schedulenowbutton {
  font-family: 'Sen', sans-serif;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  display: inline-block flex;
  background-color: #236ff3;
  color: #fff;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 50px;
  border-radius: 15px;
  text-decoration: none;
  margin: 25%;
  margin-top: 15px;
  margin-bottom: 30px;
  transition-duration: 0.3s;
}


.schedulenowbutton:hover {
  transform: scale(0.95);
  background-color: #238ef3;
}
.backhomebutton {
  font-family: 'Sen', sans-serif;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  display: inline-block flex;
  background-color: #236ff3;
  color: #fff;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 50px;
  border-radius: 15px;
  text-decoration: none;
  width: 500px;
  margin-top: 15px;
  margin-bottom: 30px;
  transition-duration: 0.3s;
}


.backhomebutton:hover {
  transform: scale(0.95);
  background-color: #238ef3;
}


/*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
    }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
    }
  }
  @media (max-width: 600px) {
    .navbar-stuff {
      font-size: 12px;
      margin-right: 20px;
    }
  }


  @keyframes scrollDown {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scaleY(1);
    }
    50% {
      opacity: 1;
      transform: translate(-50%, -50%) scaleY(1.2);
    }
     100% {
      opacity: 1;
      transform: translate(-50%, -50%) scaleY(1);
    }
  }