section.roadmap-section {
    --roadmap-section-bg: #002a3d;
    --roadmap-line-color: #2d7c9e;
    --roadmap-icon-bg: #c29b62;
    background: var(--roadmap-section-bg);
    font-family: "Lato", Arial, sans-serif;
    overflow: hidden;
    padding: 6.25rem 11.11%;
}

.roadmap-section *,
.roadmap-section *::before,
.roadmap-section *::after {
    box-sizing: border-box;
}

.roadmap-section__inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    margin: 0 auto;
    max-width: 70rem;
    width: 100%;
}

.roadmap-section__title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
}

.roadmap-section__timeline {
    margin: 0 auto;
    max-width: 70rem;
    position: relative;
    width: 100%;
}

.roadmap-section__item {
    align-items: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 5rem minmax(0, 1fr);
    margin-bottom: -2rem;
    position: relative;
    width: 100%;
}

.roadmap-section__item:last-child {
    margin-bottom: 0;
}

.roadmap-section__item:not(:last-child)::after {
    background: var(--roadmap-line-color);
    content: "";
    height: calc(50% + 2rem);
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    width: 0.25rem;
    z-index: 1;
}

.roadmap-section__item:not(:first-child)::before {
    background: var(--roadmap-line-color);
    content: "";
    height: 50%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 0.25rem;
    z-index: 1;
}

.roadmap-section__item-icon-wrap {
    align-items: center;
    display: flex;
    height: 5rem;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    z-index: 3;
}

.roadmap-section__item-icon {
    align-items: center;
    background: var(--roadmap-icon-bg);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 5rem;
    justify-content: center;
    overflow: hidden;
    width: 5rem;
}

.roadmap-section__item-image {
    display: block;
    height: auto;
    max-height: 4rem;
    max-width: 4rem;
    object-fit: contain;
    width: auto;
}

