.milestones {
    position: relative;
    width: 100%;
}
.milestones::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100vw - 70%);
    height: 50%;
    /* background: #130025; */
    border-radius: 0 0 0 500px;
    background: radial-gradient( circle at top right, #2a0050 0%, #130025 25%, #000 60%, #000 100% );
}
.milestones_video_bg {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.milestones .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.milestones .h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    font-family: var(--font);
    font-size: var(--size-48);
    font-style: normal;
    font-weight: 200;
    line-height: 140%;
    letter-spacing: 2.4px;
    width: 100%;
    max-width: 720px;
    margin: 0;
}

.milestones .block {
    position: absolute;
    width: 315px;
    height: 200px;
    padding: var(--space-32);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%);
    background-blend-mode: normal, overlay;
    backdrop-filter: blur(10px);
}
.milestones .block-1 {
    top: 10%;
    left: 10%;
}

.milestones .block-2 {
    top: 40%;
    left: 72%;
    background: linear-gradient(120deg, rgba(80, 220, 160, 0.35) 0%, rgba(255, 255, 255, 0.10) 60%);
}

.milestones .block-3 {
    top: 68%;
    left: 22%;
    background: linear-gradient(120deg, rgba(80, 220, 160, 0.35) 0%, rgba(255, 255, 255, 0.10) 60%);
}

.milestones .block p.big {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-80);
    font-style: normal;
    font-weight: 200;
    line-height: 60px;
    margin: 0 0 var(--space-2xs) 0;
}
.milestones .block p {
    color: var(--white);
    font-family: var(--font);
    font-size: var(--size-28);
    font-style: normal;
    font-weight: 200;
    line-height: 130%;
    margin: 0;
}
.milestones .block p strong {
    font-weight: 700;
}
.milestones .block p.big sup {
    color: var(--white);
    font-family: var(--font);
    font-size: 44px;
    font-style: normal;
    font-weight: 200;
    line-height: 40px; 
}


@media (min-width: 993px) and (max-width: 1600px) {
.milestones .h3 {
    line-height: 1;
    max-width: 550px;
}
.milestones .block {
    width: 270px;
    height: 180px;
}
}

@media (max-width: 1200px) {
.milestones {
    min-height: auto;
}
.milestones::after {
    display: none; 
}
.milestones_video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.milestones .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
    height: auto;
}

.milestones .h3 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.milestones .block {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: var(--space-24);
}

}

@media (max-width: 480px) {
.milestones .h3 {
    font-size: 24px;
}
.milestones .block p.big {
    font-size: 44px;
}
.milestones .block {
    padding: var(--space-sm);
    width: 90%;
}
}