.big-banners {
    padding-left: 15vw;
    padding-right: 15vw;
    padding-top: 60px;
    padding-bottom: 60px;
    display: grid;
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.big-banners-title {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.big-banner-img {
    border-radius: 15px;
}

.big-banners-art {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.bb-details {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.bb-article-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 10px;
}

.big-banner-article {
    padding: 15px;
    background: #1A1A1A;
    border-radius: 15px;
}

.bb-article-category {
    color: var(--main-color);
    font-weight: 600;
}


@media only screen and (max-width: 1650px) {
    .big-banners {
        padding-left: 5vw;
        padding-right: 5vw;
    }


}


@media only screen and (max-width: 1250px) {



}


@media only screen and (max-width: 1024px) {
    .big-banners-title {
        font-size: 32px;
    }
    
    .big-banners {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    
    
}