.who-we-are-job-offers-mobile-navigation-holder {
    display: none;
}

.who-we-are-job-offers-holder {
    background-color: #ffffff0d;
    border: 1px solid #ffffff1a;
    border-radius: 24px;
    height: fit-content;
}

.who-we-are-job-offers-card {
    display: flex;
    flex-direction: row;
    padding: 32px;
    transition: 0.3s;
}

.who-we-are-job-offers-card:hover {
    background-color: #ffffff0d;
}

.who-we-are-job-offers-card:not(:last-child) {
    border-bottom: 1px solid #ffffff1a;
}

.who-we-are-job-offers-card-icon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 16px;
}

.who-we-are-job-offers-card-icon-holder {

    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: #ffd80026;
}

.who-we-are-job-offers-card-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.who-we-are-job-offers-card-icon i::before {
    display: block;
    margin: auto;
    width: fit-content;
    height: 16px;
    color: #ffd800;
    font-size: 16px;
}

.who-we-are-job-offers-card-job-title-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 40px;
}

.who-we-are-job-offers-card-job-title {
    width: 168px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.who-we-are-job-offers-card-responsibilities-holder {}

.who-we-are-job-offers-card-responsibilities {
    margin: 0;
    padding: 0;
    list-style: none
}

.who-we-are-job-offers-card-responsibilities-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    color: #d4e6f9b3;
    font-size: 14px;
    line-height: 1.625;
}

.who-we-are-job-offers-card-responsibilities-item p {
    margin-bottom: 0px;
}

.who-we-are-job-offers-card-responsibilities-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 10px;
    margin-top: 6px;
    background-color: #ffd800;
    flex-shrink: 0;
}



.who-we-are-job-offers-card-button-holder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
}

.who-we-are-job-offers-card-button {
    display: flex;
    flex-direction: row;
    gap: 8px;
    color: #012f6b;
    font-size: 14px;
    line-height: 1.25rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 12px 24px;
    background-color: #ffd800;
    white-space: nowrap;
}

.who-we-are-job-offers-card-button:hover {
    color: #012f6b;
    box-shadow: 0 10px 15px -3px #ffd80033, 0 4px 6px -4px #ffd80033;
    transform: scale(1.01) translateY(-2px);
}

.who-we-are-job-offers-card-button-icon-holder i::before {
    font-size: 14px;
    color: #012f6b;
}

/******************************************/
/******************************************/
/******************************************/


@media only screen and (max-width: 1000px) {
    .who-we-are-job-offers-card {
        padding: 12px;
    }

    .who-we-are-job-offers-card-icon-wrapper {
        margin-right: 8px;
    }

    .who-we-are-job-offers-card-job-title-holder {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 850px) {
    .who-we-are-job-offers-mobile-navigation-holder {
        display: flex;
        flex-direction: row;
        border-radius: 16px 16px 0 0;
        border: 1px solid #d4e6f926;
        border-bottom: 0px;
        background-color: #ffffff0d;

    }

    .who-we-are-job-offers-mobile-navigation-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex: 1;
        padding: 14px;
        border-bottom: 2px solid transparent;
        transition: 0.3s;
    }

    .who-we-are-job-offers-mobile-navigation-button:hover {
        background-color: #ffffff0d;
        cursor: pointer;
    }

    .who-we-are-job-offers-mobile-navigation-button.open {
        border-bottom: 2px solid #ffd800;
        background-color: #ffd80026;

    }

    .who-we-are-job-offers-mobile-navigation-button-icon {}

    .who-we-are-job-offers-mobile-navigation-button-icon i {
        color: #ffd800;
    }

    .who-we-are-job-offers-mobile-navigation-button-title {
        color: #d4e6f966;
        font-size: 10px;
        line-height: 1.25;
        text-align: center;
    }

    /****/
    /****/
    /****/

    .who-we-are-job-offers-holder {

        position: relative;
        border-radius: 0 0 16px 16px;
        border-color: #d4e6f926;
    }

    .who-we-are-job-offers-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-areas:
            "job-offer-icon job-offer-title"
            "job-offer-responsibilities job-offer-responsibilities "
            "job-offer-button job-offer-button";
        grid-template-columns: 40px auto;
        column-gap: 12px;
        row-gap: 16px;
        padding: 20px;
        /* background-color: #ffffff0d; */
        opacity: 0;
        z-index: 1;
        transform: translate(0, -5px);
        transition: 0.3s;

    }

    .who-we-are-job-offers-card:not(:last-child) {
        border-bottom: 0;
    }

    .who-we-are-job-offers-card.open {
        z-index: 2;
        opacity: 1;
        transform: translate(0, 0px);

    }

    .who-we-are-job-offers-card-icon-wrapper {
        grid-area: job-offer-icon;
        margin: 0;
    }

    .who-we-are-job-offers-card-icon-holder {}

    .who-we-are-job-offers-card-job-title-holder {
        grid-area: job-offer-title;
    }

    .who-we-are-job-offers-card-job-title {
        width: unset;
    }

    .who-we-are-job-offers-card-responsibilities-holder {
        grid-area: job-offer-responsibilities;
    }

    .who-we-are-job-offers-card-responsibilities {}

    .who-we-are-job-offers-card-responsibilities-item {}

    .who-we-are-job-offers-card-button-holder {
        grid-area: job-offer-button;
    }

    .who-we-are-job-offers-card-button {}

}