.table {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 150px;
}
.table-title {
    font-size: 26px;
    margin: 20px 0;
    text-align: center;
}
.table-title small {
    font-size: 0.5em;
}
.responsive-table li {
    border-radius: 3px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.responsive-table li div {
    padding: 0 !important;
}
.responsive-table .table-header {
    background-color: #012647;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    font-weight: bold;
}
.responsive-table .table-row {
    background-color: #fff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}
.responsive-table .col-1 {
    all: unset;
    flex-basis: 20%;
}
.responsive-table .col-2 {
    flex-basis: 40%;
}
.responsive-table .col-3 {
    flex-basis: 20%;
}
.responsive-table .col-4 {
    flex-basis: 20%;
}

.badge {
    background-color: #4BB543;
    color: white;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
}

.badge.purple {
    background-color: #a627f0;
}

@media all and (max-width: 767px) {
    .responsive-table .table-header {
        display: none;
   }
    .responsive-table li {
        display: block;
   }
    .responsive-table .col {
        flex-basis: 100%;
   }
    .responsive-table .col {
        display: flex;
        padding: 10px 0;
   }
    .responsive-table .col:before {
        color: #6c7a89;
        padding-right: 10px;
        content: attr(data-label);
        flex-basis: 50%;
        text-align: right;
   }
}

.special-text {
    margin-top: 1em;
    color: grey;
    font-size: 20px;
}
.special-text:first-child {
    margin-top: 0;
}
.underlined {
    color: black;
    flex: 1;
    font-size: 20px;
    line-height: 1.2;
    text-decoration: none;
    background-image: linear-gradient(to right, yellow 0, yellow 100%);
    background-position: 0 1.2em;
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background 0.5s;
}
.underlined:hover {
    background-size: 100% 100%;
}
.underlined--thin {
    background-image: linear-gradient(to right, black 0, black 100%);
}
.underlined--thick {
    background-position: 0 -0.3em;
}
.underlined--offset {
    background-position: 0 0.2em;
    box-shadow: inset 0 -0.5em 0 0 white;
}
.underlined--gradient {
    background-position: 0 -0.1em;
    background-image: linear-gradient(to right, yellow 0, lightgreen 100%);
}
.underlined--reverse {
    background-position: 100% -0.1em;
    transition: background 1s;
    background-image: linear-gradient(to right, yellow 0, yellow 100%);
}

.two-col {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 10px;
}

.two-col div {
    font-size: 30px;
}

.title-section {
    font-weight: bold;
}

.resume-quote {
    max-width: 1200px !important;
    background-color: white;
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}