/* Integrated Staffing Styles - Extracted from old site */

/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');

/* ==========================================================================
   BREADCRUMB FIXES
   ========================================================================== */

/* Fix spacing for FontAwesome separator icons */
.bread-container .separator i {
    font-size: .8em;
    margin: 0 .5rem;
    color: #C2D9F4;
}

/* ==========================================================================
   HEADER AREA
   ========================================================================== */

.header-area {
    max-width: 106.666em;
    margin: 0 auto;
}

.header-area.v1 {
    background-color: transparent;
}

.header-area.v1 .sticky-box {
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    transition: transform .5s ease 0s, opacity .5s ease 0s;
    background-color: #FFFFFF;
}

.header-area.v1 .main {
    max-width: calc(100rem + (2.5% * 2)) !important;
    padding-top: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.35rem;
}

/* Logo */
.header-area.v1 .top-logo {
    display: block;
    padding: .75em 3.333em .75em .25em;
    transform: translateY(0);
    transition: transform .5s ease 0s;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
}

.header-area.v1 .top-logo img {
    display: block;
    max-width: 18.84em;
    max-height: 5em;
}

/* Top Bar */
.header-area.v1 .header-box .top-bar {
    color: #282828;
    position: relative;
    padding-bottom: 0.75rem;
}

.header-area.v1 .box-cont {
    text-align: center;
    line-height: 1.2;
}

.header-area.v1 .box-cont .phone-link {
    display: block;
    font-size: 1rem;
    line-height: 2;
    font-weight: 400;
    color: #282828;
    padding: 0 0.95rem;
}

.header-area.v1 .header-box .site-search {
    margin-left: 0.95rem;
    position: relative;
}

.header-area.v1 .header-box .site-search i {
    font-size: 1.2em;
    color: #326295;
}

.header-area.v1 .header-box .site-search:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 165%;
    height: 165%;
    border-radius: 50%;
    border: 3px solid #326295;
    opacity: 0;
    transition: .4s ease 0s;
}

.header-area.v1 .header-box .site-search:hover:before,
.header-area.v1 .header-box .site-search:focus:before {
    opacity: 1;
}

/* Navigation Bar */
.header-area.v1 .header-box .nav-bar {
    padding-top: 0.25rem;
    position: initial;
    border-top: 3px solid #83AAD5;
}

.header-area.v1 .top-nav .desktop-nav {
    padding-bottom: 1.15rem;
}

.header-area.v1 .top-nav > ul > li > a {
    text-align: center;
    padding: .75rem 0;
    margin: 0 2.825rem;
    width: 100%;
    opacity: 1;
    line-height: 1.45;
    font-weight: 700;
    outline: none;
}

.header-area.v1 .top-nav > ul > li > a:hover,
.header-area.v1 .top-nav > ul > li > a:focus {
    text-decoration: underline;
}

.header-area.v1 .top-nav > ul > li:first-child > a {
    padding-left: 0;
    margin-left: 0;
}

.header-area.v1 .top-nav > ul > li:last-child > a {
    margin-right: 0;
}

