.services-item {
    border-bottom: 1px solid #eeeeee;
    border-top: 1px solid #eeeeee;
    transition: all 0.3s ease-in-out;
}

.services-item:hover {
    border-bottom: 1px solid #00a76b;
    border-top: 1px solid #00a76b;
}

.services-item_active {
    border-top: 1px solid #00a76b;
    border-bottom: 1px solid #00a76b;
    background-color: #ffffff;
}

.services-item_active .services-heading .services-heading__text {
    color: #00a76b;
}

.services-item_active .services-heading .services-heading__text a:link,
.services-item_active .services-heading .services-heading__text a:visited {
    color: #00a76b;
}

.services-item_active .services-heading .button_round {
    border: 1px solid #00a76b;
}

.services-item_active .services-heading .button_round > svg {
    fill: #00a76b;
    transform: rotate(0);
}

.services-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 152px;
    padding: 12px 0;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.services-heading__text {
    max-width: 553px;
    width: 100%;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color: #0e0e0f;
    transition: all 0.3s ease-in-out;
}

.services-heading__text a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.services-heading__text a:link,
.services-heading__text a:visited {
    color: #0e0e0f;
}

.services-heading__button {
    max-width: 70px;
    width: 100%;
    max-height: 70px;
    width: 100%;
}

.services-heading .button_round {
    transition: all 0.3s ease-in-out;
}

.services-heading .button_round > svg {
    transition: all 0.3s ease-in-out;
}

.services-heading:hover .services-heading__text a {
    color: #00a76b;
}

.services-heading__text a:hover {
    text-decoration: underline;
}

.services-heading:hover .button_round {
    border: 1px solid #00a76b;
}

.services-heading:hover .button_round > svg {
    fill: #00a76b;
}

.services-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.services-description__item {
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-description-item__box {
    max-width: 661px;
    width: 100%;
}

.services-description-item__text {
    font-family: "Roboto", "sans-serif";
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    color: #8e8e93;
    margin-bottom: 24px;
}

.services-description-item__text p {
    margin: 0;
    line-height: 26px;
}

.services-description-item__buttons {
    display: flex;
    gap: 16px;
}

.services-description-item__btn {
    max-width: 142px;
    width: 100%;
}

.services-description-item__img {
    max-width: 430px;
    width: 100%;
    height: 288px;
    border-radius: 20px;
    overflow: hidden;
}

.services-description-item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.services-description-item__text h1 {
    font-family: "Roboto", "sans-serif";
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    color: #0e0e0f;
    margin-top: 0;
    margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
    .services-description__item {
        flex-direction: column;
        gap: 20px;
    }
    .services-description-item__box {
        order: 1;
    }
    .services-description-item__img img {
        object-fit: contain;
    }
}
