:root {
    --bg-color: #151515;
    --primary-color: #000000;
    --secondary-color: #e1252e;
  }
  
  body {
    background: var(--bg-color);
    background-attachment: fixed;
    color: #ffffff;
    font-family: "Roboto";
  }
  body form .alerta {
    color: red;
    font-size: 11px;
  }
  
  .modal {
    backdrop-filter: blur(20px);
  }
  .modal .modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
  }
  .modal .modal-title {
    color: var(--bg-color);
  }
  .modal form .content input[type=text] {
    outline: 0;
    padding: 15px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 0 15px;
  }
  .modal form .content button {
    border-radius: 33px;
    border: 0;
    background: var(--secondary-color);
    color: #161616;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .modal form .content button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  @keyframes shine {
    0% {
      transform: translateX(-2000px);
    }
    100% {
      transform: translateX(2000px);
    }
  }
  .modal form label {
    margin: 10px auto;
    display: table;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    color: #666666;
  }
  
  .modal-content {
    background-color: rgba(255, 0, 0, 0) !important;
    border: 0px;
  }
  
  .modal-header {
    border: 0;
    max-height: 25px;
  }
  
  .close {
    background-color: #00ffff00;
    color: white;
    border: none;
  }
  
  @media (min-width: 576px) {
    .modal-dialog {
      max-width: 751px;
      margin: 1.75rem auto;
    }
  }
  .nav-link {
    font-weight: 500;
    color: white !important;
  }
  .nav-link:hover {
    color: white !important;
    background-color: var(--primary-color);
    font-weight: 600;
    border-radius: 23px;
    transition: 0.6ms;
  }
  
  .header {
    background: url(../img/fondo-2.jpg) no-repeat center center/cover;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    margin: 0 auto 0px;
    border-bottom: 1px solid var(--secondary-color);
  }
  .header .container {
    max-width: 1225px !important;
  }
  @media only screen and (device-width: 768px) {
    .header {
      background: url(../img/fondo-2.jpg) no-repeat center center/cover;
      max-height: 100%;
      background-position-x: -191px;
      height: auto;
      padding-bottom: 30px;
    }
  }
  .header .borde {
    padding-left: 10px;
    border-left: 5px solid var(--secondary-color);
    color: white;
  }
  @media (max-width: 576px) {
    .header .borde {
      text-align: center;
      border-left: none;
      font-size: 16px !important;
    }
  }
  .header .fecha {
    color: white;
    font-size: 35px !important;
    margin: 24px 0;
    font-weight: 100;
  }
  @media (max-width: 576px) {
    .header .fecha {
      text-align: center;
      font-size: 20px;
      margin-top: -12px;
    }
  }
  .header .fecha span {
    font-weight: 100;
  }
  .header .fecha .blink {
    animation: blinker 2s linear infinite;
    color: #73e5ff;
    position: absolute;
    font-weight: 700;
    margin-top: 16px;
    margin-left: 12px;
  }
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  .header .play {
    width: 100%;
    opacity: 0.9;
    margin-top: -103px;
    cursor: pointer;
    border: 1px solid red;
  }
  @media (max-width: 576px) {
    .header .play {
      width: 100%;
      margin-top: 108px;
    }
  }
  .header .play:hover {
    opacity: 1;
  }
  .header .play img {
    width: 100%;
  }
  .header video {
    border: 1px solid var(--secondary-color);
  }
  .header .bg-gold {
    background-color: var(--secondary-color);
  }
  .header h1 {
    font-size: 4em !important;
  }
  @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    .header h1 {
      font-size: 2em !important;
      text-align: center;
    }
  }
  .header header {
    transition: all 0.3s ease-in-out;
    top: -200px;
  }
  .header header .container {
    max-width: 1225px !important;
  }
  .header header.scroll {
    padding: 0 4vw;
    transition: all 0.5s ease-in-out;
    position: fixed;
    z-index: 4;
    width: 100%;
    background: var(--primary-color);
    box-shadow: 0px 5px 20px 0px #29292985;
    top: 0;
    left: 0;
    margin: 0;
    padding: 6px 0;
  }
  @media (max-width: 700px) {
    .header header.scroll #menuNew {
      box-shadow: 0px 3px 41px #2b1f9c;
      padding: 6px 10px;
    }
  }
  .header header.scroll h2 {
    font-size: 23px;
    margin-top: 10px;
  }
  @media (max-width: 576px) {
    .header header.scroll {
      padding: 0;
    }
  }
  @media (max-width: 576px) {
    .header header.scroll .container {
      width: 100% !important;
    }
  }
  .header header.scroll button {
    border-radius: 33px;
    padding: 13px 25px;
    border: 0;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 576px) {
    .header header.scroll button {
      font-size: 12px;
    }
  }
  .header header.scroll button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  .header .banner {
    color: #fff;
    top: 50%;
    left: 50%;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .header .banner button {
    border-radius: 40px;
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 576px) {
    .header .banner button {
      font-size: 13px;
    }
  }
  .header .banner button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  .header .banner .text {
    padding: 51px 2rem 0 0;
  }
  .header .banner .text .headline {
    font-size: 18px;
    font-family: "Roboto Condensed";
    font-style: italic;
  }
  @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    .header .banner .text .headline {
      text-align: center;
      font-size: 20px;
    }
  }
  .header .banner .text .separator {
    margin: 30px 0;
    display: block;
    width: 100px;
    height: 1px;
    background: #ffffff;
  }
  @media (max-width: 600px) {
    .header .banner .text .separator {
      margin: 15px 0;
    }
  }
  .header .banner .text .title-01 {
    width: 87%;
    margin: 46px 0 16px 0;
    margin-left: -11px;
  }
  .header .banner .text .title-02 {
    width: 100%;
    margin: 10px 0;
  }
  @media (max-width: 600px) {
    .header .banner .text .title-02 {
      width: 80%;
      display: block;
      margin: 6px auto -53px auto;
    }
  }
  .header .banner .text .inscriptos {
    color: #57ddf3;
    position: absolute;
    margin: -29px 0 19px 0;
    font-size: 14px;
  }
  @media (max-width: 700px) {
    .header .banner .text .inscriptos {
      text-align: center;
      width: 100%;
    }
  }
  .header .banner .text p {
    font-size: 22px;
  }
  .header .banner .text p span {
    font-size: 24px;
    line-height: 24px;
  }
  @media (max-width: 600px) {
    .header .banner .text p span {
      font-size: 19px;
      line-height: 24px;
    }
  }
  .header .banner .video {
    padding-top: 90px;
  }
  .header .banner .video .evento {
    position: absolute;
    right: 0px;
    width: 130px;
    bottom: 0px;
  }
  @media (max-width: 768px) {
    .header .banner {
      width: auto;
      position: relative;
      top: 0;
      left: 0;
      transform: none;
    }
    .header .banner .text {
      padding: 91px 0 0 0;
    }
    .header .banner .text .headline {
      font-size: 17px;
    }
    .header .banner .text .title-01 {
      width: 60%;
    }
    .header .banner .text p {
      font-size: 21px;
    }
    .header .banner .fecha {
      font-size: 21px !important;
    }
    .header .banner .video {
      padding-top: 57px;
      padding-bottom: 0px;
    }
    .header .banner .video img {
      width: 70%;
    }
  }
  .header .addEmail {
    width: 100%;
    position: fixed;
    bottom: -500px;
    background: #080021;
    background: linear-gradient(180deg, #0511168a 16%, #c9a74162 100%);
    padding: 10px 0 40px;
    left: 0;
    z-index: 2;
    transition: all 0.3s ease-in-out;
  }
  .header .addEmail .row .col {
    padding: 0;
  }
  .header .addEmail form .content {
    max-width: 600px;
    box-shadow: 0 28px 79px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin: 0;
  }
  .header .addEmail form .content input {
    border: 0;
    outline: 0;
    padding: 15px;
    width: 100%;
  }
  .header .addEmail form .content button {
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .header .addEmail form .content button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 241, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  @keyframes shine {
    0% {
      transform: translateX(-2000px);
    }
    100% {
      transform: translateX(2000px);
    }
  }
  .header .addEmail form label {
    margin: 10px auto;
    display: table !important;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  @media (max-width: 600px) {
    .header .addEmail {
      width: 100%;
      top: auto;
      bottom: 0;
      padding: 10px;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, #0511168a 16%, #c9a74162 100%);
    }
    .header .addEmail form .content {
      transform: none;
      position: relative;
      left: 0;
    }
    .header .addEmail form .content button {
      font-size: 14px;
      padding: 18px 0 15px;
    }
    .header .addEmail form label {
      color: #fff;
      font-weight: normal;
      transition: all 0.3s ease-in-out;
      display: none !important;
    }
  }
  @media (min-width: 600px) {
    .header .addEmail.scroll {
      position: fixed;
      bottom: 0;
      padding: 15px 0;
      transition: all 0.3s ease-in-out;
      backdrop-filter: blur(5px);
      background: #bf455e;
      background: linear-gradient(180deg, #0511168a 16%, #414bc962 100%);
    }
    .header .addEmail.scroll form label {
      color: #fff;
      font-weight: normal;
      transition: all 0.3s ease-in-out;
    }
  }
  @media (max-width: 767px) {
    .header {
      background: url(../img/fondo-2.jpg) no-repeat center center/cover;
      max-height: 100%;
      height: auto;
      padding-bottom: 30px;
    }
    .header header {
      padding: 1px;
    }
    .header header nav .container-fluid {
      padding: 0;
    }
    .header header nav .container-fluid .main-nav {
      display: block !important;
      width: 100%;
    }
  }
  @media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
    .header {
      background-position-x: -164px;
      max-height: 59vh;
    }
  }
  .header .form-02 form .content {
    text-align: left;
    max-width: 600px;
    box-shadow: 0 28px 79px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin: 0;
  }
  .header .form-02 form .content .col {
    padding: 0;
  }
  .header .form-02 form .content input {
    border-radius: 33px;
    border: 0;
    outline: 0;
    padding: 15px;
    width: 100%;
  }
  .header .form-02 form .content button {
    border: 0;
    border-radius: 33px;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 94%;
    position: relative;
    overflow: hidden;
  }
  .header .form-02 form .content button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 249, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  @media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
    .header .form-02 form .content button {
      font-size: 13px;
    }
  }
  @keyframes shine {
    0% {
      transform: translateX(-2000px);
    }
    100% {
      transform: translateX(2000px);
    }
  }
  .header .form-02 form label {
    margin: 10px auto;
    display: block;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  #countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    color: #adafb2 !important;
    border-width: 1px 0;
    overflow: hidden;
    font-family: var(--font-h1) !important;
    font-weight: bold;
  }
  
  ul#countdown li {
    margin: 0 5px 0px 14px;
    padding: 0;
    display: inline-block;
    font-size: 2vw;
    text-align: center;
    font-family: var(--font-h1) !important;
    color: var(--color-primario);
  }
  ul#countdown li .label {
    color: #e2e2e2;
    font-size: 8px;
    text-transform: uppercase;
    display: block !important;
  }
  
  @media screen and (max-width: 700px) {
    ul#countdown li {
      margin: 5px 5px 4px 5px;
      width: 23%;
      font-size: 6vw !important;
    }
    ul#countdown li .label {
      font-size: 1.8vw;
      color: var(--secondary-color);
    }
  }
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  /* \\\ESTILOS COUNTDOWN \\\\*/
  main {
    overflow: hidden;
  }
  main section {
    padding: 60px 0;
  }
  main section .subtitle2 {
    text-align: center;
    margin-bottom: 37px;
    font-family: "Roboto Condensed";
    font-weight: 300;
  }
  main section .subtitle2 span {
    color: var(--secondary-color);
  }
  main section .subtitle {
    margin: 0 auto 50px;
    max-width: 800px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Roboto Condensed";
    font-size: 42px;
  }
  main section .subtitle span {
    color: var(--secondary-color);
  }
  main section .subtitle.italic {
    font-style: italic;
  }
  main section .subtitle b {
    font-weight: 600;
  }
  main section.mark2 {
    background: var(--secondary-color);
    margin: 0 !important;
  }
  main section.mark2 .container {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  main section.mark2 .container h3 {
    margin: 0 auto;
  }
  main section.mark {
    background: var(--secondary-color);
    background: url(../img/fondo-4.jpg) no-repeat center center/cover;
    margin: 0 !important;
  }
  main section.mark .container {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  main section.mark h3 {
    max-width: 890px;
    text-align: center;
    font-size: 36px;
    margin: 0 auto 50px;
  }
  @media (max-width: 600px) {
    main section.mark h3 {
      margin: 0 auto 20px;
    }
  }
  main .section1 {
    background-color: #0f0f0f;
  }
  main .section1 .container {
    max-width: 900px;
  }
  main .section1 .container h2 {
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--secondary-color);
    /* background-color: white; */
    padding: 1% 5%;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 4%;
  }
  main .section1 .container .cuadro-usuario {
    display: flex;
    flex-direction: row;
    align-content: center;
    border: 1px solid #e1252e3d;
    border-radius: 21px;
    padding: 17px;
    margin: 7px;
  }
  main .section1 .container .cuadro-usuario .cont-img {
    max-width: 111px;
    max-height: 111px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    box-shadow: 3px 4px 20px #b12b1554;
  }
  main .section1 .container .cuadro-usuario .cont-img img {
    width: 166%;
    position: relative;
    left: -32%;
  }
  main .section1 .container .cuadro-usuario .cont-img img[src*=us-2] {
    top: -69px !important;
    position: relative;
    width: 166px;
    left: -29px;
  }
  main .section1 .container .cuadro-usuario .cont-text {
    padding-left: 23px;
    border-left: 1px solid #e1252e3d;
    margin-left: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  main .section1 .container .cuadro-usuario .cont-text h4 {
    font-size: 40px;
    color: #ec9898;
    margin: 0;
  }
  main .section1 .container .cuadro-usuario .cont-text p {
    color: #d0d0d0;
    font-size: 22px;
  }
  main .section2 {
    background-color: #2f2e2e;
    padding: 3% 2% !important;
  }
  main .section2 .container {
    max-width: 900px;
  }
  main .section2 .container h2 {
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--secondary-color);
    /* background-color: white; */
    padding: 1% 5%;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 4%;
  }
  main .section2 .container p {
    font-size: 23px;
  }
  main .section2 .container .comentario-a {
    width: 100%;
    display: none;
  }
  main .section2 .container .comentario-b {
    width: 100%;
  }
  main .section2 .testimoniales .content2 {
    background: var(--primary-color);
    background: linear-gradient(-259deg, #0f1a6d 0%, #5987cc 154%);
    border-radius: 7px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    color: #ffffff;
  }
  @media (max-width: 600px) {
    main .section2 .testimoniales .content2 {
      margin: 20px auto;
    }
  }
  main .section2 .testimoniales .content2 h6 .fa-facebook-square {
    font-size: 25px;
    position: absolute;
    right: 38px;
    margin-top: 0px;
  }
  main .section2 .testimoniales .content2 h6 .comentario-fecha {
    position: absolute;
    font-weight: 100;
    top: 53px;
    opacity: 0.7;
    font-size: 11px;
  }
  @media (max-width: 600px) {
    main .section2 .testimoniales .content2 h6 .comentario-fecha {
      top: 82px;
    }
  }
  main .section2 .testimoniales .content2 h6 img {
    width: 42px;
    margin-right: 15px;
  }
  main .section2 .testimoniales .content2 p {
    font-style: italic;
    text-align: left;
    font-size: 16px;
  }
  main .section2 .testimoniales .content2 span {
    font-weight: bold;
    font-size: 14px;
    font-family: "Roboto Condensed";
    text-align: left;
    display: block;
    width: 100%;
  }
  main .section2 .swiper-container {
    min-height: 422px;
    overflow: hidden;
  }
  main .section2 .swiper-slide {
    transition: 1s ease-in-out;
    margin-top: 73px;
    transform: scale(0.8);
  }
  @media (max-width: 700px) {
    main .section2 .swiper-slide {
      transform: none;
      margin-top: 202px;
    }
  }
  main .section2 .swiper-slide-next {
    transform: scale(1.2);
    transform-origin: bottom;
    border-radius: 32px;
  }
  @media (max-width: 760px) {
    main .section2 .swiper-button-next {
      right: 20px;
      transform: rotate(90deg);
      display: none;
    }
    main .section2 .swiper-button-prev {
      left: 20px;
      transform: rotate(90deg);
      display: none;
    }
    main .section2 .swiper-container {
      height: 84vh;
      overflow: hidden;
    }
  }
  main .section2 form .content {
    max-width: 600px;
    box-shadow: 0 28px 79px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin: 0;
  }
  main .section2 form .content input {
    border: 0;
    outline: 0;
    padding: 15px;
    width: 100%;
    border-radius: 34px;
  }
  main .section2 form .content button {
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
  }
  main .section2 form .content button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 241, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  @keyframes shine {
    0% {
      transform: translateX(-2000px);
    }
    100% {
      transform: translateX(2000px);
    }
  }
  main .section2 form label {
    margin: 10px auto;
    display: table !important;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
  }
  main .section2 button {
    border-radius: 40px;
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 576px) {
    main .section2 button {
      font-size: 13px;
    }
  }
  main .section2 button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  main .section3 {
    background-color: #ebebeb;
    padding: 3% 2% !important;
  }
  main .section3 .container {
    max-width: 900px;
  }
  main .section3 .container h2 {
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--secondary-color);
    /* background-color: white; */
    padding: 1% 5%;
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 4%;
  }
  main .section3 .container ul {
    padding: 0 !important;
  }
  main .section3 .container li {
    list-style: none;
    font-size: 30px;
    color: #393939;
  }
  main .section3 .container li i {
    color: var(--secondary-color);
  }
  main .section3 .container p {
    font-size: 23px;
    color: #393939;
  }
  main .section3 .container .kiyo2 {
    display: block;
    margin: 10px auto;
    box-shadow: 7px 8px 0px #e1252e;
  }
  @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    main .section3 .container .kiyo2 {
      width: 100%;
    }
  }
  main .section3 .container .libro-a {
    display: block;
    margin: 0 auto;
  }
  main .section3 .container #carouselExampleControls2 .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%black'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  }
  main .section3 .container .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%black'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  main .section3 form .content {
    max-width: 600px;
    border-radius: 5px;
    overflow: hidden;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin: 0;
  }
  main .section3 form .content input {
    border: 0;
    outline: 0;
    padding: 15px;
    width: 100%;
    border-radius: 34px;
  }
  main .section3 form .content button {
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
  }
  main .section3 form .content button:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(255, 241, 172, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  @keyframes shine {
    0% {
      transform: translateX(-2000px);
    }
    100% {
      transform: translateX(2000px);
    }
  }
  main .section3 form label {
    margin: 10px auto;
    display: table !important;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    color: black;
  }
  main .section3 .button-form {
    border-radius: 40px;
    border: 0;
    background: var(--secondary-color);
    color: white;
    padding: 15px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 576px) {
    main .section3 .button-form {
      font-size: 13px;
    }
  }
  main .section3 .button-form:before {
    content: "";
    animation: shine linear 3s;
    animation-iteration-count: infinite;
    position: absolute;
    height: 200px;
    width: 700px;
    background: white;
    background: linear-gradient(126deg, rgba(255, 255, 255, 0) 10%, rgba(172, 222, 255, 0.7) 48%, rgba(255, 255, 255, 0) 83%);
    margin: -150px 0 0;
  }
  
  .exito {
    margin: 0;
    padding: 20px 0 50px;
    text-align: center;
    height: 100%;
    max-height: 100%;
    font-weight: normal;
    background: url(../img/fondo-2.jpg) no-repeat center center/cover !important;
  }
  .exito .container {
    max-width: 1108px !important;
  }
  .exito:after {
    display: none;
  }
  .exito .ahora {
    border: 1px solid var(--secondary-color);
    border-radius: 21px;
    margin: 12px 0;
    background-color: #00000052;
  }
  .exito .ahora .button {
    display: inline-block;
    /* background-color: antiquewhite; */
    border: 2px solid var(--secondary-color);
    padding: 6px 15px;
    color: var(--secondary-color) !important;
    color: white;
    border-radius: 10px;
    text-decoration: none;
  }
  .exito .ahora .button:hover {
    background-color: var(--primary-color);
  }
  .exito .ahora .row div:first-child {
    border-right: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .exito .ahora .row div:first-child .numero {
    font-size: 95px;
    color: var(--secondary-color);
  }
  .exito .ahora .row div:last-child {
    padding: 19px 23px;
    display: flex;
    align-items: center;
  }
  .exito .ahora .row div:last-child p {
    padding: 34px 15px;
    text-align: left;
  }
  @media (max-width: 600px) {
    .exito .ahora .row div:last-child p {
      text-align: center;
    }
  }
  .exito .boton {
    border: 0;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 15px;
    font-weight: bold;
    display: block;
    text-decoration: none;
    width: 100%;
    position: relative;
    margin: 18px auto;
    overflow: hidden;
    border-radius: 3px;
    max-width: 473px;
  }
  .exito .boton:hover {
    background-color: #d5c237;
  }
  .exito .bg-01 {
    background: url(./img/fondo-3.jpg) no-repeat center center/cover;
    padding: 15px 0;
  }
  .exito h1 {
    margin: 1.5rem 0;
  }
  .exito h1.title {
    text-shadow: 0 0 50px rgba(64, 160, 220, 0.8);
    font-size: 46px;
  }
  @media (max-width: 600px) {
    .exito h1.title {
      font-size: 3rem;
    }
  }
  .exito h5 {
    max-width: 564px;
    margin: 9px auto;
  }
  .exito .tickets {
    width: 100%;
    max-width: 300px;
  }
  .exito .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    transform: none;
    left: 0;
    top: 0;
  }
  .exito .container .banner .text .separator {
    margin: 25px auto;
  }
  .exito .list {
    text-align: left;
    margin: 0;
    padding: 0 0 0 40px;
    list-style: none;
  }
  .exito .list li {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 2rem;
    position: relative;
  }
  @media (max-width: 600px) {
    .exito .list li {
      font-size: 1rem;
      line-height: 1.2;
    }
  }
  .exito .list li span {
    position: absolute;
    left: -40px;
    font-size: 3rem;
    top: 0;
    line-height: 1;
  }
  .exito .list li a {
    color: var(--secondary-color);
  }
  .exito .list .subscribe {
    background: #c4302b url(../img/yt-play.png) no-repeat 10px center/40px;
    border-radius: 7px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding-right: 30px;
    padding-left: 70px;
    position: relative;
    color: white;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 1px;
    margin: 15px 0;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  }
  .exito .list.last {
    background: var(--secondary-color);
    padding: 40px 40px 10px 70px;
    line-height: 1;
  }
  .exito .list.last li span {
    left: -44px;
    top: -5px;
  }
  .exito .shareWP {
    max-width: 625px;
    margin: 1rem auto;
  }
  .exito .wap {
    align-items: center;
    width: 207px;
    border-radius: 7px;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
    margin-top: 30px;
    padding: 7px 20px;
    opacity: 0.9;
    display: flex;
  }
  .exito .wap:hover {
    color: #fff;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .exito .wap i {
    font-size: 1.4em;
    margin-right: 10px;
  }
  
  footer {
    margin: 0 auto;
    padding: 50px 0 0px;
    font-size: 12px;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    min-height: 163px;
  }
  footer .logo-footer {
    margin: 20px 0 0;
  }
  footer a {
    color: var(--primary-color);
  }
  footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  footer ul li {
    font-size: 12px;
    margin: 0 0 15px;
  }
  footer .footer-faqs {
    margin: 15px 0;
  }
  footer .footer-faqs a {
    margin: 0 5px;
  }
  footer .socials {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }
  footer .socials li {
    display: inline-block;
    margin: 0 10px;
  }
  footer .socials li a {
    display: block;
  }
  footer .socials li a img {
    width: 30px;
    filter: invert(1);
  }
  @media (max-width: 600px) {
    footer {
      padding: 30px 30px 150px;
      text-align: center;
    }
    footer .logo-footer {
      width: 120px;
      margin: 10px 0;
    }
    footer .text-end {
      margin-bottom: 30px;
      text-align: center !important;
    }
  }
  
  /*# sourceMappingURL=style.css.map */
  .flip-clock {
    text-align: center;
    perspective: 400px;
    margin: 20px auto;
  
    @media (max-width: 600px) {
      transform: scale(1.8) !important;
    }
  }
  
  .flip-clock *,
  .flip-clock *:before,
  .flip-clock *:after {
    box-sizing: border-box;
  }
  
  .flip-clock__piece {
    display: inline-block;
    margin: 0 5px;
  }
  
  .flip-clock__slot {
    font-size: 1vw;
    color: var(--secondary-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif !important;
    letter-spacing: 0.1em;
  
    @media (max-width: 600px) {
      font-size: 1.6vw;
    }
  
  }
  
  .card2 {
    display: block;
    position: relative;
    padding-bottom: 0.72em;
    font-size: 6vw;
    line-height: 0.95;
  }
  
  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    display: block;
    height: 0.72em;
    color: #ccc;
    background: #222;
    padding: 0.25em 0.25em;
    border-radius: 0.15em 0.15em 0 0;
    backface-visiblity: hidden;
    transform-style: preserve-3d;
    width: 1.8em;
    transform: translateZ(0);
  }
  
  .card__bottom {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    border-top: solid 1px #000;
    background: #393939;
    border-radius: 0 0 0.15em 0.15em;
    pointer-events: none;
    overflow: hidden;
  }
  
  .card__bottom::after {
    display: block;
    margin-top: -0.72em;
  }
  
  .card__back::before,
  .card__bottom::after {
    content: attr(data-value);
  }
  
  .card__back {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0%;
    pointer-events: none;
  }
  
  .card__back::before {
    position: relative;
    z-index: -1;
    overflow: hidden;
  }
  
  .flip .card__back::before {
    animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
    animation-fill-mode: both;
    transform-origin: center bottom;
  }
  
  .flip .card__back .card__bottom {
    transform-origin: center top;
    animation-fill-mode: both;
    animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
  }
  
  @keyframes flipTop {
    0% {
      transform: rotateX(0deg);
      z-index: 2;
    }
  
    0%,
    99% {
      opacity: 0.99;
    }
  
    100% {
      transform: rotateX(-90deg);
      opacity: 0;
    }
  }
  
  @keyframes flipBottom {
  
    0%,
    50% {
      z-index: -1;
      transform: rotateX(90deg);
      opacity: 0;
    }
  
    51% {
      opacity: 0.99;
    }
  
    100% {
      opacity: 0.99;
      transform: rotateX(0deg);
      z-index: 5;
    }
  }
  