.media{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.media .ban{
    width: 90%;
    height: 50vh;

    margin-top: 130px;
    border-radius: 20px;

    background: url(m1.png) center center;

    background-size: cover;

    animation: banani 1s 1 alternate ease-in-out forwards;
}


.media .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;
}

span{
    color: var(--ThemeColor-);
}
@keyframes banani {
    to{
        background-position: center -3vh;
    }
}
@keyframes bantextani {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


.media .CCtext{
    color: white;
    margin-top: 200px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bolder;
}

.media .CCsection{
    display: flex;
      flex-wrap: wrap;
      gap: 50px;
      row-gap: 100px;
      justify-content: center;
      width: 70vw;
}
.media .CCsection .v{
    position: relative;
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 350px;
  aspect-ratio: 16 / 9;
  background-color: #000;
    border-radius: 20px;
}

/* .media .CCsection .v iframe{
    width: 100%;
    height: 100%;
      border-radius: 20px;
} */
.media .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;
}
.media .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;
}