.service-list {
    max-width: 1155px;
    margin: 0 auto 75px;
    position: relative;
    z-index: 40;
    filter: drop-shadow(0px 0px 176px rgba(0, 0, 0, 0.1));
    /* safari fix */
    will-change: filter;
}

.service-list,
.service-list__wrapper,
.categories-list,
.categories-list__items {
    background-color: transparent;
}

.categories-list__items {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5,1fr);
}

.categories-list__item {
    background-color: #FFF;
    border-radius: 20px;
}

.categories-list__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 25px;
    text-decoration: none;
}

.categories-list__link img {
    margin-bottom: 31px;
    width: 50px;
    height: 50px;
}

.categories-list__item-name {
    text-align: center;
    text-transform: uppercase;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.categories-list__link:hover .categories-list__item-name {
    color: #9baf39;
}

.categories-list,
.service-banner {
    margin-bottom: 40px;
}

.service-banner__wrapper {
    position: relative;
    background: #9cb330;
    border-radius: 20px;
    display: block;
    text-decoration: none;
    padding: 35px 60px 35px 20px;
}

.service-banner__wrapper > picture {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.service-banner__wrapper > picture img {
    border-radius: 20px;
    height: 100%;
}

.service-banner__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-banner__content-text {
    margin-left: 75px;
}

.service-banner__content-icon {
    display: flex;
    align-items: center;
}

.service-banner__content-icon .service-banner__content-title {
    margin: 15px 0 15px 25px;
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    color: #FFF;
}

.service-banner__content .service-banner__content-text ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.service-banner__content-text ul li {
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
}

.service-banner__content-text ul li::marker {
    font-size: 18px;
    color: #F9B519;
}

.service-banner__content .service-banner__content-text p {
    font-weight: 900;
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
}

.offers-list__items {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3,1fr);
    gap: 11px;
}

.offers-list__item {
    background: #FFF;
    border-radius: 20px;
    padding: 27px 23px 36px 21px;
}

.offers-list__item-icon img{
    width: 50px;
    height: 50px;
}

.offers-list__item-icon {
    margin-bottom: 34px;
}

.offers-list__item-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
    margin-bottom: 25px;
}

.offers-list__item-title:hover {
    color: #9baf39;
}

.offers-list__item-list ul {
    padding-left: 0;
    list-style: none;
}

.offers-list__item-list ul li {
    display: flex;
    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    color: #000;
}

.offers-list__item-list ul li a {
    color: #000;
}

.offers-list__item-list ul li a:hover {
    color: #9baf39;
}

.offers-list__item-list ul li::before {
    display: block;
    content: ' ';
    background-image: url("/modules/ServiceList/public/front/img/marker.png");
    margin-right: 14px;
    width: 10px;
    height: 10px;
    margin-top: 7px;
}

@media (max-width: 1199px) {
    .service-list {
        max-width: 940px;
    }
}

@media (max-width: 959px) {
    .service-list {
        max-width: 620px;
        margin: 0 auto 60px;
    }

    .categories-list__items {
        grid-template-columns: 1fr;
    }
    
    .categories-list__link {
        flex-direction: row;
        padding: 17px 44px 17px 14px;
        align-items: normal;
        justify-content: flex-start;
    }

    .categories-list__link img {
        margin-bottom: 0;
        margin-right: 15px;
    }
    
    .categories-list__item-name {
        font-size: 17px;
        text-align: left;
        display: flex;
        align-items: center;
    }
    
    .service-banner__content-text {
        margin-top: 18px;
        margin-left: 0;
    }

    .service-banner__wrapper {
        padding: 17px 0 0 0;
    }

    .service-banner__wrapper > picture {
        position: relative;
        display: block;
    }

    .service-banner__wrapper > picture img {
        width: 100%;
        display: block;
    }
    
    .service-banner__content {
        margin-left: 17px;
        margin-right: 26px;
    }
    
    .offers-list__items {
        grid-template-columns: 1fr;
    }

    .offers-list__item {
        padding: 27px 26px 36px 21px;
    }
}

@media (max-width:639px) {
    .service-list {
        max-width: 460px;
    }
}

@media (max-width: 459px) {
    .service-list {
        max-width: 370px;
    }
}