.steps .boxed {
    padding-top: 90px;
    padding-bottom: 240px;
    display: flex;
    gap: 300px;
}

.steps .boxed > div {
    flex: 1;
}

.steps .boxed .media {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.steps .boxed .media.icon::before {
    position: absolute;
    bottom: -85px;
    right: -75px;
    content: url("images/after-image.svg");
}

.steps .boxed .media img {
    border-radius: 8px;
    object-fit: cover;
}

.steps .boxed .media.gradient {
    position: relative;
}

.steps .boxed .media.gradient::before {
    content: "";
    position: absolute;
    border-radius: 8px;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 39.94%, rgba(15, 79, 83, 0.70) 82.23%) no-repeat;
    z-index: 1;
    pointer-events: none;
}

.steps .boxed .media.gradient img {
    display: block;
    width: 100%;
    height: auto;
    z-index: 0;
    position: relative;
}

.steps .boxed .information {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.steps .boxed .information h2 {
    line-height: normal;
    letter-spacing: -1.6px;
}

.steps .boxed .information .content ul {
    gap: 46px;
    display: flex;
    flex-direction: column;
    list-style: none;
    position: relative;
    margin: 0 0 1.5em 0;
}

.steps .boxed .information .content ul li {
    color: var(--muted-green);
    font-family: Opensans-400, Arial, sans-serif;
    font-size: 18px;
    line-height: 28px;
    position: relative;
    padding-left: 50px;
}

.steps .boxed .information .content ul li::before {
    content: url("images/bullet.svg");
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 20px;
    line-height: 1;
}

.steps .boxed .information .content ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 20px;
    height: calc(100% + 50px);
    width: 1px;
    background-color: var(--ocean-blue);
}


.steps .boxed .information .content ul li strong {
    color: var(--deep-teal);
    font-family: CrimsonPro-400, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.9px;
}

@media (max-width: 1700px) {
    .steps .boxed {
        padding: 60px 90px 60px 20px;
        gap: 60px;
    }
}

@media only screen and (max-width: 915px) {
    .steps .boxed .content div > p > a {
        font-size: 18px;
    }
    .steps .boxed .media {
        justify-content: center;
    }

    .steps .boxed .media.icon::before {
        right: -35px;
    }

    .steps .boxed {
        flex-direction: column;
    }
}

@media only screen and (max-width: 660px) {
    .steps .boxed {
        gap: 25px;
    }
    .steps .boxed .media.icon::before {
        right: -64px;
        bottom: -115px;
        scale: 0.5;
    }
}

@media only screen and (max-width: 440px) {
    .steps .boxed {
        padding: 20px;
    }
    .steps .boxed .information .content ul li strong {
        font-size: 23px;
    }
}