#milestone-years button {
    cursor: pointer;
}

#milestone-years button:hover {
    *transform: scale(1.1);
    *transition: all .4s;
}

ul.milestone-years {
    list-style: none;
    margin: 0;
    padding: 0 0 20px;
    display: flex !important;
    align-content: center;
    align-items: center;
}

ul.milestone-years li {
    display: inline-block;
}

ul.milestone-years::after {
    content: "";
    display: block;
    clear: both;
}

ul.milestone-years li button {
    background-color: transparent;
    color: #000;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-right: 15px;
    font-size: 30px;
    transition: transform 0.2s;
}

ul.milestone-years li.active button {
    font-size: 40px;
}

.milestone-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: center;
    box-shadow: 35px 30px 50px 0 rgba(51, 102, 255, 0.05);
}

.milestone-item img {
    width:70% !important;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .milestone-item {
        grid-template-columns: 1fr;
    }
}


table.cv {
    width: 100%;
    border-collapse: collapse;
}

table.cv th, table.cv td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

table.cv th:first-child, table.cv td:first-child {
    width: 200px;
}

.cv-paper {
    background: #fff;
    padding: 40px;
    *border: 1px solid #ddd;
    *box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 35px 30px 50px 0 rgba(51, 102, 255, .05);
}

.cv-paper h3 {
    margin-bottom: 10px;
}

@media(max-width: 768px) {
    .cv-paper {
        padding: 20px;
    }
    .cv-paper img {
        width: 70px;
    }

    ul.milestone-years li:not(.active) {
        display: none;
    }
}