.main-content {
  width: 100%;
  /* height: 100%; */
  height: calc(100vh - 100px);
  background-image: url("../img/bg-popup.png");
  background-position: center;
  background-size: cover;
  overflow: auto;
}
.content {
  padding: 40px 8%;
}
.content .content-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.content .content-head img {
  width: 100%;
  max-width: 300px;
}
.content .content-head-text {
  font-size: 36px;
}
.content .content-head-text h4:first-child {
  margin-bottom: 10px;
  font-family: var(--font-family-light);
}
.content .content-head-text h4:last-child {
  font-family: var(--font-family-bold);
}
.list-items {
  position: relative;
}
.list-items-mobile {
  display: none;
}

.item {
  aspect-ratio: 3 / 2;
  position: relative;
  cursor: pointer;
  /* box-shadow: 0px 4px 4px 0px #00000040; */
}
.item .media-title {
  position: absolute;
  width: 100%;
  bottom: 10px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.item .media-title img {
  width: 100px;
  height: auto;
}
.item .media-title h3 {
  text-align: center;
  text-transform: uppercase;
  color: #4e4e4e;
}
.item h3 {
  font-family: var(--font-family-bold);
  color: #fff;
  font-size: 20px;
  width: calc(100% - 50px);
  padding: 10px;
}
.item img {
  width: 60px;
  height: 60px;
}
.item button {
  font-size: 16px;
  margin-top: 10px;
  padding: 8px 20px;
  background-color: var(--color-pink);
  color: #fff;
  border-radius: 8px;
  border: none;
  outline: none;
}

.media-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000ad;
  z-index: 20;
  padding: 50px;
}
.media-viewer .video {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.media-viewer video {
  width: 100%;
  height: 100%;
}
.media-viewer #media-viewer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
}

.show {
  display: block;
}
@media only screen and (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .header-content .logo img {
    width: 90%;
    margin-bottom: 30px;
  }
  .header {
    height: auto;
    text-align: center;
  }
}

@media only screen and (max-width: 1080px) {
  .container {
    padding: 0 10px;
  }
  .list-items.list-items-wide {
    display: none !important;
  }
  .list-items.list-items-mobile {
    display: flex !important;
  }
  .list-items.list-items-mobile .item {
    margin-top: 32px;
  }

  .media-viewer .video {
    top: 50%;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 768px) {
  .content-head {
    flex-direction: column;
  }
  .content .content-head img {
    width: 50%;
    margin-top: 20px;
  }
  .content .content-head-text {
    font-size: 28px;
    text-align: center;
  }
  .item {
    aspect-ratio: unset;
    height: fit-content;
    position: static;
    cursor: pointer;
    margin-top: 40px;
  }
  .item .media-title {
    position: static !important;
  }
  .item .media-title img {
    width: 100px !important;
  }
}
