/* FONDO IMAGEN */
@keyframes colorchange
{
  0% {
      background-position: 0 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0 50%;
  }
}

@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
{
  0% {
      background-position: 0 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0 50%;
  }
}
/*  */

/* NUBES ANIMACION */
@keyframes nubes
{
    0%{
      transform:translateY(-2.5%);
      -ms-transform:translateY(-2.5%);
      -webkit-transform:translateY(-2.5%)
    }
    50%{
      transform:translateY(0);
      -ms-transform:translateY(0);
      -webkit-transform:translateY(0)
    }
    100%{
      transform:translateY(-2.5%);
      -ms-transform:translateY(-2.5%);
      -webkit-transform:translateY(-2.5%)
    }
}

@-webkit-keyframes nubes /* Safari and Chrome - necessary duplicate */
{
  0%{
    transform:translateY(-2.5%);
    -ms-transform:translateY(-2.5%);
    -webkit-transform:translateY(-2.5%)
  }
  50%{
    transform:translateY(0);
    -ms-transform:translateY(0);
    -webkit-transform:translateY(0)
  }
  100%{
    transform:translateY(-2.5%);
    -ms-transform:translateY(-2.5%);
    -webkit-transform:translateY(-2.5%)
  }
}
/*  */

/* INTRO */
#intro {
    width: 100%;
    height: auto;
    background-size:500%;
    background: rgb(255,232,233);
    background: rgb(255,232,233);
    background: -moz-linear-gradient(90deg, rgba(255,232,233,1) 0%, rgba(255,232,233,0.4962359943977591) 25%, rgba(255,232,233,1) 50%, rgba(255,232,233,0.5018382352941176) 75%, rgba(255,232,233,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,232,233,1) 0%, rgba(255,232,233,0.4962359943977591) 25%, rgba(255,232,233,1) 50%, rgba(255,232,233,0.5018382352941176) 75%, rgba(255,232,233,1) 100%);
    background: linear-gradient(90deg, rgba(255,232,233,1) 0%, rgba(255,232,233,0.4962359943977591) 25%, rgba(255,232,233,1) 50%, rgba(255,232,233,0.5018382352941176) 75%, rgba(255,232,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffe8e9",endColorstr="#ffe8e9",GradientType=1);
    background-size: 500%;
    animation: colorchange 10s infinite;
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: colorchange 10s infinite; /* Chrome and Safari */
    padding: 245px 15% 75px 15%;
    position: relative;
    overflow: hidden;
}

#intro .row ,
#intro .row .col {
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
}

#intro .introHeader {
    width: 100%;
    height: auto;
    padding: 75px 0 50px 0;
    text-align: center;
}
#intro .introHeader h1 {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    color: #9ae3e6;
    padding: 0 0 25px 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}
#intro .introHeader h2 {
    font-family: 'Arnie';
    font-weight: normal;
    font-style: normal;
    font-size: 27px;
    color: #ed7577;
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}

#intro .introBody {
    width: 100%;
    height: auto;
    padding: 0 10% 50px 10%;
    text-align: center;
}
#intro .introBody p {
    font-size: 16px;
    font-family: 'Epilogue';
    font-weight: normal;
    font-style: normal;
    color: #ee7a7c;
}

#intro .introFooter {
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    text-align: center;
}

#intro .introFooter a.btnVideo {
    font-family: 'Epilogue';
    font-weight: 600;
    font-style: normal;
    position: relative;
    text-align: left!important;
    border-radius: 50px;
    background: #9ae3e6;
    background-color: #9ae3e6;
    text-transform: lowercase;
    transition: all .3s ease;
}
#intro .introFooter a.btnVideo:hover,
#intro .introFooter a.btnVideo:focus,
#intro .introFooter a.btnVideo:active {
    background: #ee7a7c;
    background-color: #ee7a7c;
    transform: scale(1.5);
}

#intro .introFooter a.btnVideo span {
    margin: 0 0 0 15px;
}
#intro .introFooter a.btnVideo img.introPlay {
    max-width: 20px;
    height: auto;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto;
}
#intro .introPicture {
    width: 100%;
    height: auto;
    padding: 0 0 175px 0;
    text-align: center;
    line-height: 0;
    position: relative;
}
#intro .introPicture img.introLetra {
    max-width: 100%;
    height: auto;
}
#intro .introPicture img.introShadow {
    max-width: 100%;
    height: auto;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
}
#intro .introPicture img.introNieve {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    animation:nubes 5s ease-in-out infinite;
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: nubes 5s ease-in-out infinite; /* Chrome and Safari */
}
#intro .introPicture img.introChispas {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    animation:nubes 15s ease-in-out infinite;
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: nubes 15s ease-in-out infinite; /* Chrome and Safari */
}
#intro .introPicture img.introEsferas {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    animation:nubes 7s ease-in-out infinite;
    /* you could also use milliseconds (ms) or something like 2.5s */
    -webkit-animation: nubes 7s ease-in-out infinite; /* Chrome and Safari */
}
/*  */

