.block-presentation__wrapper {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.block-presentation__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.block-presentation__image {
    flex-shrink: 0;
}

.block-presentation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.block-presentation__title {
    margin: 0;
    
    max-width: 930px;

    /* Font */

    font-family: Barlow;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
}

@media screen and (min-width: 999px) {
    .block-presentation__wrapper {
        gap: 96px;
    }
    .block-presentation__content {
        flex-direction: row;
        gap: 32px;
    }
    .block-presentation__title {
        font-size: 48px;
        padding-left: 130px;
    }
}