.achievements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 37px;
}

.achievements-title {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #242424;
    text-align: center;
    margin: 0;
}

.achievements-block {
    width: 100%;
    max-width: 748px;

    height: 100%;
    min-height: 177px;
    background: #FFFACC;
    border: 1px solid #CCC8A3;
    margin-top: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.achievements-block-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    margin: 0;

    text-align: center;

    color: #242424
}

.achievements-block-content {
    width: 282px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin: 12px 0px;
}

.achievements-block-inner {
    position: relative;
}

.achievements-block-inner::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 137px;
    background: #CCC8A3;
    border-radius: 8px;
    top: -10px;
    right: -47px;
}

.achievements-block-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievements-block-title-wrapper svg {
    margin-left: 8px;
}

@media (max-width : 1200px) {
    .achievements-block {
        flex-direction: column;
        min-height: 288px;
    }

    .achievements-block-inner::after  {
        transform: rotate(90deg);
        top: -155%;
        right: 50%;
        height: 600px;
    } 

    .achievements-block-title {
        font-size: 32px;
    }

    .achievements-block-content {
        font-size: 16px;
    }
}

@media (max-width : 700px)  {
    .achievements-block-inner::after  {
        transform: rotate(90deg);
        top: -60%;
        right: 50%;
        height: 400px;
    }
}

@media (max-width : 425px) {
    .achievements-block-inner::after {
        transform: rotate(90deg);
        top: -17%;
        right: 50%;
        height: 300px;
    }  
}