/* Montserrat font import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --brand-colour1: #51645a;
  --brand-colour2: #486877;
  --brand-colour3: #000;
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    background-color: #fff;
    height: 200vh;
    position: relative;
}

body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.3s all ease;
    
    transition: 0.3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}

body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
}

p {
    color: #b3b3b3;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  	background-position: 50% 65%;
    height: 550px;
}


/* Header */

header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 0px 0;
}

@media (min-width: 768px) {
    header {
        padding: 12px 0 30px 0;
    }
}

header .navbar-brand {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 2rem;
}

header .navbar-brand.absolute {
    position: absolute;
}

@media (max-width: 100.98px) {
    header .navbar-brand.absolute {
        position: relative;
    }
}

header .navbar-brand span {
    color: #fff;
}

@media (min-width: 768px) {
    header .navbar-brand span {
        color: #ced4da;
    }
}

header .navbar {
    background: black !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    header .navbar {
        padding-top: 0;
        padding-bottom: 0;
        background: none !important;
        position: relative;
    }
}

header .navbar a.nav-link:not(.existing-applicant-btn),
header .navbar a.nav-link:not(.existing-applicant-btn):active,
header .navbar a.nav-link:not(.existing-applicant-btn):visited {
    padding: 1.7rem 1rem;
    outline: none !important;
    font-size: 1.2rem;
    color: #fff !important;
    font-weight: 800;
    text-shadow: 2px 1px 3px rgba(42, 42, 46, .95);
}
@media (min-width: 992px) and (max-width: 1299.8px) {
    header .navbar a.nav-link:not(.existing-applicant-btn),
    header .navbar a.nav-link:not(.existing-applicant-btn):active,
    header .navbar a.nav-link:not(.existing-applicant-btn):visited,
    header .navbar a.nav-link:not(.existing-applicant-btn):hover,
    header .navbar a.nav-link:not(.existing-applicant-btn):focus {
        font-size: 0.9rem;
    }
}
header .navbar a.nav-link:not(.existing-applicant-btn):hover,
header .navbar a.nav-link:not(.existing-applicant-btn):focus {
    background-color: rgb(255 255 255 / 6%);
}

@media (max-width: 1199.98px) {
    header .navbar .nav-link {
        padding: 0.5rem 0rem;
    }
}

header .navbar .dropdown-menu {
    font-size: 14px;
    border-radius: 4px;
    border: none;
    -webkit-box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.2);
    min-width: 13em;
    margin-top: -15px;
    padding: 0.3rem 0.4rem;
}

header .navbar .dropdown-menu:before {
    bottom: 100%;
    left: 10%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-bottom-color: #fff;
    border-width: 8px;
}

@media (max-width: 991.98px) {
    header .navbar .dropdown-menu:before {
        display: none;
    }
}

header .navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(72, 104, 119, .81);
    font-weight: 600;
    color: #fff;
    border-radius: 5px;
}

header .navbar .dropdown-menu .dropdown-item.active {
    background: #A9A89E;
    font-weight: 600;
    color: #fff;
}

header .navbar .dropdown-menu a,
header .navbar .dropdown-menu a:active,
header .navbar .dropdown-menu a:visited,
header .navbar .dropdown-menu a:hover,
header .navbar .dropdown-menu a:focus {
    color: var(--bs-dropdown-link-color);
    padding-top: 7px;
    padding-bottom: 7px;
    font-weight: 600;
}

/* header .navbar .cta-btn a,
header .navbar .cta-btn a:active,
header .navbar .cta-btn a:visited,
header .navbar .cta-btn a:hover,
header .navbar .cta-btn a:focus {
    background: #5C8699;
    border-radius: 8px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 15px 20px !important;
    line-height: 1;
    font-weight: bold;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
} */

/* header .navbar .cta-btn a:hover {
    background: #fff;
    color: #5C8699 !important;
    -webkit-box-shadow: 2px 0 30px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 0 30px -5px rgba(0, 0, 0, 0.2);
} */

/* Logo */

