.services{
    padding: 96px 0;
}
.services-content{
    display: flex;
    justify-content: space-between;

}
.services-text{
    width: 708px;
}
.services-description{
    width: 708px;
    padding-top: 48px;
}

.services-description a,
.services-description button{
    float: right;
    margin-top: 96px;
}
.benefits-content{
    justify-content: space-between;
    gap: 24px 0;
}
.benefits-box{
    width: 32%;
    background-color: var(--gray-lighter);
    padding: 24px;
    border-radius: 24px;
    padding-bottom: 72px;
}

.benefits-box .H4{
    margin: 24px 0 16px;
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--menta);
    color: var(--C0);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .services-content {
        flex-direction: column;
        gap: 24px;
    }
    .services-text,
    .services-description {
        width: 100%;
    }
    .services-description a {
        float: none;
        margin-top: 32px;
    }
}

@media screen and (orientation: portrait){
    .services-content, .benefits-content, .contact-content{
        display: block !important;
    }
    .benefits-box{
        width: 100%;
        margin: 30px 0;
    }
    .contact-text {
        width: 100% !important;
        margin-bottom: 20px;;
    }
}