.achievement {
    background-color: var(--mainBlue);
}

.achievement .en {
    color: white;
}

.achievement_section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement_section + .achievement_section {
    margin-top: 50px;
}

.achievement_title {
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 900;
    color: white;
}

.achievement_slide {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.achievement_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 12.5px;
    transition: .3s;
    cursor: pointer;
}

.achievement_item:hover {
    transform: scale(1.05);
}

.achievement_item img {
    width: 150px;
    border-radius: 150px;
    border: white 10px solid;
}

.achievement_item .name {
    margin-top: -25px;
    padding: 0 25px;
    height: 50px;
    line-height: 30px;
    border-radius: 50px;
    color: white;
    border: white 10px solid;
    background: var(--deepBlue);
}

.achievement_info_area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
}

.achievement_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 550px;
    padding: 50px;
    border-radius: 50px;
    background: white;
    z-index: 999999999999999;
}

.achievement_info .photo {
    margin-top: -100px;
    margin-bottom: 25px;
    width: 100px;
    height: 100px;
    border-radius: 150px;
    border: white 10px solid;
}

.achievement_info .gif {
    width: 450px;
    margin-bottom: 25px;
}

.achievement_info .name {
    font-size: 20px;
    color: var(--deepBlue);
}


@media screen and (max-width: 1023px) {
    .achievement_slide {
        flex-wrap: wrap;
        justify-content: center;
    }

    .achievement_item {
        margin: 12.5px;
    }

    .achievement_info {
        width: calc( 100% - 50px );
        padding: 25px;
        border-radius: 25px;
    }

    .achievement_info .photo {
        margin-top: -50px;
        margin-bottom: 25px;
    }
    
    .achievement_info .gif {
        width: 100%;
    }
    
}