body {
    background: #f7f2ee;
    width: 100%;
}

.framework {
    padding: 20px;
    font-family: 'Inter', sans-serif;
    color: #3a2f2a;
}

/* Title */
.framework-title {
    /* font-family: 'Marcellus',serif; */
    padding: 82px 0 0;
    /* font-size: 40px; */
    text-align: center;
}

.framework-sub {
    text-align: center;
    font-size: 16px;
    color: #7a6a61;
    margin-bottom: -33px;
}

/* Image */

.framework-image {
    text-align: center;
    position: relative;
}

.framework-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #eaded5, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.framework-image img {
    position: relative;
    z-index: 2;
    max-width: 420px;
    width: 100%;
}

/* Timeline */

.framework-steps {
    position: relative;
}

.framework-steps:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #d9c9be;
    transform: translateX(-50%);
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.step:nth-child(even) .step-text {
    grid-column: 2;
}

.step:nth-child(even) .step-empty {
    grid-column: 1;
}

.step:nth-child(odd) .step-text {
    grid-column: 1;
}

.step:nth-child(odd) .step-empty {
    grid-column: 2;
}

.step-text {
    background: white;
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-title {
    /* font-family: 'Marcellus',serif; */
    font-size: 16px;
    /* margin-bottom: 10px; */
}

.step-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #5c4f48;
}

/* Number circle */

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #b08b6a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.step:nth-child(1) .step-number {
    top: 20px
}

.step:nth-child(2) .step-number {
    top: 120px
}

.step:nth-child(3) .step-number {
    top: 220px
}

.step:nth-child(4) .step-number {
    top: 320px
}

.step:nth-child(5) .step-number {
    top: 420px
}

@media(max-width:900px) {

    .framework-steps:before {
        display: none;
    }

    .step {
        grid-template-columns: 1fr !important;
    }

    .step-number {
        display: none;
    }

}

@media(max-width:768px) {
	.step {
		display: grid;
		grid-template-columns: 1fr !important;
		gap: 0;
		align-items: center;
		margin-bottom: 10px;
	}
}