@charset "UTF-8";
@import url("https://p.typekit.net/p.css?s=1&k=kqd5ira&ht=tk&f=28494.28498.31141.31144.31145.31147&a=44199060&app=typekit&e=css");

/* ===== grid.css (custom flexbox grid + component styles, replaces Bootstrap) ===== */
/* Custom replacement for Bootstrap 4's grid, layout utilities, and the
   handful of JS-driven components (navbar collapse, dropdown, modal) this
   theme uses. Class names match what the templates already use so no
   markup changes were needed when Bootstrap was removed. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Grid */

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.no-gutters > [class^="col-"],
.no-gutters > [class*=" col-"] {
  padding-left: 0;
  padding-right: 0;
}

[class^="col-"],
[class*=" col-"] {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-5 { flex: 0 0 41.6667%; max-width: 41.6667%; }
  .col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-md-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .order-md-last { order: 13; }
  .p-md-5 { padding: 3rem; }
}

@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 16.6667%; max-width: 16.6667%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-8 { flex: 0 0 66.6667%; max-width: 66.6667%; }
  .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Spacing / display / flex / text utilities actually used in the templates */

.m-auto { margin: auto; }
.mr-auto { margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-4 { padding: 1.5rem; }
.pb-0 { padding-bottom: 0; }
.pl-3 { padding-left: 1rem; }
.d-flex { display: flex; }
.w-100 { width: 100%; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-stretch { align-items: stretch; }
.justify-content-center { justify-content: center; }
.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Badge */

.badge {
  display: inline-block;
}

/* Pagination (see includes/template-tags.php andrus_pagination()) */

.pagination {
  display: flex;
  list-style: none;
  padding-left: 0;
}

/* Form controls / alerts (comments.php) */

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* Navbar collapse (mobile hamburger panel) */

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-expand-lg .navbar-nav {
  flex-direction: row;
}

.navbar-expand-lg .navbar-collapse {
  display: flex;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .navbar-expand-lg .navbar-collapse:not(.show) {
    display: none;
  }
  .navbar-expand-lg .navbar-collapse.collapsing {
    display: block;
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
  }
}

/* Dropdown (nav submenu) */

.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  background-color: #e9ecef;
}

/* Modal (video popups on front-page.php / life-at-andrus.php) */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal.show {
  display: block;
}
.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  transform: none;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  transition: opacity .15s linear;
}
.modal-backdrop.show {
  opacity: .5;
}
body.modal-open {
  overflow: hidden;
}

