/* :root {
    --font-nunito: "Nunito", sans-serif;
    --font-numans: "Numans", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --text-body: #333;
    --primary-color: #831B24;
    --white: #fff;
    --light-gray: #F8F8F8;
    --light-yellow: rgba(227, 196, 131, 0.20);
    --black-alternate: #1C1C1C;
    --black: #000;
    --transition: all 400ms ease-in-out;
} */

.careers_job_list:not(:last-child){
    margin-bottom: 30px;
}
.careers_job_list{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    background: rgba(249, 243, 230, 0.20);
}


.careers_job_header_part{
    display: flex;
}
.careers_job_header_part .content_left{
    flex-grow: 1;
}
.careers_job_header_part .content_left .job_title{
    color: var(--black-alternate);
    font-family: var(--font-nunito);
    margin-bottom: 20px;
    
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 84.615% */
}
.careers_job_header_part .content_left .jobs_details_wrap{
    display: flex;
    align-items: center;
}
.careers_job_header_part .content_left span{
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white);
    color: var(--black-alternate);
    display: flex;
    align-items: center;
    line-height: 1;
    max-width: max-content;
    padding: 7px 13px;
    font-family: var(--font-numans);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
}
.careers_job_header_part .content_left span:not(:last-child){
    margin-right: 12px;
}
.careers_job_header_part .content_left span::before{
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    margin-right: 8px;
    position: relative;
    top: 0px;
    background-position: 50% center;
}
.careers_job_header_part .content_left span.job_type::before{
    background-image: url(../images/icon_tabler_clock.svg);
}
.careers_job_header_part .content_left span.job_location::before{
    background-image: url(../images/job_location.svg);
}
.careers_job_header_part .content_left span.job_environment::before{
    background-image: url(../images/job_environment.svg);
}
.careers_job_header_part .cta_right{
    flex-shrink: 0;
    margin-left: 50px;
}
.careers_job_header_part .cta_right .btn{
    padding: 15px 23px;
}
.careers_job_header_part .cta_right .btn::after{
    width: 12.806px;
    height: 12.806px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-image: url(../images/icon_arrow_diagonal.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 0px;
    background-position: 50% center;
}
.careers_job_list .careers_job_two_col{
    margin-top: 20px;
    display: flex;
    border-top: 1px solid #D9D9D9;
    padding-top: 20px;
    position: relative;
}

.careers_job_list .careers_job_two_col::before{
    position: absolute;
    background-color: #D9D9D9;
    content: "";
    left: 50%;
    height: calc(100% + 30px);
    width: 1px;
    margin-left: -1px;
    top: 0;
}
.careers_job_list .careers_job_two_col h6{
    color: var(--primary-color);
    font-family: var(--font-nunito);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.56px;
    text-transform: uppercase;
}
.careers_job_list .careers_job_two_col ul{
    padding-left: 20px;
}
.careers_job_list .careers_job_two_col .careers_job_cols_item{
    width: 50%;
}
.careers_job_list .careers_job_two_col .careers_job_cols_item:first-child{
    padding-right: 30px;
}
.careers_job_list .careers_job_two_col .careers_job_cols_item:last-child{
    padding-left: 30px;
}

@media only screen and (max-width: 991px) {
    .careers_job_list {
        padding: 20px 15px;
    }
    .careers_job_header_part {
        flex-direction: column;
    }
    .careers_job_header_part .cta_right {
        margin: 20px 0 0;
    }

    .careers_job_list .careers_job_two_col::before {
        height: calc(100% + 20px);
    }
}
@media only screen and (max-width: 767px) {
    .careers_job_list .careers_job_two_col::before {
        display: none;
    }
    .careers_job_list .careers_job_two_col {
        flex-direction: column;
        align-items: flex-start;
    }
    .careers_job_list .careers_job_two_col .careers_job_cols_item {
        width: 100%;
    }
    .careers_job_list .careers_job_two_col .careers_job_cols_item:last-child,
    .careers_job_list .careers_job_two_col .careers_job_cols_item:first-child{
        padding: 0;
    }

    .careers_job_list .careers_job_two_col .careers_job_cols_item:not(:last-child){
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #D9D9D9;
    }
    .careers_job_header_part .cta_right .btn {
        padding: 13px 20px;
    }

    .careers_job_header_part .content_left .job_title {
        font-size: 22px;
        line-height: 22px;
    }
}