.programm-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2%;
    padding: 10px 0;
}

.programm-cats > a {
    border: 1px solid rgba(114, 0, 95, 0.25);
    text-align: center;
    border-radius: 15px;
    padding: 50px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-decoration: none;
    color: #72005F;
}

.programm-cats .name {
    margin-top: 20px;
}

@media only screen and (max-width: 750px) {
    .programm-cats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 750px) and (max-width: 1100px) {
    .programm-cats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1099px) {

}

@media only screen and (min-width: 1100px) {

}