/* ===== developer.css ===== */
/* add job search page job box css and loader css - by Developer 04/06/2023 - Start */
.jobs .normal-job-url:hover .job-box {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem;
    border-color: var(--colorRed);
  }
  .jobs .normal-job-url .job-box {
    padding: 1.5em;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 8px;
    transition: 0.2s;
    border: 2px solid var(--colorWhite);
  }
  .jobs .normal-job-url .job-box .col-xl-9 ul {
    padding-left: 3em;
  }
  .jobs .normal-job-url .job-box .col-xl-9 ul li {
    font-size: 15px;
    line-height: 1.8;
    list-style-type: disc;
    margin: 5px 0;
  }
  
  body .loader-main {
    text-align: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    justify-content: center;
    display: flex;
    align-items: center;
    max-width: 100% !important;
    z-index: 9999;
    /* background-color: rgba(255, 255, 255, 0.7); */
  }
  body .loader-main .loader-inner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid var(--colorRed);
    border-bottom: 12px solid var(--colorRed);
    animation: spin 2s linear infinite;
    border-radius: 50%;
    width: 80px;
    height: 80px;
  }
  @keyframes spin {
    100% {
        transform: rotate(360deg);
    }
  }
  /* add job search page job box css and loader css - by Developer - 04/06/2023 - End */
  
  
  /*For menus*/
  .main-header .header-box .navbar-nav li{position:relative}
  
  .navbar .current-menu-item a, .navbar .current-menu-item:focus a {
      color: #00b3e3;
  }
  
      .navbar .current-menu-item a:before {
          visibility: visible;
          width: 100%;
      }
  
  .navbar .menu-item-has-children ul {
      display: block;
      position: absolute;
      left: 28px;
      top: calc(100% + 30px);
      margin: 0;
      padding: 10px 0;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
      transition: 0.3s;
      width:220px;
  }
  
  .navbar .menu-item-has-children:hover > ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
  }
  
  .navbar .menu-item-has-children ul a {
      padding: 10px 20px;
      font-weight: 400;
  }
  
  .navbar-mobile .menu-item-has-children > .dropdown-active {
      display: block;
  }
  
  .navbar-mobile .menu-item-has-children ul {
      position: static;
      display: none;
      margin: 10px 20px;
      padding: 10px 0;
      z-index: 99;
      opacity: 1;
      visibility: visible;
      background: #fff;
      box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  }
  .current_page_item > a {
      color: #bb132e !important;
  }
  .navbar .menu-item-has-children ul ul {
      left: 100%;
      margin-top: -28px;
  }
  .terminals {padding:80px 0;}
  .terminals iframe {
      width: 100%;
      background:#fff;
      padding: 6px;
      box-shadow: 0 0 20px #00000047;
      position: relative;
  }
  .terminals li {
      padding: 1rem;
      border: 1px solid #101c45;
      margin-bottom: 1rem;color: #0e1b44;
      font-weight: 600;
      line-height:2;
  }
  .terminals li a{
  color: #bc2030;
  }

  /*++++++++++++++ 2023-06-29 ++++++++++++++++*/
  .dforandrus {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    scroll-margin: 80px;
  }
  @media (max-width: 991px) {
    .dforandrus {
      flex-direction: column;
    }
  }
  .dforandrus div {
    flex: 1;
  }
  @media (max-width: 991px) {
    .dforandrus .dforandrus-image {
      min-height: 200px;
    }
  }
  .dforandrus .dforandrus-copy {
    background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
    padding: 50px 7% 50px 50px;
  }
  @media (max-width: 991px) {
    .dforandrus .dforandrus-copy {
      padding: 25px !important;
    }
  }
  .dforandrus .dforandrus-copy * {
    max-width: initial;
  }
  .dforandrus .dforandrus-copy h2 {
    color: var(--colorWhite);
    font-family: "interstate";
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
  }
  .dforandrus .dforandrus-copy p {
    color: var(--colorWhite);
  }
  .dforandrus .dforandrus-copy ul {
    margin-bottom: 30px;
    list-style: none;
    padding-left: 10px;
  }
  @media (max-width: 991px) {
    .dforandrus .dforandrus-copy ul {
      margin: 0 !important;
      padding: 0 !important;
    }
  }
  .dforandrus .dforandrus-copy ul li {
    color: var(--colorWhite);
    list-style: none;
  }
  .dforandrus .dforandrus-copy ul li:before {
    content: "\f005";
    font-size: 13px;
    font-family: FontAwesome;
    margin-right: 8px;
    font-weight: 900;
  }
  .dforandrus.reverse {
    box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.1098039216);
  }
  @media (max-width: 991px) {
    .dforandrus.reverse {
      flex-direction: column-reverse;
    }
  }
  @media (min-width: 992px) {
    .dforandrus.reverse {
      flex-direction: row-reverse;
    }
  }
  .dforandrus.reverse .dforandrus-copy {
    background: #fff;
    padding: 50px 7% 50px 50px;
  }
  .dforandrus.reverse .dforandrus-copy h2 {
    color: var(--colorRed);
    font-family: "interstate";
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
  }
  .dforandrus.reverse .dforandrus-copy p {
    color: var(--colorDark);
  }
  .dforandrus.reverse .dforandrus-copy ul {
    margin-bottom: 30px;
    list-style: none;
    padding-left: 10px;
  }
  .dforandrus.reverse .dforandrus-copy ul li {
    color: var(--colorDark);
  }
  .dforandrus.reverse .dforandrus-copy ul li:before {
    content: "\f005";
    font-size: 13px;
    font-family: FontAwesome;
    margin-right: 8px;
    font-weight: 900;
  }
  .dforandrus-copy.text-center ul {
    max-width: 926px;margin: auto !important;
}
.info-wrap span.fa {
    font-size: 30px;
    width: 30px;
    text-align: center;
}
.info-wrap .dbox {
    margin-bottom: 1.2rem;
}

