/* Colores en clases */
:root {
  --green-color: #94dc00;
  --trans-color: transparent;
  --black-color: #000;
  --white-color: #fff;
}

.bold-custom {
  font-family: GothamRndBold;
  font-weight: 800;
}

.green-color {
  color: var(--green-color) !important;
}

.bg-green {
  background-color: var(--green-color) !important;
}

.trans {
  background-color: var(--trans-color) !important;
}

.black-ct {
  color: var(--black-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.white-ct {
  color: var(--white-color) !important;
}

.white-cbg {
  background-color: var(--white-color) !important;
}

/* Marquee principal */
.marquee {
  width: 100%;
  overflow: hidden;
  background: #111;
  color: var(--white-color);
  font-size: 1.1rem;
  margin-top: 71px !important;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
  padding: 15px 0;
  font-weight: bold;
}

.marquee-track span {
  white-space: nowrap;
  color: var(--green-color);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Date */
.date {
  flex-direction: column;
}

.numbers .numbers-circule {
  background: var(--black-color);
  border-radius: 50%;
  color: var(--white-color);
  font-weight: 800;
  padding: 0px 8px;
  position: relative;
}

.numbers .numb {
  font-size: 32px;
  word-spacing: -2px;
}

.mes-year {
  flex-direction: column;
  border-right: 2px solid var(--black-color);
}

.mes {
  font-size: 33px;
  font-weight: 800;
  margin-bottom: -10px;
}

.year {
  font-size: 17px;
  letter-spacing: 6px;
}

.text-date {
  font-size: 9px;
}

.text-exibith {
  font-size: 24px;
  font-weight: 800;
}

.text-exibith span.text-two {
  font-size: 30px;
}


/* section one */

.section-one .taps {
  flex-direction: column;
}

.title-taps {
  font-size: 26px;
  font-weight: 800;
  flex-direction: row;

}

.title-taps .sub-title {
  font-size: 16px;
}

.btn-content {
  display: inline-block;
  margin: 10px;
}

.btn-links-pop .btn-tap-section[data-key="0"],
.btn-links-pop .btn-blackouts[data-key="0"] {
  background-color: #be70f1 !important;
  color: var(--white-color) !important;
}

.btn-links-pop .btn-tap-section[data-key="0"]:hover,
.btn-links-pop .btn-blackouts[data-key="0"]:hover {
  color: var(--white-color) !important;
}

.btn-tap-section {
  background-color: var(--black-color) !important;
  color: var(--white-color) !important;
  width: 150px;
  height: 150px;
  border-radius: 50% !important;
  text-align: center;
  font-size: 14px !important;
  padding: 10px;
  overflow: hidden;
}

.btn-tap-section:active,
.btn-tap-section:hover {
  color: var(--green-color) !important;
}



.short-text {
  font-size: 12px;
  color: #a0a0a0;
}

.content-taps {
  flex-direction: column;
  padding-left: 11em;
}

div.content-taps {
  margin: 0;
}

span.sub-title a {
  color: var(--black-color) !important;
}

span.sub-title a:hover {
  color: var(--green-color) !important;
}

/* Ocultar y mostrar texto tabs*/
.btn-tap-section.active {
  background-color: var(--black-color);
  color: var(--green-color);
}

.btn-tap-section.is-active {
  color: var(--green-color) !important;
}

/* Animacion */
.title-desc,
.desc-btn {
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.title-desc.show,
.desc-btn.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Banner cruzado */

.marquee-outer {
  width: 120vw;
  margin-left: -10vw;
  transform-origin: center;
  will-change: transform;
}

.marquee-second {
  width: 100%;
  height: 80px;
  background: var(--black-color);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-second-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-group {
  display: flex;
  gap: 4rem;
}

.text-banner {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white-color);
}

.contentet {
  overflow: hidden;
  padding-bottom: 70px;
}


/* Texto del banner */
.marquee-second-track .text-banner {
  color: var(--white-color);
  font-weight: bold;
  padding-right: 80px;
  position: relative;
}

.marquee-second-track .text-banner::after {
  content: "•";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-color);
}

/* btn de img */
.btn-img {
  border: 4px solid var(--black-color);
}

.btn-img:hover {
  border-color: var(--green-color);
}

.btn-img,
.img-rounded,
.point-part-two {
  border-radius: 100%;
}

.section-bullets {
  margin-block: 6rem;
}

.bullet-wrapper {
  position: relative;
}

.bullet-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.bullet-item.active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}

.bullet-btn.is-active {
  border-color: var(--green-color);
  border-radius: 50%;
}

.point-part-two {
  width: 115px;
  height: 115px;
  border-radius: 50% !important;
  font-size: 13px !important;
  cursor: pointer;
}

.img-bullets-section-two {
  width: 50vw;
  height: auto;
}

/* Slider */
.mySwiperSliderInfo {
  width: 100%;
  overflow: visible;
}

.mySwiperSliderInfo .swiper-wrapper {
  display: flex;
}

.mySwiperSliderInfo .swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}


.mySwiperSliderInfo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 30px;
}

