.careerCards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding: 0px 0px 50px 0px;
    justify-content: center;
}

.careerCard {
    border-radius: 16px;
    padding: 20px;
    background-color: #fff;
    /* box-shadow: 0px 0px 16px 0px rgb(201, 201, 201); */
    border: var(--Vertical-component-padding-xs, 2px) solid var(--accent-1, #F3F3F3);
    color: var(--e-global-color-text);
}

.jobButton,
.jobButtonMob {
    display: flex;
    text-decoration: none;
    background-color: var(--e-global-color-primary);
    padding: 18px;
    border-radius: 50px;
    float: right;


    border-radius: 24px;
    background: var(--Primary, #EA5400);
}
.whiteText {
    color: #fff;
}
.iconWithText {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    column-gap: 15px;
}

.iconBackground {
    border-radius: 24px;
    background: var(--Secondary, linear-gradient(180deg, #EA5400 0%, #FE9A63 100%));
    display: flex;
    width: 48px;
    height: 48px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.infoIconLabel {
    background-color: var(--e-global-color-neutral);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.jobTitle {
    font-family: Manrope;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height:  30.8px;
    color: var(--text, #303030);
}

.enrolmentStatus {
    font-weight: 500;
    color: var(--e-global-color-primary,  #EA5400);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px
}

.careerExcerpt {
    color: var(--e-global-color-neutral,  #303030);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400 !important;
    line-height:  22.4px;
}

a.cardLink {
    display: flex;
    flex-direction: row;
    width: 23.5%;
}

.contactTitle {
    font-size: 32px !important;
    font-weight: 600;
    line-height: 41px;
}

.contactSubText {
    font-size: 24px;
    font-weight: 600;
}

.otherJobCopyCol {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 8px;
}

.typeFormCareerCol {
    width: 50%;
    background-color: transparent;
}

.otherJobContactRow {
    margin: 40px 0px;
    display: flex;
    background: var(--e-global-color-primary);
    padding: 40px;
    border-radius: 32px;

}

h2.hiringTitle {
    color: var(--text, #1E1E1E);
    font-size: 32px;
    text-align: center;
    font-weight: 600;
}

.row.hiringTitleRow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
    font-family: Poppins;
    font-size: 32px;
    font-weight: 600;
}
/* Laptop */
@media only screen and (max-width:1366px) and (min-width:1024px) {
    a.cardLink {
        width: 23%;
    }
}

/* Tablet */
@media only screen and (max-width:1023px) and (min-width:768px) {
    a.cardLink {
        width: 48%;
    }

    .otherJobCopyCol {
        width: 85%;
        text-align: center;
        padding-left: 0px;
    }

    .otherJobContactRow {
        display: flex;
        padding: 40px;
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }

}
/* Mobile */
@media only screen and (max-width:767px) {
    a.cardLink {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .row.hiringTitleRow {
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-bottom: 30px;
        font-family: Poppins;
        font-size: 32px;
        font-weight: 600;
    }
    
    .otherJobCopyCol {
        padding-left: 0px;
        width: 100%;
    }

    .otherJobContactRow {
        padding: 0px;
        display: flex;
        flex-direction: column;
        row-gap: 50px;
    }
}