.videos-wrapper {
    padding-top: 160px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 40%);
    margin-bottom: 100px;
}

.videos-title {
    font-size: 64px;
    line-height: 100%;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.videos-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.videos-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.videos-controls__btn {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 8px;
    color: #00000099;
    font-size: 16px;
    font-weight: 400;
    font-family: "eUkraine", sans-serif;
    cursor: pointer;
    line-height: 100%;
    transition: all .3s ease-in-out;
}

.videos-controls__btn.active, .videos-controls__btn:hover {
    box-shadow: 0px 0px 24px 4px #FFFFFFCC inset;
    background: #CF141F;
    color: white;
}

.videos-search {
    width: 400px;
}

.videos-search::before {
    content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.66732 14C11.1651 14 14.0007 11.1644 14.0007 7.66665C14.0007 4.16884 11.1651 1.33331 7.66732 1.33331C4.16951 1.33331 1.33398 4.16884 1.33398 7.66665C1.33398 11.1644 4.16951 14 7.66732 14Z' stroke='%238B9099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.4942 15.9069C14.8847 16.2974 15.5179 16.2973 15.9084 15.9067C16.2988 15.5162 16.2988 14.883 15.9082 14.4925L14.4942 15.9069ZM13.041 11.6261L12.3338 10.9191L10.9198 12.3335L11.627 13.0405L13.041 11.6261ZM15.2012 15.1997L15.9082 14.4925L13.041 11.6261L12.334 12.3333L11.627 13.0405L14.4942 15.9069L15.2012 15.1997Z' fill='%238B9099'/%3E%3C/svg%3E%0A");
    height: 17px;
    width: 17px;
}


.videos {
    margin-top: 70px;
    display: none;
    gap: 15px;
    flex-wrap: wrap;
}

.videos.active {
    display: flex;
}

.videos-item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 15px);
    height: auto;
    gap: 24px;
}

.videos-item__source {
    background: white;
    border-radius: 16px;
    height: 226px;
    overflow: hidden;
}

.videos-item__title {
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
}


@media (max-width: 768px) {
    .videos-wrapper {
        margin-bottom: 120px;
        padding-top: 120px;
    }
    
    .videos-title {
        font-size: 40px;
        text-align: center;
    }
    
    .videos-controls {
        display: flex;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow: scroll;
        width: 100%;
        flex-direction: row;
        white-space: nowrap;
    }
    .videos-head {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .videos-search {
        width: 100%;
    }
    .videos {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    .videos-item {
        width: 100%;
    }
}