/* TAIYAKI LAND LLEGO A MEXICO */
#taiyakiland_mexico {
    width: 100%;
    height: auto;
    background: #ffffff;
    background-color: #ffffff;
    padding: 0 0 0 0;
    position: relative;
    overflow: hidden;
}

#taiyakiland_mexico .row ,
#taiyakiland_mexico .row .col {
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
}

#taiyakiland_mexico .taiyakiland_mexico_info {
    width: 100%;
    height: auto;
    padding: 50px 40% 25px 50px;
    text-align: left;
}
#taiyakiland_mexico .taiyakiland_mexico_info h2 {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    padding: 0 0 10px 0!important;
    margin: 0 0 0 0!important;
    color: #ffe8e9;
    text-transform: uppercase;
}
#taiyakiland_mexico .taiyakiland_mexico_info h3 {
    font-family: 'Arnie';
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    padding: 0 0 15px 0!important;
    margin: 0 0 0 0!important;
    color: #9ae3e6;
    text-transform: uppercase;
}
#taiyakiland_mexico .taiyakiland_mexico_info p {
    font-family: 'Epilogue';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #8e8e9b;
}

#taiyakiland_mexico .item_taiyakiland {
    width: 100%;
    height: 70vh;
    padding: 0 0 0 0;
    line-height: 0;
    position: relative;
}
#taiyakiland_mexico .item_taiyakiland img {
    max-width: 100%!important;
    height: 70vh;
    object-fit: cover;
    object-position: center;
}

#taiyakiland_mexico .itemTitle {
    width: 100%;
    height: auto;
    padding: 0 40% 50px 50px;
    text-align: left;
}
#taiyakiland_mexico .itemTitle h2 {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 150px;
    color: #ffe8e9;
    text-transform: uppercase;
    line-height: 110px;
    padding: 0 20% 0 0!important;
    margin: 0 0 0 0!important;
}

#taiyakiland_mexico .itemTitle h3 {
    font-size: 20px;
    color: #9ae3e6;
    text-transform: uppercase;
    line-height: 110px;
    padding: 0 0 0 0!important;
    margin: -125px 0 0 0!important;
    position: relative;
}

#taiyakiland_mexico .owl-item.active .taiyakiland_mexico_info h2 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounce;
  animation-delay: .5s;
}

#taiyakiland_mexico .owl-item.active .taiyakiland_mexico_info h3 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: bounce;
  animation-delay: .5s;
}

#taiyakiland_mexico .owl-item.active .taiyakiland_mexico_info p {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: .5s;
}

#taiyakiland_mexico .owl-item.active .itemTitle {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: .5s;
}

#taiyakiland_mexico .taiyakilandPoints {
    width: 50%;
    height: 5px;
    position: absolute;
    bottom: 50px;
    padding: 0 0 0 50px;
    right: 0;
    z-index: 25;
}

#taiyakiland_mexico #carousel-custom-dots {
    text-align: left;
}
#taiyakiland_mexico #carousel-custom-dots li {
    display: inline-block;
    margin: 0 10px;
}
#taiyakiland_mexico #carousel-custom-dots li.owl-dot {
    width: 60px;
    height: 10px;
    background: #ffe8e9;
    background-color: #ffe8e9;
    cursor: pointer;
    transition: all .3s ease;
}
#taiyakiland_mexico #carousel-custom-dots li:hover,
#taiyakiland_mexico #carousel-custom-dots li:focus,
#taiyakiland_mexico #carousel-custom-dots li:active,
#taiyakiland_mexico #carousel-custom-dots li.active {
    background: #bdecee;
    background-color: #bdecee;
}
/*  */

/* TU FRANQUICIA */
#franquicia {
    width: 100%;
    height: auto;
    background: #ffffff;
    background-color: #ffffff;
    padding: 75px 15% 75px 15%;
    position: relative;
    overflow: hidden;
}

#franquicia .row ,
#franquicia .row .col {
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
}

#franquicia .franquiciaHeader {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0 0 50px 0;
    position: relative;
}

#franquicia .franquiciaHeader h2 {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 200px;
    color: #bdecee;
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}

#franquicia .franquiciaPicture {
    width: 100%;
    height: auto;
    text-align: left;
    padding: 0 0 0 100px;
    margin: -200px 0 0 0;
    line-height: 0;
    position: relative;
}
#franquicia .franquiciaPicture img.franquiciaImg {
    max-width: 100%;
    height: auto;
}

