.services-section {
    padding: 190px 5%;
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 5%;
    }
}

.services-section__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 62px;
}

.services-section__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    position: relative;
}

.services-section__title {
    max-width: 800px;
    text-align: center;
}

.services-section__decorate-icon {
    position: absolute;
    top: -20%;
    left: 7%;
    z-index: -1;
}

.services-section__list {
    max-width: 815px;

    display: flex;
    flex-direction: column;
    border: solid 1px var(--green);
}

.services-section__list li {
    padding: 32px;
    cursor: pointer;
}

.services-section__list li:not(:last-of-type) {
    border-bottom: solid 1px var(--green);
}

.accordion-item.expanded .services-section__text {
    margin-top: 26px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.accordion-item.expanded .accordion-expand-icon {
    transform: rotate(-90deg);
}

.accordion-item:hover .services-section__title-wrapper {
    color: var(--green);
}

.services-section__article {
    display: flex;
    flex-direction: column;
}

.services-section__text {
    height: 0;
    opacity: 0;
    visibility: hidden;

    transition: all .2s ease, opacity .1s ease;
}

.accordion-expand-icon {
    min-width: 40px;
    cursor: pointer;
    transition: all .2s ease;
}

.services-section__subtitle {
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.services-section__main-text {
    max-width: 920px;
    font-size: 20px;
    font-weight: 500;
}