.glightbox {
  width: 90% !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--green-color) !important;
  z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px !important;
  color: #000;
  font-weight: bold;
  display: flex;
}

/*Blackout*/
.backout-desc {
  width: 78%;
}

.items-bullets .btn-blackouts {
  width: 115px;
  height: 115px;
  color: var(--black-color);
  border-radius: 50% !important;
  font-size: 12px !important;
  cursor: pointer;
}

.btn-links-pop:hover {
  color: var(--green-color) !important;
}

.img-blackout-logo {
  width: 250px;
  height: 450px;
}

/* Zoom */
.part-mas .btn-mas-letter,
.part-menos .btn-menos-letter {
  border-radius: 50%;
  font-size: 14px;
}

.btn-menos-letter {
  letter-spacing: -2px;

}

.mapa-wrapper {
  overflow: hidden;
  border: 20px solid var(--black-color);
}

.mapa-img {
  width: 50vw;
  height: auto;
  transition: transform 0.3s ease;
  transform-origin: top left;
}

.img-fence {
  width: 60%;
  height: auto;
}


/* Popup form */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  z-index: 99999;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--white-color);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-content {
  overflow-y: auto;
  padding: 15px 5px;
  background-color: var(--green-color);

}

body.popup-open {
  overflow: hidden;
}

.form-landing select.wpcf7-form-control {
  background-color: var(--trans-color);
}

select,
.wpcf7 input[type="text"],
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  width: -webkit-fill-available;
  border-radius: 10px;
  height: 45px;
  border: 1px solid #aaa;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.popup-content .text-messege {
  padding: 10px;
}

select {
  color: #aaa;
}

.popup-content .text-messege {
  border-radius: 10px;
  border: 1px solid #aaa;
}

.popup-content label {
  width: 80%;
}

.flag-none,
.iti__flag.iti__by,
.iti__arrow,
.iti__flag.iti__de,
.iti.iti--allow-dropdown {
  display: none !important;
}

.submit-btn {
  background: var(--black-color) !important;
  color: var(--green-color) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
}

.popup-close {
  border: none;
  background: var(--trans-color) !important;
  font-size: 2.1rem;
}

.content-btn-popup p {
  height: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--white-color);
}

.line-up {
  background: #000;
  height: 10px;
  display: flex;
  width: 40px;
}

/* mensaje de envio */
.popup-content,
.pop-enviar {
  transition: opacity 0.3s ease;
}

.pop-enviar {
  background: var(--white-color);
  max-width: 700px;
  width: 100%;
  max-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  display: none;
  opacity: 0;
}

.margin-content {
  border: 2px solid var(--black-color);
}

.img-enviar {
  width: 15%;
  margin-bottom: 3rem;

}

.title-enviar {
  font-size: 2em;
}

.sub-title-enviar {
  font-size: 1em;
  margin-bottom: 1.7rem;
}

.img-logo-enviar {
  width: 35%;

}

@media (max-width: 768px) {
  .marquee {
    margin-top: 55px !important;
  }

  .btn-tap-section {
    font-size: 12px !important;
    width: 100px;
    height: 100px;
  }

  div.content-taps {
    margin-top: 5rem;
    margin-bottom: 6rem;
  }

  .bullet-wrapper {
    min-height: 60vh;
  }

  .img-blackout-logo {
    width: 150px;
    height: auto;
  }

  .links-footer-blackout {
    align-items: center;
  }

  .swiper-slide img {
    height: 260px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    color: var(--white-color);
  }

  .glightbox {
    width: 100% !important;
  }

  .mapa-wrapper {
    border: 10px solid var(--black-color);
  }

  .img-bullets-section-two {
    width: 90vw;
  }

  .mapa-img {
    width: 80vw;
  }

  .img-enviar {
    width: 20%;
    margin-bottom: 2.5rem;
  }

  .title-enviar {
    font-size: 1.1em;
  }

  .sub-title-enviar {
    font-size: 0.8em;
    margin-bottom: 1.6rem;
  }

  .img-logo-enviar {
    width: 55%;

  }
}

/* Slider */
@media (min-width: 640px) {
  .mySwiperSliderInfo .swiper-slide {
    width: calc((100% - 20px) / 2);
  }
}