.section-items-wrapper {

}

.section-items-wrapper .category-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48.41px;
    text-align: left;
    padding-bottom: 40px;
}

.section-items-wrapper .section-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: -20px -20px 20px;
}

.section-items-wrapper .section-item-wrapper {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    border: 1px solid #87A5C099;
    border-radius: 5px;
    margin: 20px;
}

.section-items-wrapper .section-item-link {
    margin-bottom: 24px;
}


.section-items-wrapper .section-item-img {
    width: 200px;
    height: 200px;
    /*display: inline-block;*/
    padding: 0;
    border-radius: 50%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /*background-color: #87A5C099;*/
    margin-bottom: 24px;
    justify-self: center;
}

.section-items-wrapper .section-item-img.no-photo {
    background-color: #87A5C099;
}

.section-items-wrapper .section-item-title span {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    color: #000000;
    display: block;
    transition: 0.4s;
}

.section-items-wrapper .section-item-link:hover .section-item-title span {
    color: #FD0805;
}

.section-items-wrapper .section-item-title {
    margin-bottom: 18px;
}

.section-items-wrapper .section-item-button{
    width: 100%;
    text-align: center;
    margin: auto 0 0;
}

@media all and (max-width: 1280px) {
    .section-items-wrapper .section-items {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-items-wrapper .section-item-img{
        width: 150px;
        height: 150px;
    }
}

@media all and (max-width: 768px) {
    .section-items-wrapper .section-items {
        grid-template-columns: repeat(2, 1fr);
        margin: -10px -10px 30px;
    }

    .section-items-wrapper .section-item-wrapper {
        margin: 10px;
    }

}

@media all and (max-width: 480px) {
    .section-items-wrapper .section-items {
        grid-template-columns: 1fr;
        margin: 0 0 20px;
    }

    .section-items-wrapper .section-item-wrapper {
        margin: 0 0 20px;
    }

}
