.careers {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 10px;
    color: #fff;
    min-height: 50vh;
    padding-bottom: 3rem;
    padding-top: 0px;
}

.careers h2 {
    color: #b0190c;
    justify-content: flex-start;
    font-family: "Questrial", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    flex-direction: column;
}

.careers h2 span {
    color: #202529;
    padding-left: 10px;
    font-weight: 600;
}

.careers .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.careers .left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
}

.careers .left .titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 3rem;
}

.careers .left .titles .ctr {
    color: #202529;
    border-radius: 10px;
    background-image: linear-gradient(45deg, #fdfdfd, #f4f4f4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 240px;
    flex-direction: row;
    padding: 10px 20px;
}

.careers .left .titles .ctr .num {
    font-size: 2.5rem;
    color: #b0190c;
}

.careers .left .titles .ctr p {
    line-height: 20px;
}

.careers .content .roles {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    padding-top: 3rem;
    width: 100%;
}

.careers .content .roles .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    color: #202529;
    background-color: #F1F1F1;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}

.careers .content .roles .wrap .desc {
    max-width: calc(100% - 150px);
}

.careers .content .roles .wrap .desc h3 {
    color: #b0190c;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 5px;
}

.careers .content .roles .wrap .desc label {
    font-size: 12px;
    font-weight: 600;
    background-color: #D0D0D0;
    padding: 3px 10px;
    border-radius: 5px;
}

.careers .content .roles .wrap .desc p {
    font-size: 14px;
    color: #202529;
    padding-bottom: 5px;
}

.careers .content .roles .wrap hr {
    width: 2px;
    height: 100px;
    border: none;
    background-color: #ccc;
}

.careers .content .roles .wrap button,
.careers .content .roles .wrap .button {
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    background-color: #b0190c;
    color: #fff;
    border-radius: 10px;
    border: none;
    text-decoration: none;
}

.careers .quicklinks {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    position: sticky;
    top: 140px;
}

.careers .quicklinks h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2B5971;
    margin: 2rem auto;
    margin-left: 0px;
}

.careers .quicklinks a {
    display: block;
    padding: 8px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    text-decoration: none;
    background-color: #202529;
    color: #fff;
    width: 100%;
}

.careers .quicklinks a.appointment {
    background-color: #403F44;
}

.careers .quicklinks a.telemedicine {
    background-color: #2BBEA5;
}

.careers .quicklinks a.homecare {
    background-color: #D0D0D0;
    color: #202529;
}

.careers .quicklinks .info {
    background-color: #fff;
    color: #202529;
    border-radius: 10px;
    padding: 8px 20px;
    width: 100%;
    min-height: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.careers .quicklinks .quicknav {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 10px;
    overflow: hidden;
}

.careers .quicklinks .quicknav .items {
    background-color: #202529;
    border-radius: 10px;
    flex-grow: 1;
    padding: 2rem 10px;
}

.careers .quicklinks .quicknav .items a {
    text-align: left;
    justify-content: flex-start;
}

.careers .quicklinks .quicknav .title {
    width: 54px;
}

.careers .quicklinks .quicknav .title p {
    color: #2B5971;
    font-size: 1.4rem;
    transform: rotate(90deg) translateX(-100%);
}

@media screen and (max-width: 880px) {
    .careers .left .titles {
        padding-top: 2rem;
    }

    .careers .content .roles .wrap {
        flex-direction: column;
    }

    .careers .content .roles .wrap .desc {
        max-width: none;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .careers .content .roles .wrap hr {
        height: 2px;
        width: 100%;
        margin: 20px 0px;
    }

    .careers .content .roles .wrap button,
    .careers .content .roles .wrap .button,
    .careers .content .roles .wrap .actions {
        display: block;
        width: 100%;
        text-align: center;
    }

    .careers .left .titles {
        justify-content: center;
    }
}