.info-wrap span.fa.fa-mobile,.info-wrap span.fa.fa-map-marker {
    font-size: 42px;
}
.info-wrap a{color:#000}
.info-wrap a:hover{color:var(--colorRed)}


.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}
/* ===== style.css ===== */
@font-face {
  font-family: "mrs-eaves-xl-serif-narrow";
  src: url("https://use.typekit.net/af/d7a545/00000000000000007735b2f0/30/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("woff2"), url("https://use.typekit.net/af/d7a545/00000000000000007735b2f0/30/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("woff"), url("https://use.typekit.net/af/d7a545/00000000000000007735b2f0/30/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=i7&v=3") format("opentype");
  font-display: auto;
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
}
@font-face {
  font-family: "mrs-eaves-xl-serif-narrow";
  src: url("https://use.typekit.net/af/d71eb9/00000000000000007735b2f8/30/l?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/d71eb9/00000000000000007735b2f8/30/d?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/d71eb9/00000000000000007735b2f8/30/a?primer=7fa3915bdafdf03041871920a205bef951d72bf64dd4c4460fb992e3ecc3a862&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "interstate";
  src: url("https://use.typekit.net/af/e5199f/00000000000000003b9ae7f4/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/e5199f/00000000000000003b9ae7f4/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/e5199f/00000000000000003b9ae7f4/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "interstate";
  src: url("https://use.typekit.net/af/20ad3a/00000000000000003b9ae7f7/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"), url("https://use.typekit.net/af/20ad3a/00000000000000003b9ae7f7/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"), url("https://use.typekit.net/af/20ad3a/00000000000000003b9ae7f7/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
}
@font-face {
  font-family: "interstate";
  src: url("https://use.typekit.net/af/630ec8/00000000000000003b9ae7f8/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/630ec8/00000000000000003b9ae7f8/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/630ec8/00000000000000003b9ae7f8/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}
@font-face {
  font-family: "interstate";
  src: url("https://use.typekit.net/af/934a6d/00000000000000003b9ae7fa/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff2"), url("https://use.typekit.net/af/934a6d/00000000000000003b9ae7fa/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("woff"), url("https://use.typekit.net/af/934a6d/00000000000000003b9ae7fa/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}
.tk-mrs-eaves-xl-serif-narrow {
  font-family: "mrs-eaves-xl-serif-narrow", serif;
}

.tk-interstate {
  font-family: "interstate", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

html, body, ul, ol, li, form, fieldset, legend {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  margin-bottom: 20px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  background-color: #fff;
  padding-top: 10.5rem;
}
@media (max-width: 767px) {
  body {
    padding-top: 8rem;
  }
}

.modal {
  z-index: 9999;
}

fieldset, img {
  border: 0;
}

li {
  list-style: none;
}

a {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  transition: 0.2s;
}

a:focus {
  color: #205484;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: #205484;
}

.container {
  max-width: 1400px;
}

img {
  max-width: 100%;
  height: auto;
}

.button {
  display: block;
  justify-content: center;
  align-items: center;
  color: var(--colorRed);
  border: 2px solid var(--colorRed);
  height: auto;
  width: fit-content;
  padding: 10px 18px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "interstate", sans-serif;
  font-weight: 700;
  line-height: 100%;
  border-radius: 10px;
  letter-spacing: 0.02em;
  font-size: 20px;
  background-color: var(--colorWhite);
  transition: all 0.4s;
}
@media (max-width: 500px) {
  .button {
    font-size: 17px;
  }
}
.button:hover {
  transform: scale(1.03);
}

.content-wrapper {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 6%;
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 20px 5%;
  }
}

/* VARIABLES */
:root {
  --colorDarkBlue: #001a47;
  --colorLightBlue: #3c9dc4;
  --colorLighterBlue: #a8bfc8;
  --colorRed: #bb132e;
  --colorWhite: #fff;
  --colorGray: #6c6c6c;
  --colorDark: #1e1e1e;
  --colorBlack: #000;
}

/*/////*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

img {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

/*//header//*/

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar-nav .dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    max-width: 180px;
  }
}

/* Hamburger toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--colorDark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }
}

.main-header {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.5s;
}
.main-header .header-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 15px 0;
  transition: 0.5s;
}
.main-header .header-box .navbar {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.main-header .header-box .header-right-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  width: auto;
  display: inline-block;
}
.main-header .header-box .header-right-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  width: auto;
  display: inline-block;
}
.main-header .header-box .number-menuicon {
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .main-header .header-box .number-menuicon {
    margin-top: 30px;
  }
}
.main-header .header-box .number-menuicon .header-number {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-header .header-box .number-menuicon .header-number ul {
  display: flex;
  column-gap: 15px;
  padding: 0;
}
@media (max-width: 767px) {
  .main-header .header-box .number-menuicon .header-number ul {
    display: none;
  }
}
.main-header .header-box .number-menuicon .header-number ul li {
  padding-top: 24px !important;
  margin-right: 12px;
}
.main-header .header-box .number-menuicon .header-number ul li a {
  padding-right: 10px;
  color: var(--colorDark);
  text-decoration: none;
}
.main-header .header-box .number-menuicon .header-number ul li a:hover {
  color: var(--colorRed);
}
.main-header .header-box .number-menuicon .header-number ul li:last-child {
  background-color: var(--colorRed);
  border-radius: 0px 0px 10px 10px;
  padding: 10px 16px;
  font-size: 21px;
  position: relative;
  top: -15px;
}
.main-header .header-box .number-menuicon .header-number ul li:last-child a {
  padding: 0 10px;
  color: var(--colorWhite);
  text-transform: uppercase;
}
.main-header .header-box .navbar-nav {
  padding: 10px 0;
}
.main-header .header-box .navbar-nav li {
  padding: 0 20px;
  transition: 0.5s;
}
.main-header .header-box .navbar-nav li a {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--colorDark);
  font-weight: 400;
  text-decoration: none;
  line-height: normal;
  padding: 10px;
  text-transform: uppercase;
  transition: 0.5s;
}
.main-header .header-box .navbar-nav li a:hover {
  text-decoration: none;
  color: var(--colorRed);
}
.main-header .header-box .navbar-nav li a.active {
  text-decoration: none;
  color: var(--colorRed);
}
.main-header .header-box .navbar-nav li:last-child {
  padding-right: 0;
}
.main-header .header-box .navbar-nav li:last-child a {
  padding-right: 0;
}

.main-header.fixed-menu {
  background: var(--colorWhite);
  padding: 5px 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem;
}
.main-header.fixed-menu .header-box {
  padding: 0;
}
.main-header.fixed-menu .header-box .navbar-brand img {
  max-height: 68px;
  width: auto;
}
.main-header.fixed-menu .header-box .number-menuicon {
  padding-top: 0;
  padding-right: 20px;
}
/* Scrolled state: shrink the top utility row only, leave the main menu untouched */
.main-header.fixed-menu .header-box .number-menuicon .header-number ul li {
  padding-top: 6px !important;
  margin-right: 8px;
}
.main-header.fixed-menu .header-box .number-menuicon .header-number ul li a {
  font-size: 13px;
}
.main-header.fixed-menu .header-box .number-menuicon .header-number ul li:last-child {
  padding: 4px 12px;
  font-size: 15px;
  top: 0;
}
.main-header.fixed-menu .header-box .number-menuicon .header-number .pho-number {
  font-size: 16px;
  background-size: 32px;
  padding-left: 40px;
}

@media (max-width: 991px) {

  /* ===== Off-canvas mobile nav panel (slides in from the right) ===== */
  #navbarSupportedContent {
    display: block;
    position: fixed;
    top: var(--site-header-height, 70px);
    right: 0;
    width: 86%;
    max-width: 320px;
    height: calc(100vh - var(--site-header-height, 70px));
    overflow-y: auto;
    padding: 0;
    background-color: var(--colorWhite);
    box-shadow: -2px 0 18px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  #navbarSupportedContent.show {
    transform: translateX(0);
  }
  body.nav-open {
    overflow: hidden;
  }

  /* List */
  .main-header .header-box .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0 2rem;
    border: none;
    background-color: var(--colorWhite);
  }
  .main-header .header-box .navbar-nav > li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #e7e7e7;
  }
  .main-header .header-box .navbar-nav > li:last-child {
    border-bottom: none;
  }
  .main-header .header-box .navbar-nav .nav-link {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: 16px;
    color: var(--colorDark);
  }

  /* Dropdown parent row + injected accordion toggle button */
  #navbarSupportedContent .nav-item.dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  #navbarSupportedContent .nav-item.dropdown > a {
    flex: 1 1 auto;
    order: 1;
  }

  .andrus-submenu-toggle {
    order: 2;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    margin-inline-end: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #efefef;
    cursor: pointer;
  }
  .andrus-submenu-icon {
    position: relative;
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--colorRed);
  }
  .andrus-submenu-icon::before,
  .andrus-submenu-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--colorWhite);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
  }
  .andrus-submenu-icon::before { width: 8px; height: 2px; }
  .andrus-submenu-icon::after  { width: 2px; height: 8px; }
  .nav-item.dropdown.is-open .andrus-submenu-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* Submenu accordion */
  #navbarSupportedContent .dropdown-menu {
    order: 3;
    position: static;
    flex-basis: 100%;
    width: 100%;
    display: block;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: #f6f6f6;
    transition: max-height 0.3s ease;
  }
  #navbarSupportedContent .dropdown-menu .dropdown-item {
    padding: 0.7rem 1.5rem 0.7rem 2.5rem;
    font-size: 15px;
    white-space: normal;
  }
}

