/*Popup de vista previa BANNER Y CARTELERIA*/
.mediakit-banner__popup {
  position: fixed;
  width: 600px;
  height: auto;
  top: 35%;
  left: 35%;
  transform: scale(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-color: white;
  border-radius: 20px;
  z-index: 9999;
  padding: 20px;
  transition: all 400ms ease-in-out;
}

.mediakit-banner__popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 40px;
  height: auto;
  opacity: 0.5;
}

.mediakit-banner__popup h3 {
  color: #24135f;
  font-size: 32px;
  font-weight: 700;
}

.mediakit-banner__popup-content {
  width: 80%;
  padding: 10px;
  background-color: #f5f5f7;
  border-radius: 10px;
}

.mediakit-banner__item-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.item-container__image-banner {
  width: 100px;
  height: auto;
  overflow: hidden;
}

.item-container__image-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mediakit-banner__item-container span {
  color: #24135f;
  font-size: 18px;
  font-weight: 400;
}

.descargar__svg {
  width: 20px;
  height: 20px;
}

.descargar__svg path {
  fill: #24135f;
}

@media (max-width: 1400px) {
  .mediakit-banner__popup {
    left: 350px;
  }
}

@media (max-width: 1000px) {
  .mediakit-banner__popup {
    width: 400px;
    left: 25%;
    gap: 20px;
  }

  .mediakit-banner__popup h3 {
    margin: 0px;
    font-size: 28px;
  }

  .mediakit-banner__popup-content {
    width: 100%;
  }

  .mediakit-banner__item-container span {
    font-size: 14px;
  }
}

@media (max-width: 770px) {
  .mediakit-banner__popup {
    width: 270px;
  }

  .mediakit-banner__popup h3 {
    font-size: 20px;
  }

  .mediakit-banner__item-container {
    gap: 25px;
  }

  .item-container__image-banner {
    width: 155px;
  }
}

@media (max-width: 450px) {
  .mediakit-banner__popup {
    left: 60px;
  }

  .mediakit-banner__popup-close {
    right: 0px;
  }
}

@media (max-width: 395px) {
  .mediakit-banner__popup {
    left: 35px;
  }
}

/*Popup de vista previa LOGO*/
.fixed-center {
  position: fixed;
  width: 500px;
  top: 100px;
  margin: 5% auto; /* Only centers horizontally not vertically! */
  left: 0;
  right: 0;
}

.mediakit-logo__popup {
  position: fixed;
  width: 700px;
  height: auto;
  transform: scale(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-color: white;
  border-radius: 20px;
  z-index: 9999;
  padding: 20px;
  transition: all 300ms ease-in-out;
}

.mediakit-logo__popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 30px;
  height: auto;
}

.mediakit-logo__popup h3 {
  color: #24135f;
  font-size: 32px;
  font-weight: 700;
}

.mediakit-logo__popup-content-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.mediakit-logo__popup-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mediakit-logo__popup-content > span {
  font-weight: 700;
  color: #000b1c;
}

.mediakit-logo__item-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background-color: #0072ce;
}

.item-container__image {
  width: 100px;
  height: auto;
  overflow: hidden;
}

.item-container__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mediakit-logo__item-container span {
  color: white;
  font-size: 14px;
  font-weight: 400;
}

.descargar {
  width: 40px;
  height: 40px;
}

.descargar__logos {
  text-decoration: none;
  padding: 20px 30px;
  background-color: #24135f;
  color: white;
  margin-top: 20px;
  border-radius: 16px;
  transition: all 300ms ease-in-out;
}

.descargar__svg-logo {
  width: 20px;
  height: 20px;
}

.descargar__svg-logo path {
  fill: white;
}

.descargar__logos:hover {
  background-color: #00af66;
}

@media (max-width: 1025px) {
  .fixed-center {
    top: 55px;
  }

  .mediakit-logo__popup {
    width: 400px;
  }

  .mediakit-logo__popup-content-container {
    flex-direction: column;
  }

  .mediakit-logo__popup-content {
    gap: 5px;
  }

  .mediakit-logo__popup h3 {
    font-size: 24px;
    margin: 0px;
  }

  .descargar__logos {
    padding: 10px 15px;
  }
}

@media (max-width: 500px) {
  .fixed-center {
    top: 115px;
  }

  .mediakit-logo__popup {
    width: 300px;
  }

  .mediakit-logo__item-container span {
    font-size: 12px;
  }

  .mediakit-logo__popup h3 {
    font-size: 20px;
  }

  .mediakit-logo__popup-close {
    top: 19px;
    right: 10px;
  }

  .mediakit-logo__popup-content > span {
    font-size: 14px;
  }
}

/* Kit Info */