#franquicia .franquiciaInfo {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0 50px 25px 50px;
    position: relative;
}
#franquicia .franquiciaInfo h2 {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 30px;
    color: #ffe8e9;
    padding: 0 0 25px 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}
#franquicia .franquiciaInfo p {
    font-family: 'Epilogue';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #8e8e9b;
}
#franquicia .franquiciaInfo p span {
    font-weight: 900;
}

#franquicia .franquiciaFooter {
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    text-align: center;
}

#franquicia .franquiciaFooter a.btnMas {
    font-family: 'Epilogue';
    font-weight: 600;
    font-style: normal;
    position: relative;
    border-radius: 50px;
    background: #9ae3e6;
    background-color: #9ae3e6;
    text-transform: lowercase;
    transition: all .3s ease;
}

#franquicia .franquiciaFooter a.btnMas:hover,
#franquicia .franquiciaFooter a.btnMas:focus,
#franquicia .franquiciaFooter a.btnMas:active {
    background: #ee7a7c;
    background-color: #ee7a7c;
    transform: scale(1.5);
}
/*  */

/* INSTAGRAM */
#instagram {
    width: 100%;
    height: auto;
    background: #ffffff;
    background-color: #ffffff;
    padding: 0 15% 75px 15%;
    position: relative;
    overflow: hidden;
}

#instagram .row ,
#instagram .row .col {
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
}

#instagram .instagramHeader {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0 0 75px 0;
    position: relative;
}

#instagram .instagramHeader h2 {
    font-family: 'Arnie';
    font-weight: normal;
    font-style: normal;
    font-size: 35px;
    color: #f5a6a8;
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}

#instagram .instagramHeader h2 span img.instagramImg {
    max-width: 150px;
    height: auto;
    position: relative;
    top: 25px;
    transition: all .3s ease;
}

#instagram .instagramHeader h2 span a:hover img.instagramImg,
#instagram .instagramHeader h2 span a:focus img.instagramImg,
#instagram .instagramHeader h2 span a:active img.instagramImg {
    transform: scale(1.1);
}

#instagram .instagramContainer {
    padding: 0 75px 0 75px;
    position: relative;
}

#instagram .instagramContainer .itemAnterior {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: -10%;
  bottom: 0;
  margin: auto;
}
#instagram .instagramContainer .itemAnterior svg {
  width: 60px;
  height: 60px;
  transition: all .3s ease;
}
#instagram .instagramContainer .itemAnterior svg path {
  fill: #ffe8e9;
  transition: all .3s ease;
}

#instagram .instagramContainer .itemAnterior:hover svg,
#instagram .instagramContainer .itemAnterior:focus svg,
#instagram .instagramContainer .itemAnterior:active svg {
  transform: scale(1.5);
}

#instagram .instagramContainer .itemAnterior:hover svg path,
#instagram .instagramContainer .itemAnterior:focus svg path,
#instagram .instagramContainer .itemAnterior:active svg path {
  fill: #f5a6a8;
}

#instagram .instagramContainer .itemSiguiente {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -10%;
  bottom: 0;
  margin: auto;
}
#instagram .instagramContainer .itemSiguiente svg {
  width: 60px;
  height: 60px;
  transition: all .3s ease;
}
#instagram .instagramContainer .itemSiguiente svg path {
  fill: #ffe8e9;
}

#instagram .instagramContainer .itemSiguiente:hover svg,
#instagram .instagramContainer .itemSiguiente:focus svg,
#instagram .instagramContainer .itemSiguiente:active svg {
  transform: scale(1.5);
}

#instagram .instagramContainer .itemSiguiente:hover svg path,
#instagram .instagramContainer .itemSiguiente:focus svg path,
#instagram .instagramContainer .itemSiguiente:active svg path {
  fill: #f5a6a8;
}

#instafeed a img {
   height: 350px;
   width: 350px;
   object-fit: cover;
}

#instagram .instagramFooter {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 50px 0 50px 0;
    position: relative;
}

#instagram .instagramFooter h3 {
    font-family: 'Arnie';
    font-weight: normal;
    font-style: normal;
    font-size: 35px;
    color: #9ae3e6;
    padding: 0 0 0 0!important;
    margin: 0 0 0 0!important;
    text-transform: uppercase;
}
#instagram .instagramFooter h3 a {
    color: #9ae3e6;
    position: relative;
    transition: all .3s ease;
}
#instagram .instagramFooter h3 a::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    margin: auto;
    transition: all .3s ease;
}

#instagram .instagramFooter h3 a:hover,
#instagram .instagramFooter h3 a:active,
#instagram .instagramFooter h3 a:focus {
    color: #ee7a7c;
}

#instagram .instagramFooter h3 a:hover::after,
#instagram .instagramFooter h3 a:active::after,
#instagram .instagramFooter h3 a:focus::after {
    width: 0;
}
/*  */
