.section-best-strategy {
    background-color: #393333;
    padding: 4rem 0rem;
}

.section-best-strategy>div {
    display: grid;
    grid-template-areas:
        'title video'
        'description video';
    grid-column-gap: 5rem;
    grid-row-gap: 2rem;
}

.section-best-strategy__title {
    grid-area: title;
    display: flex;
    align-items: flex-end;
    color: #ffc24b;
    font-family: 'TTFirs';
    font-weight: 900;
    font-size: clamp(20px, 2.5vw, 40px);
    line-height: 1;
    text-transform: uppercase;
}

.section-best-strategy__desctiption {
    grid-area: description;
    color: #eee;
    font-family: 'Century Gothic';
    font-size: clamp(13px, 2.5vw, 18px);
}

.section-best-strategy__video {
    grid-area: video;
}

.section-best-strategy__video img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .section-best-strategy>div {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}