.banners_nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    max-width: 560px;
    margin: 0 auto;
}

.banners_nav a{
    color: black;
}

.banners_nav h2, .banners_nav .h2{
    font-size: calc(2em + 2px);
    line-height: 125%;
}

.ban_sprites {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
  }

.ban_sprites_item{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    transition: .3s;
    background-color: var(--darkerblack_bg_black);
    border-radius: 8px;
}

.ban_sprites_item:hover{
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08);
}

.ban_sprites_icon{
    width: 48px;
    height: 48px;
}

@media screen and (max-width: 991px){
    .banners_nav h2, .banners_nav .h2{
        font-size: 20px;
    }
}
@media screen and (max-width: 767px) {
    .ban_sprites_item{
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}
@media screen and (max-width: 600px){
    .banners_nav h2, .banners_nav .h2{
        font-size: 20px;
        line-height: 24px;
    }
    .banners_nav{
        gap: 48px;
    }
    .ban_sprites{
        grid-template-columns: 1fr;
        width: 100%;
        gap: 16px;
    }
    .ban_sprites_item{
        padding: 16px;
    }
}