.careersPage.careers-sec {
    padding: 80px 0px;
}
.table{
    margin-bottom: 0px;
}
.table>thead {
    background: var(--bg-primary);
    color: var(--light-text-color);
    text-align: center;
}
.table tbody tr{
    vertical-align: middle;
    border: 1px solid #eee;
    
}
.table th {
    white-space: nowrap;
}
.table tbody tr :nth-child(1) {
    width: 45%;
}
td.time {
    white-space: nowrap;
}
.table tbody td {
    padding: 1rem;
}
.table tbody td i{
    display: initial;
}
.table tbody td h3{
    letter-spacing: -0.03em;
    font-family: var(--font-calibri-bold);
}
.table tbody td p{
    letter-spacing: -0.02em;
    font-weight: 400;
}

#more {display: none; opacity: 0;
    animation: smoother 1s ease forwards;
}
@keyframes smoother {
    100% {
        opacity: 1;
    }
}
.careers-sec button#myBtn {
    border-radius: 5px;
    padding: 10px 30px;
    margin: 20px 0px;
    border: none;
}
.table>:not(caption)>*>* {
    vertical-align: middle;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .table tbody tr :nth-child(1) {
        width: auto;
    }
    table a.btn.secondary-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    table a.btn.primary-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
   
}

@media (max-width: 576px) {
    .table tbody td {
        padding: 1rem;
        min-width: 200px;
    }
}