.roadmap-section__item-card {
    align-self: center;
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.roadmap-section__item--right .roadmap-section__item-card {
    grid-column: 3;
    margin: 0 1.25rem 0 1.875rem;
}

.roadmap-section__item--left .roadmap-section__item-card {
    grid-column: 1;
    margin: 0 1.875rem 0 1.25rem;
}

.roadmap-section__item-card::before {
    border-bottom: 1.3125rem solid transparent;
    border-top: 1.3125rem solid transparent;
    content: "";
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
}

.roadmap-section__item--right .roadmap-section__item-card::before {
    border-right: 1.25rem solid #ffffff;
    left: -1.25rem;
}

.roadmap-section__item--left .roadmap-section__item-card::before {
    border-left: 1.25rem solid #ffffff;
    right: -1.25rem;
}

.roadmap-section__item-title {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3333;
    margin: 0;
}

.roadmap-section__item-content {
    color: #3a3a3b;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.75rem;
}

.roadmap-section__item-content>* {
    margin: 0;
}

.roadmap-section__item-content>*+* {
    margin-top: 0.75rem;
}

.roadmap-section__item-content a {
    color: inherit;
}

.roadmap-section__item-content strong,
.roadmap-section__item-content b {
    font-weight: 700;
}

.roadmap-section__item-content ul,
.roadmap-section__item-content ol {
    display: block;
    padding-left: 1.5em;
    text-align: left;
}

@media (max-width: 1023px) and (min-width: 768px) {
    section.roadmap-section {
        padding: 3rem 6%;
    }

    .roadmap-section__inner {
        gap: 2.5rem;
    }

    .roadmap-section__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .roadmap-section__timeline {
        max-width: 100%;
    }

    .roadmap-section__item--left,
    .roadmap-section__item--right {
        align-items: flex-start;
        grid-template-columns: 4.375rem minmax(0, 1fr);
        margin-bottom: 2.5rem;
    }

    .roadmap-section__item:last-child {
        margin-bottom: 0;
    }

    .roadmap-section__item:not(:last-child)::after {
        height: calc(100% + 0.3125rem);
        left: 2.1875rem;
        top: 2.1875rem;
    }

    .roadmap-section__item:not(:first-child)::before {
        height: 2.1875rem;
        left: 2.1875rem;
        top: 0;
    }

    .roadmap-section__item-icon-wrap {
        align-self: flex-start;
        grid-column: 1;
        height: 4.375rem;
        justify-content: flex-start;
        left: auto;
        position: relative;
        top: auto;
        transform: none;
        width: 4.375rem;
    }

    .roadmap-section__item-icon {
        height: 4.375rem;
        width: 4.375rem;
    }

    .roadmap-section__item-image {
        max-height: 3rem;
        max-width: 3rem;
    }

    .roadmap-section__item--right .roadmap-section__item-card,
    .roadmap-section__item--left .roadmap-section__item-card {
        align-self: flex-start;
        grid-column: 2;
        margin: 0 0.625rem 0 1.875rem;
    }

    .roadmap-section__item-card {
        padding: 1rem 1.25rem;
    }

    .roadmap-section__item-card::before,
    .roadmap-section__item--left .roadmap-section__item-card::before,
    .roadmap-section__item--right .roadmap-section__item-card::before {
        border-bottom: 32px solid transparent;
        border-left: 0;
        border-right: 20px solid #ffffff;
        border-top: 32px solid transparent;
        left: -1.125rem;
        right: auto;
        top: 2.1875rem;
        transform: translateY(-50%);
    }

    .roadmap-section__item-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .roadmap-section__item-content {
        font-size: 1.125rem;
        line-height: 1.4444;
    }
}

@media (max-width: 767px) {
    section.roadmap-section {
        padding: 2.5rem 1.25rem;
    }

    .roadmap-section__inner {
        gap: 2.5rem;
    }

    .roadmap-section__title {
        font-size: 1.5rem;
        line-height: 1.3333;
    }

    .roadmap-section__timeline {
        max-width: 100%;
    }

    .roadmap-section__item--left,
    .roadmap-section__item--right {
        align-items: flex-start;
        grid-template-columns: 4.375rem minmax(0, 1fr);
        margin-bottom: 2.5rem;
    }

    .roadmap-section__item:last-child {
        margin-bottom: 0;
    }

    .roadmap-section__item:not(:last-child)::after {
        height: calc(100% + 0.3125rem);
        left: 2.1875rem;
        top: 2.1875rem;
    }

    .roadmap-section__item:not(:first-child)::before {
        height: 2.1875rem;
        left: 2.1875rem;
        top: 0;
    }

    .roadmap-section__item-icon-wrap {
        align-self: flex-start;
        grid-column: 1;
        height: 4.375rem;
        justify-content: flex-start;
        left: auto;
        position: relative;
        top: auto;
        transform: none;
        width: 4.375rem;
    }

    .roadmap-section__item-icon {
        height: 4.375rem;
        width: 4.375rem;
    }

    .roadmap-section__item-image {
        max-height: 3rem;
        max-width: 3rem;
    }

    .roadmap-section__item--right .roadmap-section__item-card,
    .roadmap-section__item--left .roadmap-section__item-card {
        align-self: flex-start;
        grid-column: 2;
        margin: 0 0.625rem 0 1.875rem;
    }

    .roadmap-section__item-card {
        border-radius: 20px;
        padding: 1rem 1.25rem;
    }

    .roadmap-section__item-card::before,
    .roadmap-section__item--left .roadmap-section__item-card::before,
    .roadmap-section__item--right .roadmap-section__item-card::before {
        border-bottom: 32px solid transparent;
        border-left: 0;
        border-right: 20px solid #ffffff;
        border-top: 32px solid transparent;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
        border-right: 20px solid #fff;
        left: -1.125rem;
        right: auto;
        top: 2.1875rem;
        transform: translateY(-50%);
    }

    .roadmap-section__item-title {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .roadmap-section__item-content {
        font-size: 1.125rem;
        line-height: 1.4444;
        margin-top: 0.75rem;
    }
}