.process-steps {
    position: relative;
    overflow: hidden;
    padding: 200px 20px 80px 20px;
    isolation: isolate;
    background: #0a4a63;
}

.process-steps__bg,
.process-steps__overlay {
    position: absolute;
    inset: 0;
}

.process-steps__bg {
    background-color:#013346;
    background-image: var(--process-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    background-blend-mode: luminosity;
}

.process-steps__overlay {
    background: #013346;
    opacity: 0.8;
    z-index: -2;
}

.process-steps__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: center;
}

.process-steps__title {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 110px);
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 800;
}
.process-steps__left, .process-steps__right {
    width:100%;
    max-width:50%;
}
.process-steps__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(90px, 1fr));
    gap: 44px 0px;
    align-items: start;
}

.process-steps__item {
    text-align: center;
}

.process-steps__hex {
    width: 72px;
    height: 82px;
    margin: 0 auto 14px;
    background: #e37148;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.process-steps__item-text {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .process-steps__inner {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }

    .process-steps__grid {
        grid-template-columns: repeat(4, minmax(100px, 1fr));
    }
}
@media (max-width:991px) {
    .process-steps__left, .process-steps__right {
        max-width:100%;
        text-align:center;
    }
    .process-steps__inner {flex-flow:wrap;}
    .process-steps__grid {
        grid-template-columns: repeat(5, minmax(100px, 1fr));
    }
}

@media (max-width: 700px) {
    .process-steps {
        padding: 130px 16px 100px 16px;
    }

    .process-steps__grid {
        max-width:290px;
        justify-self: center;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 20px 10px;
    }

    .process-steps__hex {
        width: 64px;
        height: 74px;
        font-size: 20px;
    }

    .process-steps__item-text {
        font-size: 14px;
    }
}
