/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  overflow-x: hidden;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

  body {
   overflow-x: hidden;
   font-family: "Abel", sans-serif;
   background-color: #000;
  }

  body * {
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }

  li {
    list-style: none;
  }

  p {
    padding: 0;
    margin: 0;
  }

  ul {
    padding: 0;
    margin: 0;
  }

  /* :root {
    --text-black: #0E4F95;
  } */


  @media all and (min-width:122em){
    body{
      font-size: 1vmax;
    }
  }

  /* MOBILE MENU */

#mobile-menu {
  background-color: rgba(0, 0, 0, 0.98);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(-100vw);
      -ms-transform: translateX(-100vw);
          transform: translateX(-100vw);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(.17,.67,.23,.98);
  -o-transition: all 0.6s cubic-bezier(.17,.67,.23,.98);
  transition: all 0.6s cubic-bezier(.17,.67,.23,.98);
}

#mobile-menu.open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

#mobile-menu ul li {
  
  text-align: center;
  text-align: center;
  font-size: 6svh;
  padding: 2svh 0;
  display: block;
  opacity: 0;
  -webkit-transform: translateY(-2em);
      -ms-transform: translateY(-2em);
          transform: translateY(-2em);
}

#mobile-menu.open ul li {
  -webkit-animation: slideIn 0.5s ease forwards;
          animation: slideIn 0.5s ease forwards;
  -webkit-transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
  -o-transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
  transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
}

#mobile-menu.open li:nth-child(1) { -webkit-animation-delay: 0.1s; animation-delay: 0.1s; }
#mobile-menu.open li:nth-child(2) { -webkit-animation-delay: 0.2s; animation-delay: 0.2s; }
#mobile-menu.open li:nth-child(3) { -webkit-animation-delay: 0.3s; animation-delay: 0.3s; }
#mobile-menu.open li:nth-child(4) { -webkit-animation-delay: 0.4s; animation-delay: 0.4s; }
#mobile-menu.open li:nth-child(5) { -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }
#mobile-menu.open li:nth-child(6) { -webkit-animation-delay: 0.6s; animation-delay: 0.6s; }
#mobile-menu.open li:nth-child(7) { -webkit-animation-delay: 0.7s; animation-delay: 0.7s; }
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateY(-2em);
            transform: translateY(-2em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateY(-2em);
            transform: translateY(-2em);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

#mobile-menu ul li a{
  color: #FFF;
  display: inline-block;
  -webkit-transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
  -o-transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
  transition: all 1.6s cubic-bezier(.17,.67,.23,.98);
}

#mobile-menu ul li a:hover{
  -webkit-transform: translateY(-0.1em);
      -ms-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}

#mobile-menu ul li a::before {
  margin-left: auto;
}

#mobile-menu ul li a::after, #mobile-menu ul li a::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #FFF;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#mobile-menu ul li a:hover::after, #mobile-menu ul li a:hover::before {
  width: 100%;
}

.menu-toggle { 
  width: 3em;
  height: 3em;
  /* position: absolute; */
  right: 0;
  top: 2em;
  padding: 0;
  font-size: 1.5em;
  border: none;
  background-color: transparent;
  color: var(--color-white);
  z-index: 100010;
  display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
-webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
-webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  float: right;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all ease .4s;
-o-transition: all ease .4s;
transition: all ease .4s;
}

@media all and (min-width: 67.5em) {
  .menu-toggle {
    display: none;
  }
}


.menu-toggle.opened {
  position: fixed;
  z-index: 100040;
  top: 0;
  right: 0;
}


.menu-toggle svg {
  height: 2em;
  width: 100%;
}

