.entry-title {
    text-align: center;
    font-style: normal;
    font-weight: 800;
    font-size: 44px;
    line-height: 50px;
    color: #2B3B63;
    margin-bottom: 50px;
}
.ssb-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: -30px -12px;
}
.ssb-grid .wrap-item {
    width: 25%;
}
.ssb-grid .item {
    padding: 30px 12px;
    text-align: center;
}
.ssb-grid .item .image {
    height: 0;
    width: 100%;
    padding-bottom: 86%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 16px;
}
.ssb-grid .item .image img {
    height: 0;
    width: 0;
    visibility: hidden;
}
.ssb-grid .item .info .title {
    font-weight: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 16px;
}
.ssb-grid .item .info .description {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}
.ssb-grid .item .info .link {
    display: flex;
    justify-content: center;
}
.ssb-grid .item .info .link a {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    padding: 12px 24px;
    background: var(--secondary);
    border-radius: 4px;
}
.ssb-grid .item .info .link a:hover {
    background: var(--primary);
    text-decoration: none;
}
@media only screen and (max-width: 1024px) {
    .ssb-grid .wrap-item {
        width: 50%;
    }
    .ssb-grid .item .info .title {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 600px) {
    .ssb-grid .wrap-item {
        width: 100%;
    }
}