@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");
.videos{
    position: relative;
}

.none-contetnt {
    font-family: Raleway, sans-serif;
    color: #fff;
    font-size: 24px;
    width: 100%;
    max-height: 100%;
    height: 100%;
    position: relative;
}



.marquee {
    position: relative;
    width: 100%;
    height: 2em;
    font-size: 5em;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.marquee_text {
    position: absolute;
    min-width: 100%;
    white-space: nowrap;
    -webkit-animation: marquee 8s infinite linear;
    animation: marquee 8s infinite linear;
}
@-webkit-keyframes marquee {
    from {
        translate: 100%;
    }
    to {
        translate: -100%;
    }
}
@keyframes marquee {
    from {
        translate: 100%;
    }
    to {
        translate: -100%;
    }
}
.videos{
    grid-template-columns:none;
}
.marquee_blur {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-color: black;
    background-image: linear-gradient(to right, white, 1rem, transparent 50%), linear-gradient(to left, white, 1rem, #1f1d2b 50%);
    filter: contrast(15);
}
.marquee_blur p {
    filter: blur(0.07em);
}
.marquee_clear {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.none-contetnt .text {
    margin-block: 2em;

}