Tell me what the correct nesting media queries. All media are written as min-width, but you need to add max-width for small screens, when adding at the very beginning and end, the media request for max-width: 320px does not work
@media (max-width: 320px) { .info-block4 { display: flex; flex-direction: column; margin-top: 50px; margin-bottom: 45px; z-index: 2; left: 10%; } .first::before { bottom: 81px; } .centr::before { bottom: 81px; } .last::before { bottom: 81px; } } @media (min-width: 576px) { .info-block4 { display: flex; flex-direction: column; margin-top: 50px; margin-bottom: 45px; z-index: 2; left: 10%; } } @media (min-width: 768px){} and so on min-width: 900, 1200, 1900