.section-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #004733 0%, #0b785f 100%);
}
@media (min-width: 1024px) {
    .section-process {
        padding: 150px 0;
    }
}
.section-process .container {
    max-width: 1132px;
}
.section-process__header {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 28px;
}
@media (min-width: 360px) and (max-width: 1360px) {
    .section-process__header {
        font-size: calc(1.4vw + 22.96px);
    }
}
@media (min-width: 1360px) {
    .section-process__header {
        font-size: 42px;
    }
}
.section-process__header {
    line-height: 114%;
    letter-spacing: -0.01em;
    text-align: center;
    color: var(--neutral-white);
    max-width: 915px;
    margin: 0 auto;
    text-transform: uppercase;
}
.section-process__body {
    display: grid;
    gap: 20px;
    margin-top: 52px;
    grid-auto-flow: dense;
}
@media (min-width: 768px) {
    .section-process__body {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .section-process__body {
        margin-top: 64px;
    }
}
.section-process__item {
    display: flex;
    flex-direction: column;
    gap: 150px;
    overflow: hidden;
    border: 1px solid var(--white-300);
    border-radius: 30px;
    padding: 24px;
    background: var(--white-100);
    position: relative;
}
.section-process__item:nth-child(2), .section-process__item:nth-child(3) {
    gap: 75px;
}
.section-process__item-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-process__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-process__item-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.7) 0%, rgba(27, 27, 27, 0.7) 100%);
}
.section-process__head {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.section-process__number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    border: 1px solid var(--white-200);
    border-radius: 100px;
    padding: 6px 12px;
    backdrop-filter: blur(8px);
    background: var(--graphitic-200);
    min-width: 36px;
    max-width: 36px;
    height: 36px;
}
.section-process__number-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.01em;
    color: var(--neutral-white);
    backdrop-filter: blur(8px);
    background: var(--graphitic-200);
    border: 1px solid var(--white-200);
    border-radius: 100px;
    padding: 6px 12px;
}
.section-process__bottom {
    position: relative;
    z-index: 1;
}
.section-process__title {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
}
@media (min-width: 360px) and (max-width: 1360px) {
    .section-process__title {
        font-size: calc(1.2vw + 15.68px);
    }
}
@media (min-width: 1360px) {
    .section-process__title {
        font-size: 32px;
    }
}
.section-process__title {
    line-height: 113%;
    letter-spacing: -0.01em;
    color: var(--neutral-white);
}
.section-process__text {
    margin-top: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    opacity: 0.7;
}