
:root {
  --coral:#FFB995;
  --white: #F9F6F4;
  --blue: #CEDCDF;
  --yellow: #FFDAA0;
  --green: #CFE0D2;
  --black: #25282A;

}
body {
  margin: 0;
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  }

header{
  background: #1C1D1E;
  position: fixed;
  z-index: 10;
  }
footer{
    background: #1C1D1E;
  }
h3{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
}
a.link{
  color: #fff;
  font-weight: 600;
  transition: 0.5s;
}

a.link:hover{
  color: #DB0012;
  transition: 0.5s;
}
  .logo{
    height: 35px;
    margin: 5px 0rem;
  }

  .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../img/mexbest-1.jpg');
      background-size: cover;
      background-position: center;
      transform: scale(1);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      /* From https://css.glass */
      background: rgba(0, 0, 0, 0.19);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(3.8px);
      -webkit-backdrop-filter: blur(3.8px);
    }

    .hero h1 {
      font-family: "Montserrat", sans-serif;
      font-variation-settings: "opsz" 6, "wght" 300;
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: 1.5rem;
      opacity: 0.95;
      margin-top: 1rem;
    }
    p.p-por{
      font-size: 0.8rem;
    }
    .presentado{
      width: 180px;
    }
  .bg-blanco{
    background: var(--white);
  }
  .bg-azul{
    background: var(--blue);
  }
  .redondo{
    border-radius: 20px;
  }

  .fondo2{
  background: url(../img/mexbest-4.jpg);
  background-size: 100%;
  padding: 20% 0%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.glass{
    /* From https://css.glass */
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 3% 8%;
}

/*--boton--*/
button {
 position: relative;
 display: inline-block;
 cursor: pointer;
 outline: none;
 border: 0;
 vertical-align: middle;
 text-decoration: none;
 background: transparent;
 padding: 0;
 font-size: inherit;
 font-family: inherit;
}

button.learn-more {
 width: 12rem;
 height: auto;
}

button.learn-more .circle {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: relative;
 display: block;
 margin: 0;
 width: 3rem;
 height: 3rem;
 background: grey;
 border-radius: 1.625rem;
}

button.learn-more .circle .icon {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 bottom: 0;
 margin: auto;
 background: #fff;
}

button.learn-more .circle .icon.arrow {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 left: 0.625rem;
 width: 1.125rem;
 height: 0.125rem;
 background: none;
}

button.learn-more .circle .icon.arrow::before {
 position: absolute;
 content: "";
 top: -0.29rem;
 right: 0.0625rem;
 width: 0.625rem;
 height: 0.625rem;
 border-top: 0.125rem solid #fff;
 border-right: 0.125rem solid #fff;
 transform: rotate(45deg);
}

button.learn-more .button-text {
 transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 padding: 0.45rem 0;
 margin: 0 0 0 1.85rem;
 color: #FFF;
 font-weight: 700;
 line-height: 1.6;
 text-align: center;
 text-transform: uppercase;
}

button:hover .circle {
 width: 100%;
}

button:hover .circle .icon.arrow {
 background: #fff;
 transform: translate(1rem, 0);
}

button:hover .button-text {
 color: #fff;
}
/*--boton--*/    