.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}
.tour-item {
    flex: 0 0 92px;
    text-align: center;
}
.tour-item .title {
    font-size: 17px;
    line-height: 1.8;
    margin-top: 9px;
    display: inline-block;
    font-family: var(--bold_font);
    transition: 0.4s ease;
}
.tour-item:hover .title {
    color: var(--color1);
}
@media screen and (min-width: 576px){

}
@media screen and (min-width: 768px){
    .tours-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (min-width: 992px){
    .tours-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
    }
}
@media screen and (min-width: 1200px){
    .tours-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}
@media screen and (min-width: 1400px){
    .tours-grid {
        padding: 0 60px;
    }
}