img.brand-logo {
    width: 100%;
    min-width: 150px;
    max-width: 225px;
    padding: 0px 30px 0px 0;
}
@media (max-width: 1299.8px) {
  img.brand-logo {
      padding: 0;
  }
}
@media (max-width: 991.8px) {
  img.brand-logo {
      min-width: auto;
      max-width: 150px;
  }
}
@media (max-width: 767.8px) {
  img.brand-logo {
      min-width: auto;
      max-width: 100px;
  }
}

/* Typography */

body,
p,
li {
    color: #333;
    font-weight: 400;
}

a {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.page-body a,
.page-body a:visited {
  color: #333333;
  text-decoration: underline;
}
.block-job-search-results a,
.block-job-search-results a:visited {
    color: #333333;
    text-decoration: none;
}
.block-job-search-results a:hover {
    text-decoration: underline !important;
}
@media (min-width: 768px) and (max-width: 991.8px) {
  .navbar-nav.navbar-main {
      justify-content: space-evenly !important;
  }
  header .navbar a.nav-link:not(.existing-applicant-btn) {
    padding: 1.7rem 1rem;
    outline: none !important;
  }
}
@media (max-width: 991.8px) {
    .navbar-nav.navbar-main {
      width: 85%;
      padding-left: 0 !important;
    }
}
@media (min-width: 992px) {
    .navbar-nav.navbar-main {
      width: 100%;
      padding-left: 1rem !important;
  }
}
@media (min-width: 1200px) {
  .navbar-nav.navbar-main {
      width: 75%;
      justify-content: space-evenly !important;
  }
}

/* Navigation */
.nav-link {
    padding: 20px 15px 12px 15px;
}

.dropdown-menu {
    border-radius: 5px;
    padding: 0;
    margin: 0;
    background-color: #f6f6f4;
}
/*** change dropdown triangle to caret ***/
.dropdown-toggle::after {
    font: var(--fa-font-solid);
    content: "\f107"!important;
    display: inline-block;
  	font-size: small;
    border: none;
  	vertical-align: middle;
    margin-left: 0.4em;
}
.dropdown-item:hover {
    text-decoration: none;
    background-color: #edede9;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (max-width: 991.8px) {
  header .navbar {
    background: transparent !important;
  }
  .navbar-collapse,
  .navbar-collapse.show {
      background-color: #316891;
  }
}
  
/* Primary Title */

@media only screen and (max-width: 768px) {
    .hero-img-text-overlay h1 {
        font-size: 1.7em;
    }
}


/* Buttons */

.btn {
    font-weight: 600;
}
/* BUTTON1 */
a.button.button1,
a.button.button1:active,
a.button.button1:visited {
    display: inline-block;
    background-color: #5C8699 !important;
    border: 2px solid #5C8699 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
a.button.button1:hover,
a.button.button1:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #5C8699 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #5C8699 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
/* BUTTON2 */
a.button.button2,
a.button.button2:active,
a.button.button2:visited {
    display: inline-block;
    background-color: #D94E47 !important;
    border: 2px solid #D94E47 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
a.button.button2:hover,
a.button.button2:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #D94E47 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #D94E47 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
/* BUTTON3 */
a.button.button3,
a.button.button3:active,
a.button.button3:visited {
    display: inline-block;
    background-color: #51645A !important;
    border: 2px solid #51645A !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
a.button.button3:hover,
a.button.button3:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #51645A !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #51645A !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
/* BUTTON4 */
a.button.button4,
a.button.button4:active,
a.button.button4:visited {
    display: inline-block;
    background-color: #678C79 !important;
    border: 2px solid #678C79 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
a.button.button4:hover,
a.button.button4:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #678C79 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #678C79 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem;
}
.btn-primary,
.btn-primary:active,
.btn-primary:visited {
    border: 1px solid #486877;
    background: transparent;
    color: #486877!important;
    border-radius: 5px;
    width: 105px;
    margin-right: -12px;
    margin-left: 15px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
    border: 1px solid #486877;
    background-color: #486877;
    color: #fff!important;
}
.btn-primary:active {
    background-color: #486877 !important;
    color: #fff !important;
    border-color: #486877 !important;
}

/* see all open positions button */

.hero-img-text-overlay .button1 {
    background-color: #51645A !important;
    border-radius: 12px;
    border: none !important;
    float: left;
    margin-left: 105px;
    margin-top: 15px;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.06rem;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    -webkit-transition: all .2s linear !important;
    transition: all .2s linear !important;
}

.hero-img-text-overlay .button1:hover {
    background-color: #51645A !important;
    box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
    transform: scale(1.05);
}


/* Footer */

footer {
    background-color: #f8f9fa;
    padding: 30px 0;
}
footer .sociallinks {
    margin-top: 1rem;
    margin-left: -10px;
}

footer .sociallinks>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

footer .bottom-footer li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}


/* Container width class */

.hero-img-text-overlay .block-image-text {
    padding-right: 15px;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    top: 330px;
    left: 225px;
}

.hero-img-text-overlay .block-image-text img {
    margin-left: 11px;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .hero-img-text-overlay .block-image-text {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .hero-img-text-overlay .block-image-text {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .hero-img-text-overlay .block-image-text {
        width: 1170px;
    }
}


/* FOOTER CSS  */

.site-footer {
    background-color: #ECECE9;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #486877;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: #486877;
}

.site-footer a:hover {
    color: #486877;
    text-decoration: none;
    font-weight: 600;
}

.footer-column-2 {
    padding-left: 100px;
}

.footer-column-3 {
    padding-left: 100px;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #486877;
    text-decoration: none;
    font-weight: 600;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #4C4B43;
    color: #EDEDE9;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998;
    transform: scale(1.1);
}

.social-icons a.twitter:hover {
    background-color: #00aced;
    transform: scale(1.1);
}

.social-icons a.linkedin:hover {
    background-color: #007bb6;
    transform: scale(1.1);
}
.social-icons a.youtube:hover {
    background-color: #ff0000;
    transform: scale(1.1);
}

.social-icons a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: scale(1.1);
}
.fa.fa-instagram {
  font-size: 1.3rem;
  vertical-align: middle;
}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
}


/* END FOOTER CSS  */


/* JOB SEARCH RESULTS CSS  */

.job-search-results ul {
    font-weight: 400;
}

.job-search-results a {
    color: #486877;
    font-weight: 600;
}
.job-search-results a:hover {
    text-decoration: underline !important;
}

.badge {
    background-color: #486877;
}

.btn-success,
.btn-success:hover,
.btn-success:visited,
.btn-success:active,
.btn-success:focus {
    background-color: #486877 !important;
    border: 1px solid #486877 !important;
    border-radius: 5px;
    width: 105px;
}
.btn-info,
.btn-info:visited,
.btn-outline-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:visited {
    background-color: #fff;
    color: #486877;
    border: 1px solid #486877;
    border-radius: 5px;
    font-weight: 700;
}
.btn-info:hover {
    background-color: #486877;
    color: #fff;
    border: 1px solid #486877;
}
.btn-info span {
    color: #486877;
    font-weight: 700;
}
.btn-info:hover span {
    color: #fff;
    font-weight: 700;
}
.btn-info:active,
.btn-info:focus {
    background-color: #fff !important;
    background: #fff !important;
    color: #486877 !important;
    border: 1px solid #486877 !important;
    border-radius: 5px;
    font-weight: 700;
}
.btn-info:active span {
    color: #486877 !important;
}
.block-job-search-results .job-search-results table {
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    .block-job-search-results .job-search-results .job-search-collapse {
        font-size: 16px;
    }
}


/* ------------------------------ */


/* override filter groups column width  */

.block-job-search-results .job-search-results .job-search-filter-groups {
    width: auto;
}

.job-search-filter-groups {
    background-color: #EDEDE9;
    padding-left: 36px !important;
    padding-right: 36px !important;
    border-radius: 8px;
}

.job-search-filter-categories {
    background-color: #F6F6F4;
    padding: 8px;
    margin: 0px -20px 30px -20px;
    /* border-radius: 8px; */
}

.job-search-filter-departments {
    background-color: #F6F6F4;
    padding: 8px;
    margin: 0px -20px 30px -20px;
    /* border-radius: 8px; */
}

.job-search-filter-employment-types {
    background-color: #F6F6F4;
    padding: 8px;
    margin: 0px -20px 30px -20px;
    /* border-radius: 8px; */
}

.job-search-filter-cities {
    background-color: #F6F6F4;
    padding: 8px;
    margin: 0px -20px 30px -20px;
    /* border-radius: 8px; */
}
/* Custom search category filter: Brand */
.job-search-filter-dropdown-field-1-values {
    background-color: #F6F6F4;
    padding: 8px;
    margin: 0px -20px 30px -20px;
  /* border-radius: 8px; */
}

.job-search-control input {
    border-radius: 5px !important;
    border: 1px solid rgba(80, 86, 86, 0.5);
    height: 50px;
}

.job-search-control button {
    height: 50px;
}

.job-search-results-card {
    border-radius: 8px;
    border: 8px solid rgba(246, 246, 244, 1);
}
@media (min-width: 768px) {
  .job-search-results-card-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
    .navbar {
        height: auto;
    }
}

.side-panel {
  background: transparent;
  padding: 1em;
  background-color: #f5fafc;
  margin-bottom: 30px;
  border-radius: 3px;
  margin-bottom: 30px;
}

@media (min-width: 767px) {
  .block-posts .post h3.post-title,
  .side-panel h3 {
    font-size: 21px;
  }
}

/*** THEME TWO JOB DESCRIPTION PAGE STYLES ***/

.theme-two-apply-now-btn {
    margin-bottom: 60px;
}

.theme-two-apply-now-btn .button {
    background-color: #486877 !important;
    color: white !important;
    border: 2px solid rgba(80, 86, 86, 0.5) !important;
    border-radius: 8px;
    font-weight: 700 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.theme-two-apply-now-btn .button:hover {
    background-color: #fff !important;
    color: #486877 !important;
    border: 2px solid #486877 !important;
    border-radius: 8px;
    font-weight: 700 !important;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.theme-two-side-panel {
    background-color: #f3f3f3;
    border: 4px solid #ebebeb;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991.8px) {
  .theme-two-side-panel {
      padding: 30px 0.75rem;
  }
  .theme-two-side-panel .form-template,
  .theme-two-side-panel .form-group .candidate-referral-fields .row {
      display: flex;
      flex-direction: column;
  }
  .theme-two-side-panel .form-group {
      width: 100% !important;
  }
  .theme-two-side-panel .form-group .candidate-referral-fields .row .col-md-6 {
      width: 100%;
  }
  .theme-two-side-panel :is(h2, h3) {
      font-size: 1.25rem;
  }
}

.theme-two-side-panel input {
    border-radius: 5px;
}

.theme-two-side-panel .btn {
    background-color: #486877;
    color: #fff !important;
  	width: 200px;
    font-weight: 700;
    letter-spacing: .1em;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.theme-two-side-panel .btn:hover {
    background-color: #fff;
    border: 1px solid rgba(80, 86, 86, 0.5);
    color: #486877 !important;
    font-weight: 700;
    letter-spacing: .1em;
}

@media (min-width: 768px) and (max-width: 991.8px) {
  .theme-two-side-panel .btn {
      width: auto;
  }
  .theme-two-side-panel .block-jobs .job {
      margin-bottom: 1rem;
  }
}

.theme-two-job-description {
    padding-right: 2.2em;
}

.theme-two-job-description .job-title {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: .03rem;
}
.block-job-description .job-description-controls .btn {
    padding: 7px 10px !important;
    line-height: normal;
}
.theme-two-job-description .btn,
.theme-two-job-description .btn:active,
.theme-two-job-description .btn:visited,
.theme-two-job-description .btn:focus {
    background-color: #486877;
    color: #fff !important;
    margin-left: 0;
    margin-right: 15px;
    padding: 7px 10px !important;
    line-height: normal;
    text-decoration: none;
    height: 45px;
}

.theme-two-job-description .btn:hover {
    background-color: #fff;
    color: #486877 !important;
    /* border: 1px solid rgba(80, 86, 86, 0.5); */
    margin-left: 0;
    margin-right: 15px;
    padding: 7px 10px !important;
    line-height: normal;
    text-decoration: none;
}
.theme-two-job-description .btn:focus {
    outline: 1px dashed;
    outline-offset: -4px;
    border: 1px solid rgba(80, 86, 86, 0.5);
    background-color: #486877 !important;
    color: #fff !important;
}
.theme-two-job-description .btn:focus span {
    color: #fff !important;
}
.theme-two-job-description .favourites-button-text.favourited {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
/* 'Favorited' button text label change --> 'Favorite Added' */
/* .theme-two-job-description .favourites-button-text span.favourited-text {
    visibility: hidden !important;
}
.theme-two-job-description .favourites-button-text span.favourited-text::before {
    visibility: visible;
    display: inline-block;
    content: 'Favorite Added';
    position: relative;
    top: 7px;
    left: 7px;
    text-align: left;
} */
.theme-two-ready-to-apply {
    background-color: #fff;
}

.theme-two-ready-to-apply h2 {
    font-weight: 700;
    letter-spacing: .03rem;
}

.theme-two-ready-to-apply input {
    border-radius: 5px;
}

.theme-two-ready-to-apply .btn {
    background-color: #486877 !important;
    color: #fff !important;
    margin-left: 0;
}

.theme-two-ready-to-apply .btn:hover {
    border: 1px solid rgba(80, 86, 86, 0.5);
    background-color: #fff !important;
    color: #486877 !important;
    font-weight: 700;
}

.theme-two-side-panel h2 {
    font-weight: 700;
    letter-spacing: .03rem;
}

.theme-two-side-panel .job-title {
    color: #486877 !important;
    font-weight: 600;
    letter-spacing: .03rem;
}

.theme-two-side-panel .job-title:hover {
    text-decoration: underline;
}

.theme-two-side-panel .job-department {
    font-weight: 700;
    letter-spacing: .03rem;
}
.selectize-control.multi .selectize-input>div {
    background-color: #486877 !important;
}
/* referral link in apply-cta styling */
a#referral_link {
    display: flex;
    justify-content: center;
    color: #003A66 !important;
    font-weight: 600;
    padding: 0 0 0.8rem;
}
/* top-nav applicant login button */
.existing-applicant-btn,
.existing-applicant-btn:active,
.existing-applicant-btn:visited {
    display: inline-block;
    background-color: #5C8699 !important;
    border: 2px solid #5C8699 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}
.existing-applicant-btn:hover,
.existing-applicant-btn:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #fff !important;
    border-radius: 5px;
    color: #5C8699 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}
/* top-nav my settings button */
.my-settings-btn,
.my-settings-btn:active,
.my-settings-btn:visited {
    display: inline-block;
    background-color: #D94E47 !important;
    border: 2px solid #D94E47 !important;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}
.my-settings-btn:hover,
.my-settings-btn:focus {
    display: inline-block;
    background-color: #fff !important;
    text-decoration: none;
    border: 2px solid #fff !important;
    border-radius: 5px;
    color: #D94E47 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}
@media (min-width: 992px) and (max-width: 1199.8px) {
  .cta-btn-container {
      flex-direction: column !important;
  }
  .my-settings-btn,
  .my-settings-btn:active,
  .my-settings-btn:visited,
  .my-settings-btn:hover,
  .my-settings-btn:focus {
      width: 90%;
  }
}
.cta-btn {
  white-space: nowrap;
}
@media (max-width: 991.8px) {
  .cta-btn {
    width: 85%;
    margin: 0 auto;
  }
  .existing-applicant-btn,
  .my-settings-btn {
    display: flex !important;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  .my-settings-btn .fa-cog {
    line-height: inherit;
    margin-right: 0.2rem;
  }
}
@media (min-width: 1200px) {
  .theme-two-nav-container {
    margin: auto;
  }
}
@media (min-width: 1400px) {
  .theme-two-nav-container {
    margin: auto 3rem;
  }
}
@media (min-width: 1675px) {
  .theme-two-nav-container {
    margin: auto 10rem;
  }
}

/* JOB SEARCH CATEGORY NAME OVERRIDE */
/* Department --> Division */
.job-search-filter-header.departments {
    visibility: hidden;
    position: relative;
}
.job-search-filter-header.departments::after {
    visibility: visible;
    position: absolute;
    left: 0;
    content: "Division";
}
/* HIDE "EMPLOYMENT TYPE" SEARCH BAR IN SEARCH PAGE SIDE FILTERS */
.job-search-filter.job-search-filter-employment-types label[for^="search_employment_"],
.job-search-filter.job-search-filter-employment-types input#search_employment_types {
    display: none;
}

.block-discussions-search .discussion-search-categories {
  padding: 1em;
  background-color: #ECECE9;
  margin-bottom: 30px;
}

.block-discussions-search .discussion-search-categories h4 {
  font-size: 18px;
  font-weight: 600;
}

/* Discussion List */

.block-discussions .discussion {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
}

.discussion-title {
  font-size: 24px;
  font-weight: 500;
}

.employee-connections-employees-carousel .employee-card .card-header .half-header-background {
  background-color: #da4e48;
}

.employee-connections-employees-carousel .carousel-control-prev-icon, 
.employee-connections-employees-carousel .carousel-control-next-icon {
  border: v#51645a!important;
  background-color: #51645a!important;
  opacity: 1!important;
}

.employee-connections-employees-carousel .carousel-control-prev, 
.employee-connections-employees-carousel .carousel-control-next {
  opacity: 1!important;  
}

.employee-careers .carousel-control-prev-icon, 
.employee-careers .carousel-control-next-icon {
  border: solid 1px #51645a!important;
  background-color: #51645a!important;
  opacity: 1;
}

.carousel-control-prev, 
.carousel-control-next {
  opacity: 1;
}

@media (max-width: 768px) {
  .employee-connections-employees-carousel .carousel-item .row>*,
  .employee-profile-carousel .carousel-item .row>* {
      padding-right: 0;
      padding-left: 0;
      width: 100%;
  }
}

.white-text h1,
.white-text h2 {
  color: #fff;
}

.discussion-search-result {
  background: transparent;
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: 3px solid #486877;
  border-radius: 3px;
  margin: 2rem 0;
}

.discussion-reply {
  background: #f5f5f5;
  padding: 1em;
  border-radius: 3px;
  margin: 2rem;
}

.discussion-large-h3 .discussion-stats {
  font-weight: 700;
}

.discussion-large-h3 .list-unstyled {
  font-weight: 600;
}

.discussion-large-h3 .list-unstyled span,
.discussion-large-h3 .list-unstyled time {
  font-weight: 400;
}

.discussion-large-h3 h3 {
  font-size: 28px;
}

@media (min-width: 768px) {
    .discussion-large-h3 h3 {
      font-size: 37px;
    }
}

.reply-date {
  border-bottom: 0!important;
}

.employee-connections-employee-profile .employee-details {
  background-color: var(--brand-colour1);
}

.employee-connections-employee-profile .employee-details .employee-ask-question {
  background-color: transparent;
}

.employee-connections-employee-profile .employee-details .employee-position {
  font-weight: 700;
}

.employee-connections-employee-profile .employee-insights .employee-insights-content .employee-insight {
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: 3px solid var(--brand-colour1);
  border-radius: 3px;
}

.employee-connections-employee-profile .employee-careers .employee-careers-content .employee-profile-carousel .card {
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: 3px solid var(--brand-colour1);
  border-radius: 3px;
}

.sidebar {
  background: transparent;
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, .1);
  border-top: 3px solid #486877;
  border-radius: 3px;
  margin-bottom: 30px;
}

.employee-career h5 {
  font-size: 18px;
  font-weight: 700;
}