.menu-toggle .line {
  fill: none;
  stroke: #FFF;
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.white-version .menu-toggle .line {
 stroke: #FFF;
}

.menu-toggle.opened {
  z-index: 1000000;
}

.menu-toggle.opened .line {
  stroke: #FFF;
}

.menu-toggle .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.menu-toggle .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.menu-toggle .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.menu-toggle.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.menu-toggle.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.menu-toggle.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

  #main-header { 
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9780287114845938) 24%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9780287114845938) 24%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9780287114845938) 24%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
    position: relative;
    z-index: 100;
  }
  
  #main-header .inwrap { 
    width: 90%;
    max-width: 80em;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 2em 0 0;
  }
  
  #main-header .inwrap .main-logo { 
    width: 100%;
    max-width: 8em;
  }


  @media screen and (min-width:35em) {
     
    #main-header .inwrap .main-logo { 
      width: 100%;
      max-width: 10em;
    }
  }

  #main-header .inwrap nav {
    display: none;
  }
  
  #main-header .inwrap nav ul { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1em;
  }

  @media screen and (min-width:67.5em) {
    #main-header .inwrap .main-logo { 
      width: 100%;
      max-width: 10em;
    }

    #main-header .inwrap nav {
      display: block;
    }

    #main-header .inwrap nav ul { 
      gap: 0.5em;
    }
  }

  @media screen and (min-width:80em) {
    #main-header .inwrap .main-logo { 
      width: 100%;
      max-width: 13em;
    }

    #main-header .inwrap nav { 
      margin-left: 2em;
    }

    #main-header .inwrap nav ul { 
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      gap: 1em;
    }
  }
  
  #main-header .inwrap nav ul li { 
  
  }
  
  #main-header .inwrap nav ul li a { 
    color: #FFF;
  }
  
  #main-header .inwrap .contact-info { 
    background-color: #FFF;
    padding: 0.2em 0.5em;
    border-radius: 0.2em;
    margin-left: auto;
    display: none;
  }

  @media screen and (min-width:49em) {
    #main-header .inwrap .contact-info {
      display: block;
    }
  }
  
  #main-header .inwrap .contact-info ul { 
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1em;
  }
  
  #main-header .inwrap .contact-info ul li { 
    font-size: 0.9em;
  }
  
  #main-header .inwrap .contact-info ul li a { 
    color: #353535;
  }
  
  #main-header .inwrap .contact-info ul li a .fa { 
  
  }
  
  #main-header .inwrap .cta-btn { 
    background-color: #060666;
    color: #FFF;
    padding: 0.5em 0.8em;
    border-radius: 0.3rem;
    font-size: 0.9em;
    margin-left: auto;
    display: none;
  }

  @media screen and (min-width:29em) {
    #main-header .inwrap .cta-btn {
      display: block;
    }
  }

  @media screen and (min-width:49em) {
    #main-header .inwrap .cta-btn {
      margin-left: 0;
    }
  }
  
  #main-header .inwrap .social { 
  display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

  @media screen and (min-width:29em) {
    #main-header .inwrap .social {
      margin-left: 0;
    }
  }
  
  #main-header .inwrap .social li { 
  
  }
  
  #main-header .inwrap .social li a { 
    background-color: #FFF;
    /* padding: 1em; */
    border-radius: 100%;
    height: 1.6em;
    width: 1.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    color: #000;
  }
  
  #main-header .inwrap .social li a .fa { 
  
  }

  #home-hero { 
    background-image: url('./img/hero-image-loading.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: -2.5em;
  }
  
  #home-hero .dark { 
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 100%);
background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 100%);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  
  #home-hero .info { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 72em;
    margin: 0 auto;
    flex-flow: column;
    padding: 7em 0;
    position: relative;
    min-height: 70vh;
  }

  #home-hero .info .logo { 
    width: 100%;
  }

  #home-hero .info .date { 
    font-weight: bold;
    color: #FFF;
    font-size:1.2em;
    margin-top: 0em;
    font-family: sans-serif;
    letter-spacing: 0.3em;
  }


  @media screen and (min-width:42.5em) {
    #home-hero .info .date {
      font-size: 2.2em;
    margin-top: -1em;
    }
  }
  
  #home-hero .info .play-video { 
    background-color: transparent;
    border: none;
    margin-top: 2em;
    text-align: center;
  }

  .play-video {
    cursor: pointer;

  }

  .play-video:hover .circle {
    transform: scale(1.1);
  }
  
  #home-hero .info .play-video .circle { 
    border:0.4em solid #FFF;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 0.8em;
  }

  .play-video .circle {
    -webkit-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s;
  }
  
  #home-hero .info .play-video .circle .fa { 
    font-size: 1.7em;
    color: #FFF
  }
  
  #home-hero .info .play-video span { 
    color: #FFF;
  }
  
  #proyectos { 
    position: relative;
    overflow-x: hidden;
  }
  
  #proyectos .inwrap { 
    width: 90%;
    max-width: 80em;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 3em;
  }

  #proyectos.page-proyectos .inwrap {
    padding: 3em 0 3em;
  }
  
  #proyectos .inwrap h2 { 
    font-family:"Anastasia Regular", sans-serif;
    color: #FFF;
    font-size: 2.4em;
    margin-top: 0;
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
  }

  @media screen and (min-width:42.5em) {
    #proyectos .inwrap h2 {
      font-size: 5em;
    }
  }

  #proyectos .inwrap h2 .word{
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center; /* Asegura que la rotación sea sobre el centro */
-webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        opacity: 0;
        transform: translate(20%,0);
        display: inline-block;
  }
  
  #proyectos .inwrap .boxes { 
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1%;
    flex-wrap: wrap;
    margin-bottom: 2em;
  }
  
  #proyectos .inwrap .boxes .box { 
    width: 100%;
    background-color: #FFF;
    padding: 1em 1em;
    margin-bottom: 2%;
    opacity: 0;
    transform: translate(0,20%);
    -webkit-transition: all ease-out .2s;
    -o-transition: all ease-out .2s;
    transition: all ease-out .2s;
  }

  @media screen and (min-width:28em) {
    #proyectos .inwrap .boxes .box {
      width: 48%;
      margin-bottom: 1%;
    }
  }

  @media screen and (min-width:48em) {
    #proyectos .inwrap .boxes .box {
      width: 31%;
    }
  }

  #proyectos .inwrap .boxes .box:hover {
    transform: translate(0,-2%)!important;
    box-shadow: 0 0 30px 5px rgba(92, 92, 92, 0.815);
  }
  
  
  #proyectos .inwrap .boxes .box a { 
  
  }
  
  #proyectos .inwrap .boxes .box a .image { 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 90%;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }

  #proyectos .inwrap .boxes .box a:hover .image {

  }
  
  #proyectos .inwrap .boxes .box a .info { 
    padding: 1em 0 0;
  }
  
  #proyectos .inwrap .boxes .box a .info .name { 
    color: #1F1F1F;
    font-family: "Gochi Hand", cursive;
    font-size: 1.1em;
  }

  @media screen and (min-width:48em) {
    #proyectos .inwrap .boxes .box a .info .name {
      font-size: 1.1em;
    }
  }

  @media screen and (min-width:64em) {
    #proyectos .inwrap .boxes .box a .info .name {
      font-size: 1.6em;
    }
  }
  
  #proyectos .inwrap .boxes .box a .info .name img { 
    width: 1em;
  }
  
  #proyectos .inwrap .more { 
    color: #FFF;
    border: 1px solid #FFF;
    padding: 1em 2em;
    border-radius: 0.5em;
    letter-spacing: 2px;
    opacity: 0;
    transform: translate(0,20%);
    display: inline-block;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    overflow: hidden;
  }

  #proyectos .inwrap .more:hover {
    /* background: rgb(8 11 102); */
    box-shadow: 0 0 30px 5px rgba(92, 92, 92, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  #proyectos .inwrap .more:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
  }
  
  #proyectos .inwrap .more::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 25px 15px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  @keyframes sh02 {
    from {
      opacity: 0;
      left: 0%;
    }
  
    50% {
      opacity: 0.2;
    }
  
    to {
      opacity: 0;
      left: 100%;
    }
  }
  
  #proyectos .inwrap .more:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
  }

  #servicios { 
    background-image: url('./img/servicios-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  
  #servicios .gradient { 
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  
  #servicios .inwrap { 
    width: 90%;
    max-width: 64em;
    margin: 0 auto;
    text-align: center;
    padding: 2em 0 3em;
    position: relative;
  }
  
  #servicios .inwrap .play-video { 
    background-color: transparent;
    border: none;
    margin-top: 2em;
    text-align: center;
    opacity: 0;
    transform: translate(0,20%);
    display: inline-block;
  }
  
  #servicios .inwrap .play-video .circle { 
    border:0.4em solid #FFF;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 0.8em;
  }
  
  #servicios .inwrap .play-video .circle .fa { 
    font-size: 1.7em;
    color: #FFF
  }
  
  #servicios .inwrap .play-video span { 
    color: #FFF;
  }
  
  #servicios .inwrap h2 { 
    font-family:"Anastasia Regular", sans-serif;
    color: #FFF;
    font-size: 3em;
    margin-top: 0;
    letter-spacing: 0.04em;
    margin-bottom: 0em;
    opacity: 0;
    transform: translate(-20%,0);
  }

  @media screen and (min-width:42.5em) {
    #servicios .inwrap h2 {
      font-size: 5em;
    }
  }
  
  #servicios .inwrap p { 
    color: #FFF;
    max-width: 38em;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 180%;
    opacity: 0;
    transform: translate(-20%,0);
  }
  
  #servicios .inwrap .boxes { 
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1%;
    flex-wrap: wrap;
    margin: 2em 0 1em;
  }
  
  #servicios .inwrap .boxes .box { 
    width: 100%;
    color: #FFF;
    padding: 1em 1em;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    opacity: 0;
    transform: translate(0,-20%);
  }

  @media screen and (min-width:38em) {
    #servicios .inwrap .boxes .box {
      width: 49%;
      gap: 1em;
    }
  }

  @media screen and (min-width:55em) {
    #servicios .inwrap .boxes .box {
      width: 31%;
      gap: 2em;
    }
  }
  
  #servicios .inwrap .boxes .box img { 
    width: 5em;
  }
  
  #servicios .inwrap .boxes .box span { 
    color: #FFF;
    font-size: 1.2em;
    min-width: 5em;
    text-align: left;
  }
  
  #servicios .inwrap .cta-btn { 
    color: #FFF;
    border: 1px solid #FFF;
    padding: 1em 2em;
    border-radius: 0.5em;
    letter-spacing: 2px;
    display: inline-block;
    opacity: 0;
    transform: translate(0,20%);
  }

  .cta-btn {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .cta-btn:hover {
    /* background: rgb(8 11 102); */
    box-shadow: 0 0 30px 5px rgba(92, 92, 92, 0.815);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  
  .cta-btn:hover::before {
    -webkit-animation: sh02 0.5s 0s linear;
    -moz-animation: sh02 0.5s 0s linear;
    animation: sh02 0.5s 0s linear;
  }
  
  .cta-btn::before {
    content: '';
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: #fff;
    box-shadow: 0 0 25px 15px #fff;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
  }
  
  .cta-btn:active {
    box-shadow: 0 0 0 0 transparent;
    -webkit-transition: box-shadow 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in;
    transition: box-shadow 0.2s ease-in;
  }

  #equipo { 
    background-color: #1F1F1F;
    color: #FFF;
    position:relative;
  }
  
  #equipo .image { 
    background-image: url('./img/equipo-image.jpg');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    position: relative;
    text-align: center;
    padding-top: 44%;
    padding-bottom: 1em;
    opacity: 0;
  }

  #equipo .image .gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(31,31,31);
