.jobs {
    width: 100vw;
    max-width: 1500px;

    min-height: 100vh;
    height: fit-content;

    padding-top: 25px;

    margin: 0px auto;
}

.jobs-heading {
    font-size: 35px;
    font-weight: 700;

    text-align: center;

    margin-bottom: 25px;
    margin-top: 25px;
}

.jobs .benefitswrapper {
    width: calc(100% - 50px);

    background-color: #f7f7f7;

    border-radius: 30px;

    margin: 0px 25px;

    padding: 25px 10px;
}

.jobs .benefitswrapper .title {
    font-size: 30px;

    text-align: center;

    margin-bottom: 15px;
}

.jobs .benefitsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.jobs .benefitsContainer .benefit {
    width: 150px;
    height: fit-content;
    margin: 10px;
}

.jobs .benefitsContainer .benefit .text {
    font-size: 17px;
    font-weight: normal;
    text-align: center;
}

.jobs .benefitsContainer .benefit .icon {
    width: 100px;
    height: 100px;

    margin: 0px auto;
}

.jobs .benefitsContainer .benefit .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.jobs .apply {
    width: calc(100% - 50px);

    margin: 0px 25px;
    margin-top: 50px;

    padding: 25px 10px;
}

.jobs .apply .title {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
}

.jobs .apply .nja {
    max-width: 1500px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;

    padding: 25px 15px;

    font-size: 16px;
}

.jobs .apply .nja .icon {
    width: 300px;
    height: fit-content;
}

.jobs .apply .nja .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.jobs .apply .nja .textcontent {
    width: 60%;
    padding: 50px;
}

.jobs .prozess {
    width: calc(100% - 50px);

    margin: 0px 25px;
    margin-top: 25px;

    padding: 25px 10px;
}

.jobs .prozess .title {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    padding-bottom: 25px;
}

.jobs .prozess .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.jobs .prozess .container .item {
    flex: 0 0 calc(50% - 30px);

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;

    background-color: #f7f7f7;

    border-radius: 30px;

    padding: 25px;

    margin: 15px;
}

.jobs .prozess .container .item .icon {
    width: 175px;
    height: 175px;
    margin-right: 15px;
}

.jobs .prozess .container .item .text {
    width: calc(100% - 175px - 15px);
}

.jobs .prozess .container .item .text .title {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 0px;
}

.jobs .prozess .container .item .text .desc {
    font-size: 17px;
    font-weight: normal;
    text-align: left;
    margin-top: 15px;    
}

/* Tablet */
@media only screen and (max-width: 1208px) {    
    .jobs .apply .nja {
        flex-direction: column;
        margin: 0px auto;
    }

    .jobs .apply .nja .textcontent {
        width: 100%;
        padding: 0px;
    }

    .jobs .prozess .container .item  {
        flex: 0 0 calc(100% - 30px);
    }

    .jobs .prozess .container .item .icon {
        margin: 0px auto;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .jobs .apply .nja .textcontent {
        padding: 0px;
    }
    
    .jobs .prozess .container .item {
        flex: 0 0 calc(100% - 30px);
        flex-direction: column;
    }

    .jobs .prozess .container .item .icon {
        margin: 0px auto;
    }

    .jobs .prozess .container .item .text {
        width: 100%;
    }

    .jobs .prozess .container .item .text .title {
        text-align: center;
        margin-top: 15px
    }
}


































.jobs .apply .jobs-container {
    
    display: none !important;

    width: 100%;
    min-height: 50vh;
    /* display: -webkit-inline-box; */
    padding: 25px 20px;
    overflow: hidden;
    
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

.jobs .jobs-container .job {
    width: 45vh;
    max-width: 450px;
    min-height: calc(45vh + 80px);
    padding: 2vh;
    margin: 15px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 12px var(--border-color);
    display: flex;
    flex-direction: column; /* Änderung hier: Flexbox mit Ausrichtung auf Spalten */
}

.jobs .jobs-container .job .desc-box {
    position: relative;
    height: 100%;
}

.jobs .jobs-container .job .desc-box .title {
    text-align: center;
    width: 100%;
    padding: 10px 0px 0px 0px;
    font-size: 25px;
}

.jobs .jobs-container .job .desc-box .desc {
    width: 100%;
    font-size: 17px;
    margin-top: 10px;
}

.jobs .jobs-container .job .desc-box .benefits {
    width: 100%;
    height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: 15px;
}

.jobs .jobs-container .job .desc-box .benefits .benefit {
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
}

.jobs .jobs-container .job .desc-box .benefits .benefit .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.jobs .jobs-container .job .desc-box .benefits .benefit .icon img {
    width: 100%;
    height: 100%;
}

.jobs .jobs-container .job .desc-box .buttons {
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 0px;
}

.jobs .jobs-container .job .desc-box .buttons button {
    width: 150px;
    outline: none;
    cursor: pointer;
    border: none;
    height: 30px;
    position: relative;
    /* letter-spacing: 0.05vh; */
    border-radius: 500vh;
    overflow: hidden;
    background: linear-gradient(to right, #2d9de2, #4a00e0);
}

.jobs .jobs-container .job .desc-box .buttons button span {
    position: relative;
    z-index: 10;
    color: white;
    transition: white 0.4s;
    background: transparent;
}

.jobs .jobs-container .job .desc-box .buttons button:hover span {
    color: white;
}

.jobs .jobs-container .job .desc-box .buttons button::before,
.jobs .jobs-container .job .desc-box .buttons button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.jobs .jobs-container .job .desc-box .buttons button::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.75, 1);
}

.jobs .jobs-container .job .desc-box .buttons button:hover::before {
    transform: translate3d(100%, 0, 0);
}

.jobs .jobs-container .job .desc-box .keys {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.jobs .jobs-container .job .desc-box .keys a {
    background-color: whitesmoke;
    margin: 0px 5px;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 5px;
}

.jobs .jobs-container .job .desc-box .keys a:hover {
    background: -webkit-linear-gradient(#2d9de2, #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jobs .jobs-container .job img {
    width: 100%;
    height: 20vh;
    border-radius: 24px;
}