/* Variables */
/* ==========

========== */
/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}
/* General */
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body {
  font-family: sans-serif;
  background: #000000;
  /* fallback for old browsers */
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
}
.cont1 {
  position: fixed;
  left: 15px;
  bottom: 75px;
  z-index: 15;
}
.cont1 a {
  color: #fdc414;
}
.cont1 .next {
  width: 25px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: absolute;
  text-align: center;
}
.cont1 .next .mouse-wheel {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: auto;
  animation: move-wheel 1.4s linear infinite;
}
.cont1:hover .next {
  border: 2px solid #fdc414;
}
@keyframes move-wheel {
  0% {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  100% {
    opacity: 1;
    transform: translateY(1.6rem);
  }
}
/* ==========
D
========== */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* ==========
Boton up
========== */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #fdc414;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
  color: #fff;
  border: 0.5px solid white;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #08192e;
  color: #fdc414;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/* ==========
Date
========== */
.date {
  position: fixed;
  left: 15px;
  bottom: 5px;
  width: 220px;
  background: rgba(46, 114, 184, 0.9);
  padding: 10px 15px;
  border-radius: 12px 12px 12px 0;
  border: 1px solid #fdc414;
  z-index: 20;
}
.date .swiper-wrapper {
  margin: 0 12px 8px;
}
.date .swiper-slide {
  margin: auto 10px;
}
.date .swiper-slide h5 {
  color: #fdc414;
  font-weight: 600;
}
.date .swiper-slide p {
  color: #ffffff;
  font-weight: 600;
}
.date .swiper-pagination {
  bottom: 0;
}
.date .swiper-pagination .swiper-pagination-bullet {
  background-color: #08192e;
}
.date .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fdc414;
}
/* ==========
Header
========== */
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  margin-top: 20px;
}
.header .log-sc {
  padding: 0px 8px;
  display: inline-block;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.8);
}
.header .log-sc img {
  height: 50px;
  padding: 5px 0;
  margin: 0px 15px;
}
.header .navbar {
  background: #ffffff;
  padding: 8px 40px;
  border-radius: 240px;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
}
.header.sticked {
  padding: 0;
}
@media (max-width: 1200px) {
  .header {
    padding: 0;
  }
}
@media (max-width: 1279px) {
  .header {
    padding: 5px 0;
    margin-top: 0px;
  }
  .header.sticked {
    padding: 8px 0;
  }
  .log-sc img {
    height: 40px !important;
    margin: 10px 15px 10px 0 !important;
  }
}
/* ==========
Nav Desktop
========== */
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar li:hover a {
    color: #08192e;
  }
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #08192e;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    text-transform: uppercase;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #fff;
    border-bottom: 1px solid #fdc414;
  }
  .navbar .active {
    color: #08192e;
    border-bottom: 2px solid #fdc414;
    border-bottom-width: 50%;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .mobile-nav-show {
    display: none !important;
  }
  .mobile-nav-hide {
    display: none !important;
  }
}
/* ==========
Nav mobile
========== */
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: url("../img/backg/bg-menu.jpg") center center;
    background-size: cover;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    /****/
    text-align: center;
  }
  .navbar a {
    /*display: flex;
			align-items: center;
			justify-content: space-between;*/
    padding: 20px;
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #fdc414;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #fdc414;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover {
    color: #ffffff !important;
  }
  .navbar .active {
    background: #fdc414;
    color: #fff;
  }
  .navbar .active:focus {
    color: #fff;
  }
  .navbar li {
    /******/
    margin: 20px 0;
    padding: 15px 0;
    /******/
    list-style: none;
  }
  .navbar li:hover > a {
    color: #fff;
  }
  .mobile-nav-show {
    color: #fdc414;
    font-size: 40px;
    font-weight: 500;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 10px;
    top: 20px;
  }
  .mobile-nav-hide {
    color: #fdc414;
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 30px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navbar {
    right: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}
/* ==========
Footer
========== */
#footer {
  background-color: #08192e;
  border-top: 2px solid #fdc414;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  width: 100%;
  margin: auto;
  background: #08192e;
  padding: 20px 0;
}
#footer .footer-top .footer-info {
  /*margin: ;*/
}
#footer .footer-top .footer-info p {
  font-size: 18px;
  margin: 0 auto;
  font-family: sans-serif;
  color: #fff;
  width: auto;
}
#footer .footer-top .footer-info span {
  font-size: 22px;
  line-height: 1.4em;
}
#footer .footer-top .legals {
  text-align: center;
}
#footer .footer-top .legals p {
  margin: 24px auto 14px;
}
#footer .footer-top .legals a {
  color: #ffffff;
}
#footer .footer-top .legals a:hover {
  color: #fdc414;
}
#footer .footer-newsletter .logo-1 {
  width: auto;
  height: 60px;
}
/*=============
Hero
=============*/
.hero {
  background: url("../img/backg/BG_home.png") center center;
  background-size: cover;
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  overflow: hidden;
}
.hero .hero-img {
  text-align: center;
}
.hero .hero-img .evdat {
  border-radius: 12px;
  background: rgba(46, 114, 184, 0.9);
  padding: 16px 0;
  margin-top: 5px;
}
.hero .hero-img .evdat .mar-iz {
  border-left: 1px solid #ffffff;
}
.hero .hero-img .evdat h5 {
  font-size: 1em;
  font-weight: 600;
  color: #fdc414;
  margin: 0;
}
.hero .hero-img .evdat p {
  margin: 0;
  font-size: 0.8em;
  font-weight: 600;
  color: #ffffff;
}
.hero .instrucciones {
  max-width: 980px;
  margin: auto;
  color: #ffffff;
}
.hero .instrucciones ul {
  list-style: none;
  padding: 2% 2% 0;
}
.hero .instrucciones ul li {
  font-size: 1.4em;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}