/* Dropdown Fly-out Menu */
.header-area.v1 .fly-out {
    background-color: #FFFFFF;
    position: absolute !important;
    width: 80%;
    left: 50%;
    transform: translatex(-50%);
    top: calc(100% - 3rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease 0s;
    max-height: 75vh;
    overflow: hidden;
    z-index: -2;
    border-radius: 4px;
    box-shadow: 0px 9px 16px 0px rgba(0,0,0,0.19);
    margin-top: 0;
    min-width: unset !important;
    border: none !important;
}

.fly-out.wide ul {
    padding-top: 1.0556em;
    padding-bottom: 1.0556em;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.fly-out.wide li.level-1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: 50%;
}

.fly-out.wide li.level-1 a {
    font-size: 1em;
    font-weight: 700;
    transition: color .4s ease 0s, background-color .4s ease 0s;
    padding: .889em .722em .944em 0.3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.45;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
    outline: none;
}

.fly-out.wide li.level-1:hover a,
.fly-out.wide li.level-1:focus a {
    text-decoration: underline;
    color: #282828;
}

/* Hover dropdown styles for desktop */
@media screen and (min-width:1025px) {
    .fly-out.el-panel {
        display: block !important;
    }

    .header-area.v1 .top-nav li:hover div.fly-out.el-panel,
    .header-area.v1 .top-nav li.open div.fly-out.el-panel,
    .header-area.v1 .top-nav li.focused div.fly-out.el-panel,
    .header-area.v1 .top-nav li.active div.fly-out.el-panel,
    .header-area.v1 .top-nav li:focus-within div.fly-out.el-panel {
        opacity: 1;
        pointer-events: auto;
        transition: opacity .5s ease 0s;
        z-index: 1;
        visibility: visible;
    }

    .no-touch .header-area.v1 .top-nav li:hover div.fly-out.el-panel {
        opacity: 1;
        pointer-events: auto;
        transition: opacity .5s ease 0s;
        z-index: 1;
        visibility: visible;
    }

    .fly-out.el-panel > div {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 2rem;
        padding-right: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Mobile Menu Button */
.header-area.v1 .menu-btn.mobile {
    width: 2.25em;
    height: 2.25em;
    display: none;
    transition: transform .5s ease 0s;
    position: relative;
    margin: .5em .25em;
}

.header-area.v1 .menu-btn.mobile span {
    position: absolute;
    width: 2.25em;
    height: 3px;
    top: 50%;
    left: 50%;
    transition: margin 0.3s ease 0.3s, opacity 0s 0.3s, transform 0.3s ease, background-color 0.3s ease 0s;
    transform: translate(-50%,-50%);
    background-color: #0F3864;
}

/* ==========================================================================
   BASE LAYOUT CLASSES
   ========================================================================== */

/* Main container */
.main {
    width: 100%;
    margin: 0 auto;
    max-width: calc(69.73rem + (2.5% * 2));
    padding-left: 2.5%;
    padding-right: 2.5%;
    position: relative;
}

.main.wide {
    max-width: calc(91.1rem + (2.5% * 2));
}

/* Picture/Image positioning */
picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    transform: translate(-50%,-50%);
    min-height: calc(100% + 1px);
    object-fit: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==========================================================================
   MAIN CONTENT SECTIONS
   ========================================================================== */

.staff .main {
    max-width: calc(69.96rem + (2.5% * 2));
}

/* Mainstage Section */
.staff.mainstage.v1 {
    padding: 2.4rem 0 3.5rem;
    position: relative;
    width: 94.6%;
    margin: 0 auto;
}

.staff.mainstage.v1 > picture {
    overflow: hidden;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.staff.mainstage.v1 .main-cont {
    max-width: calc(68.83rem + (2.5% * 2));
    position: relative;
    z-index: 2;
}

.staff.mainstage.v1 .info {
    width: 55%;
    position: relative;
    z-index: 1;
}

.staff.mainstage.v1 .info strong {
    display: block;
    font-size: 3.34rem;
    line-height: 1.464;
    font-weight: 300;
    color: #F4F4F4;
}

.staff.mainstage.v1 .info .title-style-2 {
    color: #F4F4F4;
    padding-top: 0.4rem;
}

.staff.mainstage.v1 .info p {
    color: #F4F4F4;
    margin-top: 0.15rem;
    margin-bottom: 1.1rem;
}

.staff.mainstage.v1 .info .btn.v1 {
    background-color: transparent;
    color: #0F3864;
}

.staff.mainstage.v1 .info .btn.v1:hover,
.staff.mainstage.v1 .info .btn.v1:focus {
    background-color: #FFFFFF;
}

/* Who We Hire Section */
.who-staff:not(.no-padding) {
    padding-top: 6.05rem;
}

.who-staff .left-sd {
    width: 31.71%;
}

.who-staff .left-sd picture:not(.img) {
    position: relative;
    height: 0;
    padding-bottom: 91.5%;
    border-radius: 8px;
}

.who-staff .right-sd {
    width: 66.13%;
}

.who-staff .right-sd .title-style-1 {
    padding-bottom: 0.7rem;
}

.who-staff .right-sd p {
    margin-top: 0.5rem;
    margin-bottom: 1.3rem;
}

.who-staff .right-sd .btn.v1 {
    background-color: #FFFFFF;
    color: #0F3864;
}

.who-staff .right-sd .btn.v1:hover,
.who-staff .right-sd .btn.v1:focus {
    background-color: #0F3864;
    color: #FFFFFF;
}

.who-staff .right-sd .lft,
.who-staff .right-sd .rht {
    width: 46%;
}

.who-staff .right-sd .rht {
    position: relative;
}

.who-staff .right-sd .rht:before {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 98.6%;
    background-color: #326295;
    border-radius: 5px;
}

/* How Does It Work Section */
.staff-ctas:not(.no-padding) {
    padding-top: 2.2rem;
    padding-bottom: 5rem;
}

.staff-ctas .title-style-1 {
    padding-bottom: 1.5rem;
}

.staff-ctas a {
    width: 31.733%;
    padding: 10px;
    z-index: 1;
}

.staff-ctas a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(320deg, rgba(0,105,60,1) 0%, rgba(50,98,149,1) 100%);
    z-index: -1;
    border-radius: 8px;
}

.staff-ctas a > div {
    background-color: #FFFFFF;
    height: 100%;
    border-radius: 8px;
    padding: 1.35rem 1.2rem;
}

.staff-ctas a .title-style-2 {
    font-size: 2.34rem;
    line-height: 0.95;
    padding-bottom: 0.8rem;
}

.staff-ctas a .title-style-4 {
    font-size: 1.78rem;
    line-height: 1.25;
    font-weight: 400;
    padding-bottom: 0.15rem;
}

.staff-ctas a .txt {
    font-size: 1.12rem;
    line-height: 2;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn.v1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.23rem;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0.51em 1.32em;
    background-color: #0F3864;
    color: #FFFFFF;
    text-align: center;
    border-radius: 2px;
    border: 3px solid #0F3864;
}

.btn.v1:hover,
.btn.v1:focus,
a:hover .btn.v1,
a:focus .btn.v1 {
    background-color: #FFFFFF;
    color: #0F3864;
}

.btn.v2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.23rem;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 700;
    text-transform: capitalize;
    padding: 0.51em 1.32em;
    background-color: #FFFFFF;
    color: #282828;
    text-align: center;
    border-radius: 2px;
    border: 3px solid #282828;
}

.btn.v2:hover,
.btn.v2:focus,
a:hover .btn.v2,
a:focus .btn.v2 {
    background-color: #282828;
    color: #FFFFFF;
}

/* ==========================================================================
   TYPOGRAPHY / TITLE STYLES
   ========================================================================== */

.title-style-1 {
    font-size: 2.23rem;
    line-height: 1.35;
    font-weight: 700;
    font-style: normal;
    color: #282828;
}

.title-style-2 {
    font-size: 1.8rem;
    line-height: 1.24;
    color: #326295;
    font-weight: 400;
    font-style: normal;
    display: block;
}

.title-style-3 {
    font-size: 1.45rem;
    line-height: 1.23;
    font-weight: 600;
    font-style: normal;
    color: #282828;
    display: block;
}

.title-style-4 {
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 300;
    font-style: normal;
    color: #282828;
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer.v1 {
    background-color: #0F3864;
    padding: 4.55rem 0 3.45rem 0;
}

.footer.v1 .main {
    z-index: 3;
    max-width: calc(93.13rem + (2.5% * 2));
}

.footer.v1 .footer-info {
    width: 100%;
}

.footer.v1 .footer-info .contact-info {
    min-width: 0;
}

.footer.v1 .footer-info .contact-info span {
    color: #FFFFFF;
}

.footer.v1 .footer-info .schema-info .location-info {
    line-height: 1.22;
    font-size: 1.28rem;
    font-weight: 300;
    padding-top: 0.9rem;
}

.footer.v1 .footer-info .location-info span {
    color: #FFFFFF;
}

.footer.v1.staff .footer-info .schema-info {
    width: 100%;
}

.footer.v1.staff .main {
    max-width: calc(69.96rem + (2.5% * 2));
}

.footer.v1.staff .footer-info .schema-info .location-info {
    padding-top: 0;
}

.footer.v1 .bottom-logo img {
    max-width: 18.84em;
    max-height: 5em;
    display: block;
    margin: 0 auto 1rem;
}

.footer.v1 .footer-info .schema-info .social-info {
    padding-top: .95em;
}

.footer.v1 .footer-info .schema-info .social-info li {
    margin-right: 1rem;
}

.footer.v1 .footer-info .schema-info .social-info li:last-of-type {
    margin-right: 0;
}

.footer.v1 .footer-info .schema-info .social-info a {
    font-size: .85rem;
    transition: .4s ease 0s;
    color: #FFFFFF;
    background-color: #0F3864;
    padding: .35rem;
    border-radius: 100%;
}

.footer.v1 .footer-info .social-info a:hover,
.footer.v1 .footer-info .social-info a:focus {
    transform: scale(1.15);
}

.footer.v1 .social-info li a svg {
    font-size: 1.12rem;
}

.footer.v1 .footer-info .schema-info .social-info {
    justify-content: center;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 1440px) {
    .footer.v1.staff .footer-info .schema-info {
        display: block;
        text-align: center;
    }

    .footer.v1.staff .footer-info .schema-info > div:not(:last-child) {
        padding-bottom: 1rem;
    }
}

@media (max-width: 1280px) {
    .footer.v1 .footer-info {
        padding: 2em;
    }

    .footer.v1 .footer-info .footer-nav ul li a {
        padding: .5em 1em 1em 0;
    }

    .footer.v1.staff {
        padding-top: 1.55rem;
        padding-bottom: 0.45rem;
    }
}

@media (max-width: 1024px) {
    .footer.v1 {
        padding: 1.5em 0;
    }

    .footer.v1 .footer-info {
        flex-wrap: wrap;
    }

    .footer.v1 .footer-info > * {
        width: 100%;
    }

    .footer.v1 .footer-info .schema-info .business-info {
        padding-top: 0;
    }

    .footer.v1 .footer-info .schema-info {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer.v1 .footer-info .schema-info .social-info {
        justify-content: center;
    }
    .flex-between-reverse-block-1024 {
        flex-direction: column-reverse;
    }

    .flex-between-block-1024 {
        flex-direction: column;
    }

    .who-staff .right-sd .lft,
    .who-staff .right-sd .rht {
        width: 100%;
    }

    .who-staff .right-sd .lft {
        padding-bottom: 2rem;
    }

    .who-staff:not(.no-padding) {
        padding-top: 1.15rem;
        padding-bottom: 1rem;
    }

    .who-staff .left-sd {
        margin-top: 1.9rem;
        width: 78.6%;
    }

    .who-staff .right-sd {
        width: 100%;
    }

    .staff.mainstage.v1 .info {
        width: 100%;
    }

    .staff.mainstage.v1 .info strong {
        color: #00699c;
    }

    .staff.mainstage.v1 .info .title-style-2 {
        color: #00699c;
    }

    .staff.mainstage.v1 .info p {
        color: #282828;
    }

    .staff.mainstage.v1 {
        padding-bottom: 1.5rem;
        padding-top: 0rem;
    }
}

@media (max-width: 800px) {
    .staff.mainstage.v1 .info strong {
        font-size: 2.31rem;
        line-height: 1.11;
    }

    .header-area.v1 .menu-btn.mobile {
        display: flex;
        margin-left: auto;
    }

    .footer.v1.staff .footer-info .schema-info > div:not(:last-child) {
        padding-bottom: 1.5rem;
    }
}
