/* openings */

.opening_box {
    background-color: whitesmoke;
    border: 1px solid #ccc;
    height: 93%;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 24px;
}

.opening_box__flex {
    display: flex;
    gap: 1rem;
}

.opening_box__flex p {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 3px 12px;
    border-radius: 100px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.opening_box span {
    background: linear-gradient(45deg, #06D3F9, #C342F8);
    padding: 3px 1rem;
    border-radius: 100px;
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
}
.job-form input,
.job-form .form-select {
    width: 100%;
    border: 1px solid #ccc !important;
    margin-bottom: 12px;
    padding: 7px;
    outline: none !important;
    color: var(--black-color);
    font-weight: 500;
    outline: none !important;
}

.opening_box h3 {
    font-weight: 600;
    margin-top: 12px;
    font-size: 24px;
    text-transform: capitalize;
}

.opening_box p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 8px;
}

.opening_box a {
    display: flex;
    margin-top: 12px;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--main-color);
}

.opening_box a i {
    font-size: 22px;
}

.opening_box a:hover {
    color: var(--blue-color);
}

.career_details__content h3 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1rem !important;
}

.career_details__content ul li {
    margin-bottom: 1rem;
}

@media(max-width:768px){
    .career_details__content h3{
        font-size: 18px;
        margin-top: 12px;
        margin-bottom: 8px !important;
    }
    .opening_box h3{
        font-size: 18px;
    }
    .opening_box__flex{
        gap: 12px;
    }
    .opening_box__flex p{
        font-size: 13px;
    }
    .career_details__content ul li{
        margin-bottom: 8px;
        font-size: 14px;
    }
    .opening_box{
        padding: 20px 1rem;
    }
}