background: -moz-linear-gradient(0deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
background: linear-gradient(0deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f1f1f",endColorstr="#000000",GradientType=1);
  }
  
  #equipo .image h2 { 
      font-family:"Anastasia Regular", sans-serif;
    color: #FFF;
    font-size: 2.1em;
    margin-top: 0;
    letter-spacing: 0.04em;
    margin-bottom: 0em;
    position: relative;
    padding: 0 1em;
  }

  @media screen and (min-width:48em) {
    #equipo .image h2 {
      font-size: 5em;
    }
  }

  #equipo .image h2 .word{
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center; /* Asegura que la rotación sea sobre el centro */
-webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        opacity: 0;
        transform: translate(20%,0);
        display: inline-block;
  }
  
  #equipo .inwrap { 
    width: 90%;
    max-width: 48em;
    margin: 0 auto;
    padding: 2em 0 1em;
  }

  @media screen and (min-width:42.5em) {
    #equipo .inwrap {
      padding: 2em 0 4em;
    }
  }
  
  #equipo .inwrap p { 
    line-height: 180%;
    font-size: 1.1em;
    margin-bottom: 2em;
    opacity: 0;
        transform: translate(0, 20%);
  }

  #cta-banner { 
    background-image: url('./img/restaura-banner-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }

  #cta-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
  }
  
  #cta-banner .gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(31,31,31);
    background: -moz-linear-gradient(180deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(31,31,31,1) 0%, rgba(31,31,31,0) 26%, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1f1f1f",endColorstr="#000000",GradientType=1);
  }
  
  #cta-banner .inwrap { 
    width: 90%;
    max-width: 64em;
    margin: 0 auto;
    text-align: center;
    padding: 8em 0 2em;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-items: center
  }

  @media screen and (min-width:38em) {
    #cta-banner .inwrap {
      padding: 14em 0 12em;
    }
  }
  
  #cta-banner .inwrap h2 { 
    font-family:"Anastasia Regular", sans-serif;
    color: #FFF;
    font-size: 3em;
    margin-top: 0;
    letter-spacing: 0.04em;
    margin-bottom: 0.2em;
  }

  @media screen and (min-width:42.5em) {
    #cta-banner .inwrap h2 {
      font-size: 5em;
    }
  }

  #cta-banner .inwrap h2 .word{
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center; /* Asegura que la rotación sea sobre el centro */
-webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        opacity: 0;
        transform: translate(20%,0);
        display: inline-block;
  }
  
  #cta-banner .inwrap .cta-btn { 
    color: #FFF;
    border: 1px solid #FFF;
    padding: 1em 2em;
    border-radius: 0.5em;
    letter-spacing: 2px;
    display: inline-block;
    opacity: 0;
    transform: translate(0,20%);
  }
  
  #cta-banner .inwrap .play-video { 
    background-color: transparent;
    border: none;
    margin-top: 2em;
    text-align: center;
    opacity: 0;
    transform: translate(0,20%);
    display: inline-block;
  }
  
  #cta-banner .inwrap .play-video .circle { 
    border:0.4em solid #FFF;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 0.8em;
  }
  
  #cta-banner .inwrap .play-video .circle .fa { 
    font-size: 1.7em;
    color: #FFF
  }
  
  #cta-banner .inwrap .play-video span { 
    color: #FFF;
  }
  
  #form-cita { 
    background-image: url('./img/haz-tu-cita-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
  }
  
  #form-cita .gradient { 
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.46262254901960786) 51%, rgba(0,0,0,0.9248074229691877) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.46262254901960786) 51%, rgba(0,0,0,0.9248074229691877) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.46262254901960786) 51%, rgba(0,0,0,0.9248074229691877) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  }
  
  #form-cita .inwrap { 
    width: 90%;
    max-width: 36em;
    margin: 0 auto;
    text-align: center;
    padding: 5em 0 5em;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-items: center
  }
  
  #form-cita .inwrap h2 { 
    font-family:"Anastasia Regular", sans-serif;
    color: #FFF;
    font-size: 3em;
    margin-top: 0;
    letter-spacing: 0.04em;
    margin-bottom: 0.2em;
  }
  
  @media screen and (min-width:42.5em) {
    #form-cita .inwrap h2 {
      font-size: 5em;
    }
  }

  #form-cita .inwrap h2 .word{
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
        transform-origin: center; /* Asegura que la rotación sea sobre el centro */
-webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        opacity: 0;
        transform: translate(20%,0);
        display: inline-block;
  }

  #form-cita .inwrap form { 
    background-color: #FFF;
    padding: 2em 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
        transform: translate(0, 20%);
  }
  
  #form-cita .inwrap form .input-field { 
    width: 100%;
    margin-bottom: 4%;
    position: relative;
  }


  @media screen and (min-width:35em) {
    #form-cita .inwrap form .input-field { 
      width: 48%;
    }
  }

  #form-cita .inwrap form .input-field:nth-child(5), #form-cita .inwrap form .input-field:nth-child(8) {
    width: 100%;
  }

  #form-cita .inwrap form .input-field label.error {
    color: red;
    position: absolute;
    left: 0.4em;
    top: 0.1em;
  }

  #form-cita .inwrap form .input-field .datepicker {
    width: 100%;
  }
  
  #form-cita .inwrap form .input-field input { 
    width: 100%;
    border: 1px solid #000;
    border-radius: 0.5em;
    padding:1em 1em;
  }
  
  #form-cita .inwrap form .send-cita { 
    color: #1F1F1F;
    border: 1px solid #1F1F1F;
    padding: 1em 2em;
    border-radius: 0.5em;
    letter-spacing: 2px;
    display: inline-block;
    background-color: transparent;
    margin: 1em auto 0;
    font-size: 1.1em;
  }

  .form-msg {
    display: none;
    color: #FFF;
    text-align: center;
    line-height: 180%;
    font-size: 1.3em;
  }

  #main-footer { 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    gap: 2em;
    color: #FFF;
    padding-top: 5em;
    position: relative;
  }

  @media screen and (min-width:35em) {
    #main-footer {
      flex-flow: row;
    }
  }
  
  #main-footer .copyright { 
  
  }
  
  #main-footer img { 
    width: 6em;
  }
  
  #main-footer .design { 
  
  }
  
  #main-footer .design a { 
    color: #FFF;
    text-decoration: underline;
  }

  #single-project { 

  }
  
  #single-project .inwrap { 
    width: 90%;
    max-width: 80em;
    margin: 0 auto;
    padding: 2em 0;
  }
  
  #single-project .inwrap .featured-image { 
    width: 90%;
    height: auto;
    border: 0.6em solid #FFF;
    margin-bottom: 2em;
  }
  
  #single-project .inwrap h1 { 
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  #single-project .inwrap h1 img { 
    width: 5em;
  }

  @media screen and (min-width:48em) {
    #single-project .inwrap h1 img { 
      height: 4em;
      width: auto;
    }
  
  }

  #single-project .inwrap h1 span { 
    color: #FFF;
    font-size: 1.5em;
    margin-left: 0.5em;
  }
  
  #single-project .inwrap .cols { 

  }
  
  #single-project .inwrap .cols .text { 
    color: #FFF;
    font-size: 1.2em;
    line-height: 180%;
    width: 100%;
  }

  #single-project .inwrap .cols .text p {
    margin-bottom: 1em;
  }
  
  #single-project .inwrap .cols .gallery { 
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    flex-wrap: wrap;
  }

  #single-project .inwrap .cols .gallery .image {
    cursor: pointer;
  }

  #single-project .inwrap .cols .gallery .image:hover {
    opacity: 0.8;
  }

  @media screen and (min-width:64em) {
    #single-project .inwrap .cols { 
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    #single-project .inwrap .cols .text { 
      width: 55%;
    }

    #single-project .inwrap .cols .gallery{
      width: 35%;
    }
  }
  
  #single-project .inwrap .cols .gallery .image { 
    width: 50%;
    padding-top: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #single-project .inwrap .cols .gallery .image:nth-child(5){
    width: 100%;
  }
/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
