.achievement {
    position: relative;
    padding: 44px 0 90px;
    margin-bottom: 60px;
}

.achievement::after {
    content: '';
    width: calc(100% + 300px);
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(136deg, #6EA2D4 0%, #05284A 84.02%);
    filter: blur(50px);
    z-index: -2;
}

.achievement-vector {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

.achievement h2 {
    color: #FFF;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.achievement__list {
    display: flex;
    margin-top: 60px;
    gap: 16px;
}

.achievement__item {
    width: 100%;
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 10px 20px;
}

.achievement .title {
    color: #558FC7;
    text-align: center;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.title-two {
    color: #000;
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.achievement p {
    color: #000;
    text-align: center;
    font-size: 37px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .achievement .title, .achievement .title-two {
        font-size: 75px;
    }

    .achievement p {
        font-size: 30px;
    }
}

@media (max-width: 1000px) {
    .achievement h2 {
        font-size: 35px;
    }

    .achievement .title, .achievement .title-two {
        font-size: 65px;
    }

    .achievement p {
        font-size: 28px;
    }
}

@media (max-width: 720px) {
    .achievement h2 {
        font-size: 25px;
    }

    .achievement-vector {
        display: none;
    }

    .achievement .title, .achievement .title-two {
        font-size: 40px;
    }

    .achievement__list {
        margin-top: 40px;
    }

    .achievement p {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .achievement__list {
        flex-wrap: wrap;
    }

    .achievement__item {
        width: 100%;
    }

    .achievement p {
        max-width: 300px;
    }
}

@media (max-width: 500px) {
    .achievement__list {
        margin-top: 20px;
    }

    .achievement::after {
        filter: blur(30px);
    }

    .achievement {
        padding: 34px 0;
    }
}