.achievements .container {
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.achievements .container .title {
    width: fit-content;
    font-size: 40px;
    padding: 0 50px 20px 50px;
    border-radius: 0 0 20px 20px;
    color: #fff;
    background-color: #0B1522;
    margin: auto;
    font-weight: 800;
}

.achievements .container .description {
    width: 60%;
    margin: auto;
    padding: 10px 0 10px 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
}


.achievements .container .content {
    text-align: center;
    padding-bottom: 20px;
}

.achievements .container .description p {
    padding: 20px 0 20px 0;
}

.achievements .container .content .card .symbol {
    width: fit-content;
    margin: auto;
    background-color: #0B1522;
    color: #fff;
    padding: 10px 30px 10px 30px;
    margin-top: 10px;
    font-size: 60px;
    width: 60px;
    height: 60px;
    border-radius: 40px;
}

.achievements .container .content .card .text {
    width: fit-content;
    margin: auto;
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    padding: 30px 20px 20px 20px;
    font-size: 25px;
    margin-top: -20px;
    border-radius: 30px;
    line-height: 50px;
}


.achievements .container .content .card .text span {
    font-weight: 700;
    line-height: 1.5;
}

@media only screen and (max-width: 1500px) {
    .achievements .container .description {
        width: 80%;
        font-size: 15px;
    }
    .achievements .container .title {
        font-size: 25px;
        padding: 0 50px 20px 50px;
        border-radius: 0 0 20px 20px;
        font-weight: 700;
    }
    .achievements .container .content .card .text {
        font-size: 15px;
    }

    .achievements .container .content .card .symbol {
        width: fit-content;
        margin: auto;
        background-color: #0B1522;
        color: #fff;
        padding: 10px 30px 10px 30px;
        margin-top: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
        border-radius: 40px;
    }
}

@media only screen and (max-width: 1100px) {
    .achievements .container {
        width: 90%;
    }
    .achievements .container .description {
        width: 100%;
        font-size: 15px;
    }
}