@media (min-width: 992px) {
  .andrus-submenu-toggle {
    display: none;
  }
}
/*//home-slider//*/
/* Home Page - Hero */
.hero {
  background: #fff url(../images/hero-img.jpeg) no-repeat center bottom/cover;
  height: auto;
  position: relative;
}
.hero .hero-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
}
@media (max-width: 767px) {
  .hero .hero-layer {
    width: 230%;
    left: initial;
    right: 0;
    max-width: initial;
  }
}
.hero .hero-content-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 50px 7%;
  position: relative;
  z-index: 25;
}
.hero .hero-copy {
  flex: 0 0 33%;
  padding-left: 50px;
}
.hero .hero-copy h1.home-heading {
  color: #fff;
  font-size: 23px;
  font-family: mrs-eaves-xl-serif-narrow, serif;
  margin-bottom: 30px;
  max-width: 300px;
  font-weight: 400;
}
.hero .hero-copy a.button {
  border: 2px solid var(--colorWhite);
  background-color: transparent;
  color: var(--colorWhite);
}
.hero .hero-statement {
  color: #fff;
  font-family: "interstate", sans-serif;
  font-weight: 800;
  font-size: 44px;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 20px;
}
.hero .hero-statement span {
  font-family: mrs-eaves-xl-serif-narrow, serif;
  font-weight: 700;
  font-style: italic;
  text-transform: capitalize;
}

/*//home//*/
.main-body-container {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

.body-cont-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 60px 0;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .body-cont-block {
    padding: 40px 0;
  }
}
.body-cont-block .header-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding-bottom: 20px;
}
.body-cont-block .header-block .header {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0px;
  padding: 0px;
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .body-cont-block .header-block .header {
    font-size: 38px;
    line-height: normal;
  }
}
.body-cont-block .header-block p {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  max-width: 680px;
  margin: 0 auto;
  line-height: 30px;
  text-align: center;
}
.body-cont-block .button-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 40px 0 20px 0;
}
.body-cont-block .button-block .btn {
  display: inline-block;
  width: auto;
  min-width: 270px;
  padding: 14px 60px;
  border-radius: 0;
  transition: 0.3s;
  background-color: #e0cda2;
  font-family: "Poppins", sans-serif;
  color: #05473b !important;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
}
.body-cont-block .button-block .btn:hover {
  background-color: #e0cda2;
  text-decoration: none;
  background-position: right center;
  -webkit-transform: translate3d(0px, -5px, 0);
  -o-transform: translate3d(0px, -5px, 0);
  -ms-transform: translate3d(0px, -5px, 0);
  -moz-transform: translate3d(0px, -5px, 0);
  transform: translate3d(0px, -5px, 0);
  box-shadow: 10px 8px 20px rgba(13, 56, 53, 0.2);
}
.body-cont-block .button-block .outline-btn {
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #e0cda2;
  font-size: 18px;
  font-weight: 500;
  padding: 17px 48px;
}
.body-cont-block .button-block .outline-btn::before, .body-cont-block .button-block .outline-btn::after,
.body-cont-block .button-block .outline-btn span::before,
.body-cont-block .button-block .outline-btn span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  transition: 1s;
  /* -webkit-mix-blend-mode: hue; */
}
.body-cont-block .button-block .outline-btn::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid #e0cda2;
  border-left: 2px solid #e0cda2;
  width: 190px;
  height: 36px;
}
.body-cont-block .button-block .outline-btn::after {
  top: -2px;
  right: -2px;
  border-top: 2px solid #e0cda2;
  border-right: 2px solid #e0cda2;
  border-width: 0;
}
.body-cont-block .button-block .outline-btn span::before {
  bottom: -2px;
  left: -2px;
  border-bottom: 2px solid #e0cda2;
  border-left: 2px solid #e0cda2;
  border-width: 0;
}
.body-cont-block .button-block .outline-btn span::after {
  bottom: -2px;
  right: -2px;
  border-bottom: 2px solid #e0cda2;
  border-right: 2px solid #e0cda2;
  width: 190px;
  height: 36px;
}
.body-cont-block .button-block .outline-btn:hover::before, .body-cont-block .button-block .outline-btn:hover::after, .body-cont-block .button-block .outline-btn:hover span::before, .body-cont-block .button-block .outline-btn:hover span::after {
  width: 90px;
  height: 25px;
  border-width: 2px;
  width: 100%;
  height: 100%;
}
.body-cont-block .image-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.body-cont-block .image-block img {
  max-width: 100%;
}

