/* hero-section */
.career-hero{
    background-image: url(../../images/career/hero-img.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    min-height: 700px;
}

.career-hero__title{
    margin-bottom: 16px;
}
.our-culture-btn{
    background: #28282C;
    border: 1px solid #3E3E44;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5%;
    height: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
	justify-content:center;
}
/* current-openings */
.form-select.careers__filter {
    width: auto;
    background: #1C1B1B;
    color: #E4E8F1;
    position: relative;
    display: inline-block;
    padding: 13px 10px;
    padding-right: 40px;
    height: 50px;
    border: 1px solid #1C1B1B;
}
.form-select.careers__filter select{
    background: none;
    color: #E4E8F1;
    border: none;
}
.dropdown-toggle:after {
    content: "";
    position: absolute;
    background-image: url(../../images/career/arrow.svg);
    border: none;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    top: 17px;
    right: 16px;
}
.search {
    position: relative;
    color: #8A8F98;
    border: none;
    background: #1C1B1B;
    width: auto;
    float: right;
    border-radius: 6px;
    height: 50px;
}
.search img{
    position: absolute;
    left: 12px;
    top: 16px;
}
input.form-control.careers__search{
    color: #8A8F98;
    border: none;
    background: #1C1B1B;
    padding-left: 40px;
    border: none;
    height: 50px;
}
input.form-control::placeholder{
    color: #8A8F98;
}
ul.dropdown-menu {
    background: #1C1B1B;
    color: #8A8F98;
}
.dropdown-menu li {
    width: 100%;
    display: inline-block;
    padding: 0px 21px;
}
.dropdown-menu a{
    width: 100%;
    color: #8A8F98;

}
ul.dropdown-menu.show {
    display: flex;
    flex-direction: column;
}
.dropdown-item:focus, .dropdown-item:hover{
    background: none;
    color: var(--color-text-secondary);
}
.form-select:focus, .form-control:focus {   
    box-shadow: 0 0 0 .25rem rgb(232 233 233 / 25%);
}
.job-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.job-card {
    background: #FFFFFF0D;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #44474838;
    backdrop-filter: blur(20px);
}
.job-card__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
	align-items:center;
}
.job-card__left {
    display: flex;
    gap: 24px;
	align-items:center;
}
.job-card__title {
    margin-bottom: 8px;
    line-height: 18px;
    color: var(--color-text-primary);
    font-size: 17px;
    font-weight: 500;
}
.job-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
span.job-card__meta-item {
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
button.job-card__button {
    background: #28282C;
    border: 1px solid #3E3E44;
    font-weight: 400;
    color: #E4E8F1;
}
.no-jobs-found p{
    text-align: center;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}

/* job-detail-modal */
.modal-backdrop {
    display: none !important;
    opacity: 0;
}

/* image-viewer */
#image-viewer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}
#image-viewer .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
#image-viewer .modal-content { 
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
#image-viewer .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}
#image-viewer .close:hover,
#image-viewer .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#image-viewer .modal-content {
    padding: 0;
    width: 400px;
    height: 400px;
    object-fit: contain;
}
@media (max-width: 991px) {
    .careers__subtitle br{
        display: none;
    }
}
@media only screen and (max-width: 767px){
    .modal-content {
        width: 100%;
    }
	.career-hero {
    min-height: auto;
        background-color: #090b0c;
        background-image: none;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
}
}
@media (max-width: 575px) {
    .job-detail-modal .modal-dialog, .job-form .modal-dialog{
        max-width: 95%;
    }
    .search {   
        margin-top: 16px;
        width: 100%;
    }
    .job-card{
        padding: 16px;
    }
    .job-card__content{
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }
    .job-card__left{
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .no-jobs-found p{
        font-size: 16px;
        line-height: 24px;
    }
    a.job-card__button{
        width: 100%;
    }
    .job-card__meta{
        flex-wrap: wrap;
    }    
	.career-hero__actions {
    flex-direction: column;
	max-width: 80%;
    margin: auto;
}

}
@media (max-width: 375px) {
    .job-card__meta{
        flex-wrap: wrap;
        justify-content: center;
    }
    .job-card__title{
        text-align: center;       
    }
}