.career-page {
   .header {
        position: relative;
        background: linear-gradient(90deg, #001835 0%, #1D567C 100%);
        z-index: 10;
   } 

   .header-container {
        height: 80px;
   }
   .wrapper {
        padding-top: 50px;
        height: auto;
        min-height: 100vh;
   } 
}

.breadcrumb-wrapper {
    padding: 20px 45px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--pri-color);
}

.career-page-section {
    position: relative;
    z-index: 1;

    &::before {
        content: '';
        position: absolute;
        top: -70px;
        right: -10%;
        width: 100%;
        height: 100%;
        max-width: 1200px;
        margin: 0 auto;
        background-image: url('../img/career-bg-1.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -20%;
        width: 100%;
        height: 100%;
        background-image: url('../img/career-bg-2.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }


    .title-center {
       margin-bottom: 2.5rem;
    }
    
}

.carreer-desc {
    p {
        margin: 1.5rem 0 2rem;
    }

    h3 {
        margin: 3rem 0 1.5rem;
    }
}

.table-wrapper { 
    th, td {
        font-size: clamp(14px, 1vw + 0.3rem, 16px);
        padding-top: 6px;
        padding-bottom: 6px;
        font-weight: 500;
        color: var(--pri-color);
    }

   th {
        position: relative;
        font-weight: 700;
        width: 200px;
        padding-right: 10px;
        text-align: left;

        &:after {
            content: ':';
            position: absolute;
            right: 0;
            height: 100%;
            top: 0;
            display: flex;
            align-items: center;
        }
   }

   td {
        width: 70%;
        padding-left: 30px;
   }
}

.listing {
    padding-left: 20px;
    
    li {
        font-size: clamp(14px, 1vw + 0.3rem, 16px);
        margin-bottom: 1rem;
        color: var(--pri-color);
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .table-wrapper {
        td {
            padding-left: 10px;
        }
    }

    .breadcrumb-wrapper {
        padding: 20px 20px 0;
    }

    .carreer-page {
        .wrapper {
            padding-top: 40px;
        }
    }
}
