.videos-home {
    margin: 80px auto;
    padding: 50px 0;
    background-color: #f7f5f2;
}

.videos-home .wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.videos-home-video {
    max-width: 310px;
}

.videos-home-text-pre {
    font-family: var(--font-open-sans);
    font-size: 14px;
    font-weight: 400;
    color: #032f1b;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.videos-home-text-title {
    font-family: var(--font-ubuntu);
    font-size: 36px;
    font-weight: 500;
    color: #288158;
    line-height: 1.2em;
    text-align: left;
}

.videos-home-text-content {
    margin-top: 34px;
    font-family: var(--font-open-sans);
    font-size: 18px;
    line-height: 1.6em;
    font-weight: 400;
    color: #758f83;
}

@media screen and (max-width: 1100px) {
    .videos-home .wrap {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .videos-home-video {
        max-width: none;
    }

    .videos-home .wrap {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .videos-home-text {
        margin-top: 60px;
    }

    .videos-home-text-title br {
        display: none;
    }

    .videos-home-text-pre,
    .videos-home-text-title {
        text-align: center;
    }
}