.works-container {
    background: rgba(242, 107, 42, 0.05);
}

/* MOBILE */
@media (max-width: 767.98px) {
    .title-container h1 {
        font-size: 2.5rem;
    }
}

/* MD+ */
@media (min-width: 768px) {
    .title-container h1 {
        font-size: 4.5rem;
    }
}

/* TIMELINE */
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem 4rem;
}

@media (min-width: 768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: 0.25rem solid var(--green-50);
        width: 18rem;
        position: absolute;
        left: 5.5rem;
        top: 1.9rem;
        z-index: -1;
    }
    /* .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem solid var(--green-50);
        width: 7rem;
        position: absolute;
        right: 5.5rem;
        top: .3125rem;
        z-index: -1;

    } */
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center;
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 100%;
    height: 4rem;
    width: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 0.2rem solid var(--green);
}

.timeline-steps .timeline-content .inner-circle > i {
    font-size: 2rem;
    font-weight: 600;
    color: var(--green);
}

/* .timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: var(--green);
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
} */

.card-works {
    border: 0.5rem solid white;
    background-color: var(--green-30);
}

.check-list li > i {
    color: var(--green);
}

.card-works .profile-img {
    display: block;
    width: 100%;
    aspect-ratio: 1.5/1;
    height: auto;
    object-fit: cover;
}


.why-container {
    background-color: var(--green-bg);
}

.icon-container {
    border-radius: 30%;
    background-color: white;
    width: 4.5rem;
    height: 4.5rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.icon-container > svg {
    fill: var(--green);
    font-size: 2rem !important;
    width: 3rem;
    height: 3rem;
}