
.job-opportunities {
    padding: 72px 0 0;
}

.faq-item-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.faq-item:hover h4 {
    display: inline-block;
}

.faq-item-heading h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;
    width: calc(100% - 50px);
    width: fit-content;
    text-decoration: underline;
    text-decoration-color: rgba(47, 71, 114, 0.51);
    text-decoration-thickness: 1px;

}

.faq-item-heading span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 61px;
    box-shadow: 0px 2px 2px 0px rgba(47, 71, 114, 0.1);
    background-color: #ffffff;
}

.faq-item-heading span i {
    font-size: 17px;
    color: var(--blue);
}

.faq-item {
    padding-block: 32px;
    border-bottom: 1px solid rgba(47, 71, 114, 0.3);
    cursor: pointer;
}

.faq-item .faq-content {

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active .faq-content {
    max-height: 1000px;
}

.faq-item p {
    font-size: 18px;
    padding-top: 30px;
}

.faq-item.active i:before {
    content: "\f068";
}

.faq-item i:before {
    transition: 0.3s all ease-in-out;
}

.faq-content a {
    display: inline-block;
    width: 320px;
    max-width: 100%;
    margin-top: 36px;
    text-align: center;
}

.no-job-row {
    padding: 80px;
    border: 3px solid var(--light-blue);
    border-radius: 20px 20px 60px 20px;
    margin-top: 8px;
    background-color: var(--light-blue);
}

.no-job-row p:first-of-type {
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}

.hide-element h2 {
    display: none;
}

.job-opportunities.hide-element {
    padding-bottom: 72px;
}

@media(max-width: 1200px) {
    .no-job-row a {
        padding: 20px 40px;
    }
}

@media(max-width: 991px) {
    .no-job-row {
        padding: 40px;
        text-align: center;
        border: none;
    }

    .no-job-row a {
        margin: 40px auto 0;
    }

    .job-opportunities h2 {
        text-align: center;
    }

    .no-job-row p:first-of-type {
        margin-bottom: 20px;
    }
}

@media(max-width: 575px) {

    .job-opportunities {
        padding: 40px 0 0;
    }
}