/*////our-mission-mainblock///*/
.our-mission-mainblock .image-block {
  display: flex;
  justify-content: flex-start;
  padding-right: 30px;
}
.our-mission-mainblock .header-block {
  text-align: left;
  padding-top: 40px;
}
.our-mission-mainblock .header-block .header {
  text-align: left;
  padding-bottom: 0;
}
.our-mission-mainblock .header-block p {
  text-align: left;
}

/*////upcoming-events-mainblock///*/
.upcoming-events-mainblock .upcoming-events-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding-top: 30px;
}
.upcoming-events-mainblock .upcoming-events-block .upcoming-event-item {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  padding: 20px 0;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-date-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  max-width: 230px;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-month-year {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 24px;
  text-align: left;
  color: #e0cda2;
  padding-bottom: 10px;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .date-box {
  width: 152px;
  height: 176px;
  padding: 20px 10px;
  background-image: url(../images/logo-icon-line.png);
  background-repeat: no-repeat;
  background-position: center;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .date-box .date-number {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 72px;
  line-height: 72px;
  text-align: left;
  color: #e0cda2;
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 2px;
  text-align: center;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .date-box .day {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 20px;
  line-height: 25px;
  text-align: left;
  color: #e0cda2;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  border-top: 1px solid #413d36;
  margin-top: 15px;
  padding: 40px 0 40px 15px;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .events-time {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 12px;
  text-align: left;
  padding-bottom: 10px;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .details-box {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .details-box .text-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .details-box .text-block .events-titel {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 30px;
  text-align: left;
  font-weight: 600;
  padding-bottom: 10px;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .details-box .text-block p {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  width: 100%;
  line-height: normal;
  letter-spacing: 0px;
  font-size: 16px;
  font-weight: 300;
  opacity: 1;
  font-size: 14px;
  text-align: left;
}
.upcoming-events-mainblock .upcoming-events-block .event-details-box .event-details .button-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  max-width: 270px;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.upcoming-events-mainblock .button-block {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

/*////Home Page - Commitment////*/
.commitment h2 {
  font-family: "interstate";
  font-weight: 700;
  color: var(--colorRed);
  text-transform: uppercase;
  font-size: 42px;
}
.commitment h3 {
  font-family: "mrs-eaves-xl-serif-narrow";
  font-style: italic;
  font-weight: 700;
  color: var(--colorLightBlue);
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 100%;
}
.commitment p {
  font-size: 21px;
  font-family: "mrs-eaves-xl-serif-narrow";
  color: var(--colorDark);
}
.commitment div a {
  margin: 0 auto;
}

.discover {
  background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
}
.discover h2 {
  font-family: "interstate";
  font-size: 36px;
  text-transform: uppercase;
  color: var(--colorWhite);
  margin-bottom: 50px;
}
.discover .discover-row {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  margin-top: 80px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .discover .discover-row {
    row-gap: 80px;
  }
}
.discover .discover-row .discovery {
  background: var(--colorWhite);
  flex: 0 0 calc(33% - 40px);
  padding: 80px 20px 30px;
  position: relative;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .discover .discover-row .discovery {
    flex: 0 0 calc(100% - 5px);
  }
}
.discover .discover-row .discovery .discovery-title {
  font-family: "interstate", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  color: var(--colorRed);
}
.discover .discover-row .discovery .discovery-copy {
  font-size: 18px;
  margin-bottom: 20px;
}
.discover .discover-row .discovery a {
  margin: 0 auto;
  text-align: center;
}

.discovery-icon-container {
  position: absolute;
  top: 0;
  left: calc(50% - 55px);
  margin-top: -56px;
  border: 6px solid var(--colorWhite);
  border-radius: 50%;
}

/* Home Page - Video */
.video-row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .video-row {
    flex-direction: column;
    row-gap: 2rem;
  }
}

.video-container {
  flex: 0 0 60%;
  background-color: transparent;
}

.video .featured-video {
  width: 100%;
}
.video .featured-video img {
  border-radius: 0 65px 0 0;
}
.video .featured-video .modal-content iframe {
  max-width: 700px;
  width: 100%;
  height: 400px;
}
.video .featured-video .modal-content button.close {
  position: absolute;
  right: -25px;
  top: -18px;
  font-family: auto;
  font-size: 40px;
  background: rgb(255, 255, 255);
  opacity: 1;
  z-index: 1;
  width: 40px;
  border-radius: 5px 5px 5px 0;
}
@media (min-width: 576px) {
  .video .featured-video .modal-dialog {
    max-width: 700px;
    margin-top: 8rem;
  }
}
.video .video-row-content {
  flex: 0 0 calc(40% - 50px);
  border-radius: 10px;
  text-align: left;
}
.video .video-row-content h2 {
  font-size: 24px;
  font-family: "interstate", sans-serif;
  color: var(--colorLightBlue);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.video .video-row-content h2 span {
  font-size: 42px;
  font-family: "interstate", sans-serif;
  color: var(--colorRed);
  text-transform: uppercase;
  font-weight: 800;
}
.video .video-row-content p {
  font-size: 21px;
  font-family: "mrs-eaves-xl-serif-narrow";
  color: var(--colorDark);
  margin-bottom: 30px;
}

/* Home Page - Apply */
.apply {
  background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
}
.apply .apply-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 767px) {
  .apply .apply-row {
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
  }
}
.apply .apply-row div {
  text-align: center;
  flex: 0 0 calc(50% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.apply .apply-row div a {
  margin: 0 auto;
  background: transparent;
  border-color: var(--colorWhite);
  color: var(--colorWhite);
}
.apply .apply-row > div,
.apply .apply-row > div > .apply-content {
  width: 100%;
  align-self: stretch;
}
.apply .apply-row .apply-image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* locked 16:9, same box for image and video */
  margin-bottom: 20px;
  overflow: hidden;
}
.apply .apply-row .apply-image-container img,
.apply .apply-row .apply-image-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.apply h3 {
  color: var(--colorLighterBlue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 10px;
}
.apply p {
  color: var(--colorWhite);
  font-size: 18px;
  padding: 0px 10% 20px;
}

/* Home Page - Hiring */
.hiring h2 {
  font-family: "interstate";
  font-weight: 700;
  color: var(--colorRed);
  text-transform: uppercase;
  font-size: 42px;
}
.hiring h3 {
  font-family: "mrs-eaves-xl-serif-narrow";
  font-style: italic;
  font-weight: 700;
  color: var(--colorLightBlue);
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 100%;
}
.hiring .hiring-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .hiring .hiring-row {
    flex-direction: column;
    row-gap: 2rem;
    align-items: center;
  }
}
.hiring .hiring-row div {
  flex: 1;
}
.hiring .hiring-row .hiring-copy {
  text-align: left;
}
.hiring .hiring-row .hiring-copy p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hiring .hiring-row .hiring-copy p:last-of-type {
  margin-bottom: 30px;
}

/* About Page - Hero */
.child-hero .hero-content-container {
  justify-content: flex-start;
}
.child-hero .hero-content-container .hero-copy {
  padding-left: 0;
  padding-right: 50px;
  text-align: right;
}
.child-hero .hero-content-container .hero-copy h1.home-heading {
  margin: 0 0 30px auto;
}
.child-hero .hero-content-container .hero-copy a.button {
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .child-hero {
    overflow: hidden;
  }
  .child-hero .hero-layer {
    width: 230%;
    left: 0;
    right: initial;
    max-width: initial;
  }
}

/* About Page - Equipment */
.equipment {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.equipment div {
  flex: 1;
}
.equipment .equipment-copy {
  background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
  padding: 50px 7% 50px 50px;
}
.equipment .equipment-copy * {
  max-width: 670px;
}
.equipment .equipment-copy h2 {
  color: var(--colorWhite);
  font-family: "interstate";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}
.equipment .equipment-copy p {
  color: var(--colorWhite);
}
.equipment .equipment-copy ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 10px;
}
.equipment .equipment-copy ul li {
  color: var(--colorWhite);
}
.equipment .equipment-copy ul li:before {
  content: "\f005";
  font-size: 13px;
  font-family: FontAwesome;
  margin-right: 8px;
  font-weight: 900;
}

.dforandrus {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 991px) {
  .dforandrus {
    flex-direction: column;
  }
}
.dforandrus div {
  flex: 1;
}
@media (max-width: 991px) {
  .dforandrus .dforandrus-image {
    min-height: 200px;
  }
}
.dforandrus .dforandrus-copy {
  background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
  padding: 50px 7% 50px 50px;
}
@media (max-width: 991px) {
  .dforandrus .dforandrus-copy {
    padding: 25px !important;
  }
}
.dforandrus .dforandrus-copy * {
  max-width: initial;
}
.dforandrus .dforandrus-copy h2 {
  color: var(--colorWhite);
  font-family: "interstate";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}
.dforandrus .dforandrus-copy p {
  color: var(--colorWhite);
}
.dforandrus .dforandrus-copy ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 10px;
}
@media (max-width: 991px) {
  .dforandrus .dforandrus-copy ul {
    margin: 0 !important;
    padding: 0 !important;
  }
}
.dforandrus .dforandrus-copy ul li {
  color: var(--colorWhite);
  list-style: none;
}
.dforandrus .dforandrus-copy ul li:before {
  content: "\f005";
  font-size: 13px;
  font-family: FontAwesome;
  margin-right: 8px;
  font-weight: 900;
}
.dforandrus.reverse {
  box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.1098039216);
}
@media (max-width: 991px) {
  .dforandrus.reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .dforandrus.reverse {
    flex-direction: row-reverse;
  }
}
.dforandrus.reverse .dforandrus-copy {
  background: #fff;
  padding: 50px 7% 50px 50px;
}
.dforandrus.reverse .dforandrus-copy h2 {
  color: var(--colorRed);
  font-family: "interstate";
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}
.dforandrus.reverse .dforandrus-copy p {
  color: var(--colorDark);
}
.dforandrus.reverse .dforandrus-copy ul {
  margin-bottom: 30px;
  list-style: none;
  padding-left: 10px;
}
.dforandrus.reverse .dforandrus-copy ul li {
  color: var(--colorDark);
}
.dforandrus.reverse .dforandrus-copy ul li:before {
  content: "\f005";
  font-size: 13px;
  font-family: FontAwesome;
  margin-right: 8px;
  font-weight: 900;
}

/* About Page - Family */
/* Home Page - Apply */
.child-apply {
  background: #fff;
}
.child-apply .apply-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.child-apply .apply-row h3 {
  color: var(--colorRed);
}
.child-apply .apply-row p {
  color: var(--colorDark);
}
.child-apply .apply-row div a {
  background: var(--colorWhite);
  border-color: var(--colorRed);
  color: var(--colorRed);
}

/* Partials - Banner CTA */
.banner-cta {
  background-color: var(--colorLightBlue);
  padding: 20px 7%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .banner-cta {
    flex-direction: column;
    row-gap: 15px;
    text-align: center;
  }
}
.banner-cta p {
  margin-bottom: 0px;
  margin-right: 30px;
  color: var(--colorWhite);
  font-family: "mrs-eaves-xl-serif-narrow";
  font-weight: 700;
  font-style: italic;
  font-size: 32px;
}
@media (max-width: 767px) {
  .banner-cta p {
    margin: 0;
  }
}
.banner-cta a {
  color: #fff;
  text-decoration: none;
  font-family: "interstate";
  font-weight: 700;
  font-size: 30px;
}

/* About Page - Video */
.video.child-video {
  background: #fff url(../images/disc-bg.jpg) no-repeat center bottom/cover;
}
.video.child-video p {
  color: var(--colorWhite);
}
.video.child-video p.preheading {
  font-family: "interstate";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 0px;
}
.video.child-video h2 {
  color: var(--colorWhite);
  font-family: "interstate";
  font-weight: 800;
  font-size: 36px;
  line-height: 120%;
}
.video.child-video a.button {
  background: transparent;
  border-color: var(--colorWhite);
  color: var(--colorWhite);
  font-size: 16px;
}

/*//jobs//*/
.jobs {
  background: #f5f5f5;
  padding: 2em 0;
}
.jobs h2 {
  font-family: "interstate";
  font-weight: 700;
  color: var(--colorRed);
  text-transform: uppercase;
  font-size: 42px;
  text-align: center;
}
.jobs h3 {
  font-size: 26px;
  margin-bottom: 8px;
}
.jobs h3 .badge {
  padding: 8px 8px;
  font-weight: normal;
  border-radius: 4px;
  font-size: 16px;
  margin-left: 5px;
  vertical-align: text-bottom;
  color: #fff;
  height: 32px;
  background-color: var(--colorRed);
}
.job-box h2{
  font-family: "interstate";
  font-weight: 700;
  color: var(--colorRed);
  text-transform: uppercase;
  font-size: 25px;
  text-align: left;
  margin: 10px 0;
}
.job-box h2 .badge {
  padding: 8px 8px;
  font-weight: normal;
  border-radius: 4px;
  font-size: 16px;
  margin-left: 5px;
  vertical-align: text-bottom;
  color: #fff;
  height: 32px;
  background-color: var(--colorRed);
}
.bodRt{border-right: 1px var(--colorRed) solid;}
.jobs a {
  color: var(--colorDark);
}
.jobs a:hover {
  text-decoration: none;
}
.jobs h5 {
  font-size: 20px;
}
.jobs .job-url {
  transition: 0.2s;
  display: block;
}
.jobs .job-url:hover .job-box {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem;
  border-color: var(--colorRed);
}
.jobs .job-url .job-box {
  padding: 1.5em;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 8px;
  transition: 0.2s;
  border: 2px solid var(--colorWhite);
}
.jobs .job-url .job-box .col-xl-9 ul {
  padding-left: 3em;
}
.jobs .job-url .job-box .col-xl-9 ul li {
  font-size: 15px;
  line-height: 1.8;
  list-style-type: disc;
  margin: 5px 0;
}
.jobs .job-short-info ul li {
  font-size: 16px;
  line-height: 1.8;
  margin: 5px 0;
}
.jobs .job-short-info ul li .icon {
  width: 40px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 767px) {
  .jobs .details {
    margin-top: 1em;
  }
}

.jobs-filter {
  padding: 1.5rem 0;
}
.jobs-filter h5 {
  margin-bottom: 0.8rem;
}
.jobs-filter .dropdown {
  position: relative;
  font-size: 14px;
  color: #333;
}
.jobs-filter .dropdown .dropdown-list {
  padding: 12px;
  background: #fff;
  position: absolute;
  top: 38px;
  left: 2px;
  right: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
  max-height: 66vh;
  overflow-y: auto;
  z-index: 2;
}
.jobs-filter .dropdown .dropdown-option {
  display: flex;
  align-items: center;
  padding: 4px 0px;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
  margin: 0;
  column-gap: 5px;
}
.jobs-filter .dropdown .dropdown-label {
  display: block;
  height: 38px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 12px;
  line-height: 1;
  cursor: pointer;
}
.jobs-filter .dropdown .dropdown-label:before {
  content: "▼";
  float: right;
}
.jobs-filter .dropdown.on .dropdown-list {
  transform: scale(1, 1);
  transition-delay: 0s;
}
.jobs-filter .dropdown.on .dropdown-list .dropdown-option {
  opacity: 1;
  transition-delay: 0.2s;
}
.jobs-filter .dropdown.on .dropdown-label:before {
  content: "▲";
}
.jobs-filter .dropdown [type=checkbox] {
  position: relative;
  top: -1px;
  margin-right: 4px;
  width: 20px;
  height: 20px;
}

/*//Benefits//*/
ul.benefits {
  display: flex;
  flex-wrap: wrap;
  max-width: 810px;
  margin: auto;
}
ul.benefits li {
  list-style: disc;
  width: 50%;
  text-align: left;
}
@media (max-width: 767px) {
  ul.benefits li {
    width: 100%;
    margin-left: 20px;
  }
}
@media (min-width: 992px) {
  ul.benefits.column-4 li {
    width: 25%;
  }
}

.better-work p {
  color: #fff;
  font-size: 20px;
}

.team-drivers {
  background: #e7f1f9;
}
.team-drivers p {
  text-align: left;
}

/*//footer//*/
.footer-main-block {
  background-color: var(--colorDarkBlue);
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

footer * {
  color: var(--colorWhite);
}
footer h3 {
  font-family: "interstate";
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-size: 24px;
}
footer h4 {
  font-family: "interstate";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 0px;
}
footer p {
  font-family: "interstate";
  color: var(--colorWhite);
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 0px;
}
footer p a {
  color: var(--colorWhite);
}
footer p span {
  font-family: "interstate";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  margin-right: 6px;
}
footer .links-column div {
  margin-bottom: 20px;
}
footer a:hover {
  color: var(--colorRed);
  text-decoration: none;
}
footer ul li ul {
  padding-left: 1.5rem;
}

.nav-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .nav-social {
    justify-content: center;
  }
}
.nav-social a:hover {
  cursor: pointer;
}
.nav-social a img {
  margin-bottom: 10px;
}
.nav-social span {
  font-size: 30px;
  color: var(--colorWhite);
  margin-right: 12px;
}
.nav-social p {
  margin-bottom: 0px;
}

.affiliations a img {
  margin-bottom: 10px;
}

.footer-copyright-block {
  text-align: center;
  font-size: 12px;
}

@media (max-width: 767px) {
  .footer-top-block .row {
    row-gap: 3rem;
    text-align: center;
  }
}

/* ==========================================================================
   Job Listings templates (ported from andrus-stage)
   job_search.php filter buttons + single-job_listing.php
   ========================================================================== */

/* Job type filter buttons (job_search.php) */
.job-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
}
.filter-btn {
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #444;
}
.filter-btn:hover {
  border-color: #e31837;
  color: #e31837;
}
.filter-btn.active {
  background: #e31837;
  border-color: #e31837;
  color: #fff;
}

/* Single job listing (single-job_listing.php) */
.single-job_listing .job-box {
  padding: 2.5em;
  margin: 2em 0;
  border-radius: 8px;
  border: 2px solid #eee;
}
.single-job_listing .job-box h2 {
  margin-bottom: 0.5em;
}
.single-job_listing .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1em 0 1.5em;
  font-size: 15px;
}
.single-job_listing .job-meta .location,
.single-job_listing .job-meta .phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-job_listing .job-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--colorRed);
}
.single-job_listing .job-meta .phone a {
  color: var(--colorRed);
  font-weight: 700;
}
.single-job_listing .udf {
  margin-bottom: 1.5em;
  list-style: none;
}
.single-job_listing .udf li {
  font-size: 15px;
  line-height: 2;
}
.single-job_listing .udf .label {
  font-weight: 700;
}
.single-job_listing .job-description {
  margin-bottom: 2em;
}
.single-job_listing .job-description p,
.single-job_listing .job-description ul,
.single-job_listing .job-description ol {
  margin-bottom: 0.8em;
  line-height: 2.2;
}
.single-job_listing .job-description ul,
.single-job_listing .job-description ol {
  padding-left: 1.5em;
  list-style: none;
}
.single-job_listing .job-description ul li {
  position: relative;
  padding-left: 1.2em;
}
.single-job_listing .job-description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--colorRed);
}
.single-job_listing .job-description ul li:has(> ul)::before {
  display: none;
}
.single-job_listing .mb-0 h2 {
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-size: 22px;
}
.single-job_listing .col-xl-3.details {
  padding-left: 2em;
}
.single-job_listing .sidebar-apply {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #eee;
}
.single-job_listing .bottom-apply {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid #eee;
  text-align: center;
}
@media (max-width: 1000px) {
  .single-job_listing .col-xl-9,
  .single-job_listing .col-xl-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .single-job_listing .col-xl-3.details {
    padding-left: 15px;
    margin-top: 2em;
  }
  .bodRt {
    border-right: none;
    border-bottom: 1px var(--colorRed) solid;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  .single-job_listing .sidebar-apply {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