.kit-info-container {
  background-color: white;
  padding: 120px 40px 0 40px;
}

.kit-info {
  max-width: 1600px;
  margin: auto;
  display: flex;
  gap: 50px;
}

.kit-info > div {
  width: 50%;
}

.kit-info-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.kit-info-text h2 {
  color: #24135f;
  font-size: 64px;
  font-weight: 700;
  line-height: 76px;
  letter-spacing: -1.28px;
  margin: 0;
}

.kit-info-text p {
  color: #24135f;
  font-size: 20px;
  font-style: normal;
  font-weight: 350;
  line-height: 26px;
  margin: 0;
}

.kit-info-image {
  aspect-ratio: 7 / 4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kit-info-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1400px) {
  .kit-info-container {
    padding: 80px 40px 0 40px;
  }

  .kit-info-text {
    gap: 20px;
  }

  .kit-info-text h2 {
    font-size: 44px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .kit-info-text p {
    font-size: 20px;
    line-height: 1;
  }

  .kit-info-image {
    aspect-ratio: 17 / 7;
  }
}

@media (max-width: 900px) {
  .kit-info-container {
    background-color: white;
    padding: 80px 20px 0 20px;
  }

  .kit-info {
    flex-direction: column;
  }

  .kit-info > div {
    width: 100%;
  }
}

/* Kit Links */

.kit-links-container {
  background-color: white;
  padding: 120px 40px 0 40px;
}

.kit-links {
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.kit-link {
  width: calc(50% - 15px);
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100px;
  border-radius: 8px;
  background: #0072ce;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.kit-link p {
  color: white;
  font-size: 18px;
  font-weight: 200;
}

.kit-link:hover {
  background-color: #00af66;
}

.kit-link > div:nth-of-type(1) {
  display: flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
}

.kit-link > div:nth-of-type(1) label {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}

.kit-link > div:nth-of-type(1) img {
  height: 22px;
  width: 22px;
}

.kit-link > div:nth-of-type(2) {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

@media (max-width: 1400px) {
  .kit-link-container {
    padding: 80px 40px 0 40px;
  }

  .kit-link > div:nth-of-type(1) img {
    height: 18px;
    width: 18px;
  }

  .kit-link > div:nth-of-type(1) label {
    font-size: 20px;
    line-height: 1;
  }

  .kit-link > div:nth-of-type(2) {
    font-size: 17px;
    line-height: 1;
  }
}

@media (max-width: 900px) {
  .kit-links-container {
    background-color: white;
    padding: 80px 20px 0 20px;
  }

  .kit-links {
    flex-direction: column;
  }

  .kit-link {
    width: 100%;
    gap: 10px;
  }
  .kit-link > div:nth-of-type(1) {
    gap: 7px;
  }

  .kit-link > div:nth-of-type(1) img {
    height: 16px;
    width: 16px;
  }

  .kit-link > div:nth-of-type(1) label {
    font-size: 17px;
    line-height: 1;
  }

  .kit-link > div:nth-of-type(2) {
    font-size: 15px;
    line-height: 1;
  }
}

/* Kit Galeria */

.kit-galeria-container {
  background-color: white;
  padding: 120px 40px;
}

.kit-galeria {
  max-width: 1600px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.kit-galeria-header {
  color: #000b1c;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 40px;
}

.kit-galeria-imagenes,
.media-kit__container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.media-kit__container {
  height: 0px;
  opacity: 0;
  transition: all 800ms ease-in-out;
}

.opened {
  height: 1350px;
  opacity: 1;
  display: flex;
}

.kit-galeria-imagenes > a,
.media-kit__container > a {
  width: 16%;
  aspect-ratio: 34 / 25;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.kit-galeria-imagenes > a:hover > img,
.media-kit__container > a:hover > img {
  transform: scale(1.05);
}

.kit-galeria-imagenes > a > img,
.media-kit__container > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.view__more2 {
  display: flex;
  border: 1px solid #24135f;
  background-color: transparent;
  padding: 10px 15px;
  cursor: pointer;
  color: #24135f;
  margin: 10px auto;
  justify-self: center;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
}

.view__more2:hover {
  background-color: #24135f;
  color: white;
}

@media (max-width: 1440px) {
  .kit-galeria-imagenes > a,
  .media-kit__container > a {
    width: 16%;
  }
}

@media (max-width: 900px) {
  .kit-galeria-container {
    padding: 80px 20px;
  }

  .kit-galeria-header {
    margin-bottom: 20px;
  }

  .kit-galeria-imagenes,
  .media-kit__container {
    gap: 10px;
  }

  .kit-galeria-imagenes > a,
  .media-kit__container > a {
    width: calc(50% - 5px);
  }

  .opened {
    height: 100%;
  }
}
