ul.main-sections {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 0 -10px 20px;
    margin-bottom: 50px;
}
ul.main-sections li {
    width: 25%;
    padding: 0 10px;
}
ul.main-sections li a {
    min-height: 200px;
    display: flex;
    background-size: 225px;
    /* background-size: contain; */
    /* justify-content: center;
    align-items: flex-end; */
    /* background-size: 220px 200px; */
    /* background-size: 100%; */
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    /* background-color: #f1f4fd; */
    background-color: #eef2fa;
    border-radius: 15px;
    color: #215e8e;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.01);
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 11px 0;
    text-align: center;
    font-weight: 500;
    padding-left: 11px;
}
@media screen and (max-width: 768px) {
    ul.main-sections li {
        width: 50%;
    }
    ul.main-sections li a {
        background-size: 200px;
        background-position-x: center;
    }
}
@media screen and (max-width: 596px) {
    ul.main-sections li a {
        min-height: 200px;
    }
}