

.career-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.career-header-right img{
    max-width: 441px;
    width: 100%;
}

.career-header-left{
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-header-left h1{
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.career-header-left p{
    font-size: 20px;
    color: #000;
}

.career-l-btnWrapper{
    gap: 10px;
    display: flex;
}

.career-whoWeAre{
    margin-top: 220px;
}

.career-whoWeAre h2{
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.career-whoWeAre p{
    font-size: 20px;
    color: #000;
}

.career-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    margin-top: 220px;
}

.career-gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    img:nth-child(1) { grid-area: 1 / 1 / 2 / 5; }
    img:nth-child(2) { grid-area: 1 / 5 / 2 / 7; }
    img:nth-child(3) { grid-area: 1 / 7 / 2 / 9; }
    img:nth-child(4) { grid-area: 1 / 9 / 2 / 13; }
    img:nth-child(5) { grid-area: 2 / 1 / 3 / 5; }
    img:nth-child(6) { grid-area: 2 / 5 / 3 / 9; }
    img:nth-child(7) { grid-area: 2 / 9 / 3 / 13; }

.career-workAtCoderpsace{
    margin-top: 220px;
}

.career-perks-container{
    margin-top: 220px;
}

.career-perks-container h2{
    font-size: 32px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.career-perkList{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 46px;
}

.career-perkItem{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.career-perkItem img{
    height: 115px;
    object-fit: contain;
}

.career-perkItem span{
    font-size: 24px;
    color: #000;
    margin-top: 32px;
    font-weight: 600;
}

.career-perkItem p{
    font-size: 20px;
    color: #000;
}

.career-quote{
    margin-top: 220px;
    color: #000;
    font-size: 20px;
}

.career-quote p:last-of-type{
    font-style: italic;
}

.career-openPositionsContainer{
    margin-top: 220px;
}

.career-openPositionsContainer h2{
    font-size: 48px;
    font-weight: 600;
    color: #000;
}

.career-openPosition-item > div{
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.career-openPosition-item > div a{
    font-size: 24px;
    font-weight: 600;
}

.career-openPosition-item > div span{
    font-size: 20px;
    color: #000;
}

.career-openPosition-item{
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 32px;
    width: fit-content;
    gap: 30px;
}

.career-openPosition-item-new{
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 32px;
    width: fit-content;
    gap: 30px;
}

.career-openPositions-list{
    display: flex;
    flex-direction: row;
    margin-top: 48px;
    gap: 30px;
}

.career-footer-text{
    font-size: 16px !important;
    color: #fff !important;
    text-align: center;
}

.career-footer-text strong{
    font-weight: 600;
}

.career-footer-content-wrapper{
    gap: 16px;
    width: 70% !important;
}

.career-openPosition-item .primary-button{
    white-space: nowrap;
}

@media only screen and (max-width:991px) {
    .career-header{
        flex-direction: column;
    }
    .career-gallery{
        display: flex;
        flex-direction: column;
    }
    .career-perkList{
        display: flex;
        flex-direction: column;
    }
    .career-openPositions-list {
      flex-direction: column;
    }
    .career-l-btnWrapper{
        flex-direction: column;
    }
    .footer-space-bg.ssl-footer-img{
        object-fit: cover;
    }
    .career-header-left h1, .career-whoWeAre h2, .career-openPositionsContainer h2, .career-openPositions-list{
        font-size: 32px;
    }

    .career-header-left p, .career-perkItem p, .career-quote, .career-openPosition-item > div span{
        font-size: 16px;
    }
    .career-header-left{
        max-width: unset;
    }
    .career-openPosition-item > div a{
        font-size: 20px;
    }

    .career-whoWeAre, .career-gallery, .career-workAtCoderpsace, .career-perks-container, .career-quote, .career-openPositionsContainer{
        margin-top: 85px;
    }
}



