.mediaSection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.mediaSection .ban {
  width: 90%;
  height: 50vh;

  margin-top: 130px;
  border-radius: 20px;

  background: url(/img/Banners/mediaBanner.webp) center top;

  background-size: cover;
}

.mediaSection .Title {
  margin-top: 5vh;
  margin-bottom: -50px;
  color: rgb(255, 255, 255);
  font-size: 10vh;
  font-weight: bolder;
  text-align: center;
  transform: translateY(50px);
  opacity: 0;
}

.mediaSection .CCtext {
  color: white;
  margin-top: 200px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bolder;
}

.mediaSection .CCsection {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  row-gap: 100px;
  justify-content: center;
  width: 70vw;
}
.mediaSection .CCsection .v {
  position: relative;
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 350px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 20px;
}

.mediaSection .CCsection .v .title {
  color: white;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  width: 100%;
  text-align: center;
  text-transform: uppercase;

  font-size: 14px;
  font-weight: 600;
}
.mediaSection .CCsection .v .title::before {
  content: "";
  width: 5px;
  height: 11px;
  border-radius: 8px;
  background-color: var(--ThemeColor-);
  display: inline-block;
  margin-right: 5px;
  margin-top: 1px;

  transform: translateY(1px);
}

iframe {
  height: 100%;
  width: 100%;
  border-radius: 1.7vh;
}
