@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --coral:#FFB995;
  --white: #F9F6F4;
  --blue: #F9F5F2;
  --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: #ed1c24;
  position: fixed;
  width: 100%;
  z-index: 100;
  border-bottom: 3px solid #242424;
}
footer{
    background: #2B2B2B;
  }

h1{
  font-weight: 600;
}
h3{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.logoExpansion{
  height: 30px;
  margin: 0.5rem 0rem;
}
a.link{
  color: #EA6712;
  font-weight: 600;
  transition: 0.5s;
}

a.link:hover{
  color: #fff;
  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/portada-fa-condesa.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);
      width: 90%;
      padding: 0% 5%;
      }

    .hero h1 {
      font-family: "Montserrat", sans-serif;
      font-variation-settings: "opsz" 6, "wght" 600;
      font-size: 3rem;
      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-beige{
    background: #F9F5F2;
background: linear-gradient(360deg, rgba(249, 245, 242, 1) 30%, rgba(255, 255, 255, 1) 100%);
  }
  .redondo{
    border-radius: 20px;
  }
  .bajada{
    font-size: 1.25rem;
  }

  .fondo2{
  background: url(../img/FA-Condesa-08.jpg);
  background-size: cover;
  padding: 10% 0%;
  background-attachment: fixed;
  background-position: left 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%;
}

.glass-1{
    /* From https://css.glass */
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #333;
  padding: 14px 2%;
}
/*--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: #CF0A2C;
 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--*/    

@media only screen and (max-width: 767px) {


  .carousel-caption {
    position: relative;
    right: 0%; 
    left: 0%;
    bottom:0px;
}
.glass{
    /* From https://css.glass */
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 3% 8%;
}

}
