.services-set {
    margin-top: 50px;
    justify-content: space-between;
    margin-left: -2vw;
}

.services-category {
    width: 25%;
    box-sizing: border-box;
    padding-left: 1.5vw;
}

.scat-head {
    position: relative;
    overflow: hidden;
    height: 350px;
    margin-bottom: 30px;
    border-bottom: 5px solid var(--red-color);
}

.scat-name {
    font-size: 30px;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    visibility: hidden;
    opacity: 0;
}

.scat-name::after {
    content: '';
    width: 25px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 15px;
    background: url(../img/bott_arrow.svg) 0 0 no-repeat;
    transition: all .3s ease;
}

.active .scat-name::after {
    transform: rotateX(180deg);
}

.scat-head picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scat-head picture img {
    display: block;
    line-height: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scat-content a {
    color: var(--grey-violet-color);
    transition: all .2s ease;
}

.scat-content a:hover {
    color: var(--white-color);
    font-weight: 600;
}

@media screen and (max-width: 980px) {
    .services-set {
        flex-wrap: wrap;
    }
    .services-category {
        width: 50%;
        margin-bottom: 30px;
    }
    .scat-head {
        height: 200px;
    }
}

@media screen and (max-width: 600px) {
    .services-set {
        margin-left: 0;
    }
    .services-category {
        width: 100%;
        margin: 0 auto 30px;
        padding: 0;
    }
    .services-category:last-child {
        margin-bottom: 0;
    }
    .scat-head {
        height: 170px;
        margin-bottom: 0;
    }
    .scat-name {
        visibility: visible;
        opacity: 1;
    }
    .scat-content {
        display: none;
        margin: 30px 0 0;
    }
}