.service-categories {
    margin: 0 -25px 10px -25px;
    padding: 0 0 10px 0;
    list-style: none;
    display: flex;
    gap: 12px;
    overflow: auto;
}

@media (min-width: 768px) {
    .service-categories {
        margin: 0 0 32px 0;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .service-categories {
        justify-content: center;
    }
}

.service-categories__link {
    display: block;
    font-family: Noto Sans;
    font-size: 13px;
    font-weight: 600;
    line-height: 13.2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0086DF;
    padding: 8px 16px;
    border: 1px solid #0086DF;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-categories__link {
        font-size: 16px;
        line-height: 19.2px;
    }
}

.service-categories__link.active, .service-categories__link:hover {
    background-color: #01D3CA;
    border-color: #01D3CA;
    color: #fff;
}

.service-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-list.loading {
    position: relative;
}

.service-list.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 100;
    opacity: .8;
}

.service-list__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1750px) {
    .service-list__item {
        flex-direction: row;
    }

    .service-list__item:nth-child(even) {
        flex-direction: row-reverse;
    }
}


.service-list__item>img, .service-list__slider {
    width: 100%;
    height: auto;
    max-width: 1050px;
}

.service-list__content {
    background-color: #FAFAFA;
    padding: 28px;
}

@media (min-width: 768px) {
    .service-list__content {
        padding: 92px;
    }
}

.service-list__title {
    color: #00416C;
    font-size: 28px;
    font-weight: 500;
    line-height: 33px;
    text-align: left;
    margin: 0 0 20px 0;
}

@media (min-width: 768px) {
    .service-list__title {
        font-size: 40px;
        line-height: 48px;
    }
}

.service-list__description {
    color: #00416C;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.service-list__categories {
    margin: 0 0 34px 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 8px;
    flex-direction: column;
    align-items: baseline;
}

@media (min-width: 768px) {
    .service-list__categories {
        margin: 0 0 64px 0;
        flex-direction: row;
    }
}

.service-list__category {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.2px;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
    background-color: #01D3CA;
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-weight: 400;
}

.service-list__slider .slick-prev,
.service-list__slider .slick-next {
    z-index: 10;
    width: 48px;
    height: 48px;
}

.service-list__slider .slick-prev {
    left: 25px;
}

.service-list__slider .slick-prev:before, .service-list__slider .slick-next:before {
    background-image: url(../images/arrow.svg);
    content: "";
    width: 48px;
    height: 48px;
    display: block;
    background-size: contain;
}

.service-list__slider .slick-next {
    right: 25px;
}

.service-list__slider .slick-prev:before {
    transform: rotate(180deg);
}

.service-list__slider .slick-slide img {
    width: 100%;
    height: auto;
}

.service-list__no-content {
    font-size: 16px;
    text-align: center;
    padding: 50px 0;
    opacity: .6;
}