.hero .instrucciones ul span {
  color: #fdc414;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.hero .instrucciones .logo-dim {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: baseline;
  align-content: center;
  padding: 0px;
}
.hero .cta-b {
  justify-content: center;
}
.hero .btn {
  color: #08192e;
  background: #fdc414;
  font-weight: 600;
  border: 2px solid #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 46px;
  border-radius: 50px;
  transition: 1s;
  text-transform: uppercase;
}
.hero .btn:hover {
  color: #fdc414;
  background: #08192e;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  .hero .btn {
    text-align: center;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .hero .instrucciones ul li {
    font-size: 2em !important;
    text-align: left;
  }
  .hero .instrucciones ul span {
    font-size: 1.2em !important;
  }
  .hero .instrucciones .logo-dim {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .hero .instrucciones {
    padding: 0 15px;
  }
  .hero .instrucciones img {
    width: 100%;
  }
  .hero .instrucciones .imgdm {
    display: none;
  }
  .hero .instrucciones .cp1 {
    width: 60%;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*=============
Brands
=============*/
.brands {
  background: #000000;
  padding: 0;
}
.brands .swiper {
  padding: 0;
}
.brands .swiper-wrapper {
  height: auto;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.brands .swiper-slide {
  text-align: center;
  padding: 15px 0;
}
.brands .swiper-slide img {
  margin: auto;
  transition: 0.3s;
  padding: 0 10px;
}
.brands .swiper-slide img:hover {
  transform: scale(1.1);
}
/* ==========
Register
========== */
.registro {
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
  background: url("../img/backg/BG_registro.jpg") center center;
  background-size: cover;
}
.registro .cont-w {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: transparent;
}
.registro .campania img {
  max-height: 400px;
}
.registro .form {
  background-color: #ffffff;
  /*backdrop-filter: blur(5px);*/
  margin: 0px auto 0;
  padding: 20px 0% 20px;
  border-radius: 18px;
  position: relative;
  color: black;
  z-index: 2;
  max-width: 550px;
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  margin-bottom: 20px;
}
.registro .form .form-content {
  width: 100%;
  background-color: transparent;
  max-width: 550px;
  margin: 0 auto;
}
.registro .form .form-content label {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .registro .form {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .registro .form {
    max-width: 100% !important;
    width: 100%;
    margin-top: 20px;
  }
}
.registro .form input {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: none;
  border-radius: 25px !important;
  padding: 8px;
  border: 1px solid #fdc414;
}
.registro .form input:focus {
  border: solid 1px #fdc414;
}
.registro .form .errors {
  margin-top: 12px;
  text-align: center;
}
.registro .form .errors ul {
  list-style: none;
  padding: 0;
}
.registro .form .errors li {
  font-weight: 600;
  font-size: 1.4em;
}
.registro .form .form-control,
.registro .form .form-select-sm {
  background-color: rgba(237, 237, 237, 0.4);
  color: #08192e;
  font-weight: 600;
  line-height: 1.75;
  border-radius: 25px !important;
  width: 80%;
  margin: 2% auto 0;
  padding-left: 20px;
  border: 1px solid #fdc414;
}
.registro .form .form-control::placeholder,
.registro .form .form-select-sm::placeholder {
  text-align: left;
  color: #08192e;
}
.registro .form p {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: #212529;
  font-size: 1em !important;
  line-height: 1;
}
@media (max-width: 480px) {
  .registro .form p {
    padding: 0px 4% 20px;
  }
}
.registro .form .send {
  background: #6AC569;
  background: #fdc414;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  color: #08192e;
  width: 45%;
  font-weight: bold;
  transition: all 0.5s;
}
.registro .form .send:hover {
  color: #08192e;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .registro .form .send {
    width: 80%;
  }
}
.registro .form .legals {
  width: 80%;
  margin: 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.registro .form .legals label {
  font-size: 12px;
  font-weight: 100;
  color: #212529;
}
.registro .form .legals input {
  background-color: rgba(253, 196, 20, 0.6) !important;
  border-radius: 4px !important;
}
.registro .form .legals a {
  color: #08192e;
  font-weight: 900;
  font-size: 12px;
}
.registro .hiden {
  display: none !important;
}
.registro .consulta-p {
  font-size: 12px;
  font-weight: 600;
}
.file-upload {
  margin-top: 10px;
}
.file-upload p {
  font-size: 1em !important;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 8px;
}
.file-upload .image-box {
  margin: 24px auto;
  height: 60px;
  width: 60px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: 3px solid #fdc414;
  border-radius: 50%;
  -ms-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.5s ease;
  /*&::after {
            content: "";
            width: calc(100% + 16px);
            height: calc(100% + 16px);
            position: absolute;
            top: -8px;
            left: -8px;
            border-radius: 50%;
            border: solid 2px @color-white;
        }*/
}
.file-upload .image-box i {
  color: #fdc414;
  margin-top: 8px;
  font-weight: 900;
  font-size: 40px;
}
.file-upload .image-box img {
  height: 40px;
  width: 100%;
  border-radius: 8px;
  display: none;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 480px) {
  .file-upload .image-box {
    height: 60px;
    width: 60px;
  }
  .file-upload .image-box img {
    height: 80px;
    width: 100%;
  }
}
.file-upload .image-box p {
  position: relative;
  top: 32%;
  color: #000000;
  font-size: 14px;
  line-height: 1.3em;
  padding: 0 8%;
}
@media (min-width: 768px) {
  .registro {
    width: 100%;
    background: url("../img/backg/BG_registro.jpg") bottom;
    background-size: cover;
  }
  .registro .cont-w {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
/*==============
Ceremonia
==============*/
.ruta {
  overflow-x: hidden;
  background: #000000;
  min-height: 80vh;
}
.ruta .container {
  padding: 120px 0 60px !important;
}
.ruta .ruta-img {
  position: relative;
}
.ruta .ruta-img img {
  border-radius: 12px;
}
.ruta .section-header {
  text-align: center;
}
.ruta .section-header h2 {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}
.ruta .section-header p {
  margin: 0 auto;
  color: #ffffff;
}
.ruta h3 {
  color: #fdc414;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}
.ruta .nav-pills {
  border-bottom: 1px solid #ffffff;
}
.ruta .nav-pills li {
  margin-left: auto;
}
.ruta .nav-pills li:last-child {
  margin-left: 24px;
  margin-right: auto;
}
.ruta .nav-link {
  margin: auto;
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}
.ruta .nav-link.active {
  color: #fdc414;
  background: none;
  border-bottom: 3px solid #fdc414;
}
.ruta .tab-content ul {
  list-style: none;
  padding: 0;
}
.ruta .tab-content ul li {
  padding-bottom: 10px;
  font-weight: 600;
}
.ruta .tab-content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #08192e;
}
.ruta .tab-content h4 {
  font-size: 2.4em;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.ruta .doc-cont {
  background-color: #2e72b8;
  padding: 30px 0px;
  border-radius: 12px;
}
.ruta .mapcont {
  padding: 20px 0px;
}
.ruta .mapcont .row {
  padding: 0px !important;
}
.ruta .title {
  padding: 0 30px;
}
.ruta .title strong {
  color: #fdc414;
  font-size: 1.4em;
  font-weight: 700;
}
.ruta .title p {
  margin-bottom: 8px;
  font-size: 1em;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.9);
}
.ruta .title h5 {
  color: rgba(33, 37, 41, 0.8);
  font-size: 0.9em;
}
.ruta .title .cta-btn {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fdc414;
  color: #ffc451;
  font-weight: 600;
  text-decoration: none;
}
.ruta .title .cta-btn i {
  vertical-align: middle;
  margin-right: 4px;
  font-size: 16px;
  font-weight: 400;
}
.ruta .title .cta-btn:hover {
  background: #fdc414;
  border-color: #fdc414;
  color: #ffffff;
  font-weight: 600;
}
@media (max-width: 575px) {
  .ruta .ruta-img {
    margin: 30px 0 0 30px;
  }
  .ruta .ruta-img:before {
    inset: -30px 0 0 -30px;
  }
  .ruta .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .ruta h3 {
    font-size: 28px;
  }
}
/*==============
Ceremonia
==============*/
.foodtruck {
  background: #000000;
  padding: 120px 0 80px;
}
.foodtruck .foodtruck-img {
  text-align: center;
  position: relative;
}
.foodtruck .foodtruck-img img {
  border-radius: 12px;
}
.foodtruck .section-header {
  text-align: center;
}
.foodtruck .section-header h2 {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}
.foodtruck .section-header p {
  font-size: 1.4em;
  margin: 0 auto;
  color: #ffffff;
}
@media (max-width: 575px) {
  .foodtruck .foodtruck-img {
    margin: 30px 0 30px;
  }
  .foodtruck .foodtruck-img:before {
    inset: -30px 0 0 -30px;
  }
}
/* ==========
Modal
========== */
.modal-content {
  background: url("../img/backg/BG_home.png") center center;
  background-size: cover;
  border-radius: 15px;
}
.modal-content .modal-body {
  background-color: transparent;
  border: none;
  padding-top: 50px;
  padding-bottom: 20px;
}
.modal-content .modal-body .post-all {
  max-width: 600px;
  margin: 40px auto;
}
.modal-content .modal-body .post-all .inst-post {
  background-color: #ffffff;
  padding: 45px 15px 15px 15px;
  border: 2px solid #08192e;
  border-radius: 8px;
  -webkit-box-shadow: 0px 12px 1px -1px #004a74;
  -moz-box-shadow: 0px 12px 1px -1px #004a74;
  box-shadow: 0px 12px 1px -1px #004a74;
}
.modal-content .modal-body .post-all .inst-post h3 {
  color: #212529;
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post i {
  vertical-align: middle;
  color: #212529;
  font-size: 3em;
  color: #6ac569;
}
.modal-content .modal-body .post-all .inst-post h5 {
  color: #212529;
  font-weight: 900;
  font-size: 1.2em;
  text-align: center;
}
.modal-content .modal-body .post-all .inst-post ol {
  color: #212529;
  font-weight: 600;
  font-size: 1em;
}
.modal-content .modal-body .post-all .inst-post p {
  text-align: center;
  color: #212529;
  font-weight: 600;
  font-size: 0.8em;
}
.modal-content .modal-body .post-all .inst-post a {
  color: #212529;
}
.modal-content .modal-body .post-all .inst-post a:hover {
  color: #fdc414;
}
.modal-content .modal-footer {
  background-color: transparent;
  border: none;
}
.modal-content .modal-footer a {
  color: #ffffff;
  font-weight: 600;
}
.modal-content .modal-footer .btn-secondary {
  background-color: #fdc414;
  border: none;
  padding: 12px 26px;
  border-radius: 12px;
}
.loader-form {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2022;
}
.loader-form .three {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader-form .three .loader {
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
/* LOADER 6 */
#loader-6 span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #3498db;
  background-color: white;
}
#loader-6 span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}
#loader-6 span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}
#loader-6 span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}
#loader-6 span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}
@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }
  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}
