/*
======================
INTRO SECTION
======================
 */
#page-hero .hero-text {
    width: 930px !important;
    flex-basis: 950px !important;
}

/*
======================
FAQ SECTION
======================
 */
#careers-wrapper h2 {
    margin-bottom: 10px;
}

#careers-wrapper p.subtitle {
    margin-bottom: 10px;
}

.accordion .card {
    border-radius: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    border-top: 1px solid #e8d3af;
    border-left: 2px solid #e8d3af;
    border-right: 2px solid #e8d3af;
    border-bottom: 1px solid #e8d3af;

}

.accordion .card-header {
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
}

.accordion .card:first-of-type {
    border-top: 2px solid #e8d3af;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion .card:last-of-type {
    border-bottom: 2px solid #e8d3af;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.accordion .card:first-of-type .card-header {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion {
    margin-bottom: 50px;
    border-radius: 20px;
}

.accordion .card-header button {
    padding: 20px 45px 20px 30px;
    border: none;
    border-top: 0;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    outline: none;
    box-shadow: none;
    text-decoration-line: none;
    font-size: 20px;
    line-height: 24px;
    color: var(--orange);
    font-weight: 500;
    width: 100%;
}

.accordion .card-header button.collapsed {
    color: var(--blue);
}

.accordion .card-header button:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 20px;
    color: var(--orange);
}

.accordion .card-header button:before {
    content: "\f068";
    float: right;
}

.accordion .card-header button.collapsed:before {
    /* symbol for "collapsed" panels */
    content: "\f067";
}

.accordion .card-header button:hover {
    color: var(--orange);
}

.accordion .card-body {
    padding: 15px 30px;
}

.accordion .card-body ul,
.accordion .card-body ol {
    list-style: inherit;
}

.accordion .card-body ul li::marker,
.accordion .card-body ol li::marker {
    color: var(--orange);
}

.card-button {
    margin-bottom: 20px;
}

.card-button .my-button {
    padding: 12px 35px;
}

.card-button .my-button:hover,
.card-button .my-button:focus-within {
    color: var(--orange);
}

/*
==================
SERVICES
==================
 */
#services a {
    color: var(--orange);
}

#services .service-wrapper {
    width: 20%;
    flex-basis: 20%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: 220px;
    flex-basis: 220px;
    max-width: 100%;
}

.logo-wrapper {
    border: 2px solid rgba(225, 145, 109, .5);
    border-radius: 50%;
    margin-bottom: 20px;
}

.logo-wrapper .logo-inner {
    width: 173px;
    flex-basis: 173px;
    height: 173px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 8px;
    background-color: var(--orange);
}

.logo-wrapper .logo-inner .logo {
    width: 120px;
    height: 120px;
    background-color: var(--white);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.service-text-wrapper h5 {
    margin-bottom: 5px;
}

@media (max-width: 1199.9px) {
    #services .service-wrapper {
        width: 33.33%;
        flex-basis: 33.33%;
    }
}

@media (max-width: 767.8px) {
    #services .service-wrapper {
        width: 50%;
        flex-basis: 50%;
    }
}

@media (max-width: 400px) {
    .logo-wrapper .logo-inner {
        width: 140px;
        flex-basis: 140px;
        height: 140px;
    }
}

@media (max-width: 320px) {
    #services .service-wrapper {
        width: 100%;
        flex-basis: 100%;
    }
}