body {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

@media (max-width:576px) {
  body {
    overflow-x: hidden;
  }
}

* {
    box-sizing: border-box;
}
a {
  text-decoration: none;
}
img {
    max-width: 100%;
}

button , a  {
    font-family: 'Outfit', sans-serif;
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0;
}

p:last-child {
    margin: 0;
}

.container-loading {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    position: fixed;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2787ac;
  }
  
  .loading-img {
    max-width: 8rem;
  }
  
  @media (max-width: 767px) {
    .loading-img {
      max-width: 6rem;
    }
  }

  .light-header {
    background-color: #EAEAEA;
  }


  .boton {
    border-radius: 999px;
    border: 2px solid #333;
    color: #333;
    display: block;
    font-family: ubuntu;
    font-size: 2em;
    margin: 100px auto;
    overflow: hidden;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: .8s;
}
.boton:after {
    content: "";
    background-color: #333;
    display: block;
    height: 40%;
    left: 50%;
    position: absolute;
    top: 0%;
    border-radius: 999px;
    transform: translate(-50% , -90%);
    transition: .8s;
    width: 40%;
    z-index:-1;
}
.boton:hover {
    border-color: #333;
    color: #FFFFFF;
}
.boton:hover:after {
    background-color: #333;
    border-radius: 999px;
    transform: translate(-50% , 0%);
    height: 120%;
    width: 120%;
} 

#__next {
  overflow-x: hidden;
}


.center .slick-center img {
  transform: scale(1.5);
  opacity: 1;
  height: 616px;
  object-fit: contain;
  transition: .3s ease-in-out;
}



