:root {
  --header-height: 155px;
}
@media (width >= 1400px) {
  :root {
    --header-height: 115px;
  }
}

#page-header .container--buttons,
#site-mobile-drawer .container--buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  column-gap: 20px;
}
#page-header .container--buttons a,
#site-mobile-drawer .container--buttons a {
  padding: 7px 15px;
  text-transform: uppercase;
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
}
#page-header .container--buttons a:nth-child(n+3),
#site-mobile-drawer .container--buttons a:nth-child(n+3) {
  display: none;
}

#page-header {
  position: relative;
  z-index: 2;
  display: block;
  height: var(--header-height);
}
body:not(.home) #page-header {
  height: 500px;
  background-image: linear-gradient(to bottom, #15214e, rgba(21, 33, 78, 0.3));
  background-position: center;
  background-size: cover;
}
#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #15214e, rgba(21, 33, 78, 0.3));
}
#page-header > .wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  height: var(--header-height);
  padding-bottom: 40px;
  box-sizing: border-box;
  align-items: end;
  flex-wrap: nowrap;
}
@media (width >= 1400px) {
  #page-header > .wrapper {
    padding-bottom: 0;
  }
}
#page-header .container,
#page-header .container .col {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 35px;
}
#page-header .container .col {
  justify-content: end;
}
#page-header .container--logo {
  display: block;
}
#page-header .container--logo img {
  max-width: 275px;
  max-height: 60px;
}
@media (width >= 768px) {
  #page-header .container--logo img {
    max-width: 285px;
  }
}
#page-header .template-part-buttons {
  display: none;
}
html[mobile-drawer=open] #page-header .mobile-nav-toggles {
  visibility: hidden;
}
#page-header > .wrapper-title {
  position: relative;
  z-index: 2;
  height: calc(500px - var(--header-height));
}
#page-header > .wrapper-title > .container {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}
#page-header > .wrapper-title .h1 {
  line-height: 1.08;
  font-size: 60px !important;
  color: #fff;
}
@media (width < 768px) {
  #page-header > .wrapper-title .h1 {
    font-size: 52px !important;
  }
}
#page-header > .wrapper-title .container--buttons {
  margin-top: 30px;
}
@media (width < 576px) {
  #page-header > .wrapper-title .container--buttons {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
#page-header > .wrapper-title .container--buttons a {
  border: solid 2px #fff;
}
#page-header > .wrapper-title .container--buttons a:first-child {
  background-color: #fff;
  color: #15214e !important;
  border-color: #6a89b8;
}
@media (hover: hover) {
  #page-header > .wrapper-title .container--buttons a:hover {
    background-color: #4b6996;
    border-color: #4b6996;
    color: #fff !important;
  }
}

@media (width >= 1200px) {
  .mobile-nav-toggles {
    display: none;
  }
}
.mobile-nav-toggles button {
  background-color: transparent;
  appearance: none;
  border: none;
}
.mobile-nav-toggles svg {
  width: 40px;
  height: 25px;
  fill: #fff;
}

@media (width < 1200px) {
  #site-nav {
    display: none;
  }
}
#site-nav a {
  text-decoration: none;
}
#site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-nav ul li {
  font-weight: 700;
}
#site-nav ul.menu {
  display: flex;
}
#site-nav ul.menu > .menu-item {
  padding: 20px 20px 15px 15px;
}
#site-nav ul.menu > .menu-item.menu-item-has-children {
  position: relative;
}
#site-nav ul.menu > .menu-item.menu-item-has-children > a {
  display: flex;
  align-items: center;
}
#site-nav ul.menu > .menu-item.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: -2px 0 0 5px;
  background-image: url(img/icon--has-submenu.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
#site-nav ul.menu > .menu-item > a {
  color: #fff !important;
}
@media (hover: hover) {
  #site-nav ul.menu > .menu-item:hover {
    background-color: #15214e;
  }
  #site-nav ul.menu > .menu-item:hover.menu-item-has-children > .sub-menu {
    display: grid;
  }
}
#site-nav ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 100%;
  background-color: #fff;
  padding: 20px 15px 15px;
  font-size: 14px;
}
#site-nav ul.sub-menu:not(.multi-column) li + li {
  margin-top: 20px;
}
#site-nav ul.sub-menu.multi-column {
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  column-gap: 40px;
  row-gap: 20px;
}
#site-nav ul.sub-menu a {
  color: #6a89b8 !important;
  white-space: nowrap;
}
@media (hover: hover) {
  #site-nav ul.sub-menu a:hover {
    text-decoration: underline !important;
  }
}
@media (width < 768px) {
  #site-nav + .container--buttons {
    display: none;
  }
}
#site-nav + .container--buttons a {
  color: #fff !important;
}
#site-nav + .container--buttons a:first-child {
  order: 1;
  background-color: #6a89b8;
  border: 2px solid #6a89b8;
}
#site-nav + .container--buttons a:nth-child(2) {
  border: 2px solid #fff;
}
@media (hover: hover) {
  #site-nav + .container--buttons a:hover {
    background-color: #4b6996;
    border-color: #4b6996;
  }
}
@media (width >= 1200px) {
  #site-nav ~ .mobile-nav-toggles {
    display: none;
  }
}
#site-nav ~ .mobile-nav-toggles button {
  background-color: transparent;
  appearance: none;
  border: none;
}
#site-nav ~ .mobile-nav-toggles svg {
  width: 40px;
  height: 25px;
  fill: #fff;
}

#site-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 90vw;
  max-width: 300px;
  height: 100vh;
  padding: 20px 50px 20px 20px;
  background-color: #fff;
  box-sizing: border-box;
  overflow: auto;
}
#site-mobile-drawer.loading, html[mobile-drawer=closed] #site-mobile-drawer {
  display: none;
}
body.admin-bar #site-mobile-drawer {
  top: 32px;
  height: calc(100vh - 32px);
}
#site-mobile-drawer #site-nav-mobile {
  margin-top: 20px;
}
#site-mobile-drawer ul, #site-mobile-drawer li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site-mobile-drawer a {
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #15214e;
}
#site-mobile-drawer a:not([href]) {
  cursor: default;
}
#site-mobile-drawer .menu-item.menu-item-has-children > a {
  cursor: default;
}
#site-mobile-drawer .menu-item.menu-item-has-children > a::after {
  content: "";
  position: relative;
  top: -2px;
  left: 5px;
  display: inline-block;
  width: 13px;
  height: 10px;
  background-image: url("img/icon--has-submenu-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media (hover: hover) {
  #site-mobile-drawer .menu-item:not(.menu-item-has-children) > a:hover {
    text-decoration: underline;
  }
}
#site-mobile-drawer .sub-menu {
  margin-left: 20px;
}
#site-mobile-drawer .menu-item-has-children:not(.open-submenu) .sub-menu {
  display: none;
}
#site-mobile-drawer .container--buttons {
  margin-top: 7px;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 20px;
}
#site-mobile-drawer .container--buttons a {
  border: 2px solid #6a89b8;
}
#site-mobile-drawer .container--buttons a:first-child {
  background-color: #6a89b8;
  color: #fff !important;
}
#site-mobile-drawer .container--buttons a:nth-child(2) {
  color: #6a89b8 !important;
}
@media (hover: hover) {
  #site-mobile-drawer .container--buttons a:nth-child(2):hover {
    color: #fff !important;
  }
}
#site-mobile-drawer .container--buttons a:nth-child(n+3) {
  display: none;
}
@media (hover: hover) {
  #site-mobile-drawer .container--buttons a:hover {
    background-color: #4b6996;
    border-color: #4b6996;
  }
}

#page-footer {
  padding: 60px 0;
  color: #14214d;
}
#page-footer img {
  max-width: 100%;
  height: auto;
}
@media (width < 576px) {
  #page-footer > .container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
}
@media (width >= 576px) {
  #page-footer > .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, min-content);
    justify-content: space-between;
    column-gap: 30px;
  }
}
@media (width >= 768px) {
  #page-footer > .container {
    grid-template-columns: 39% 48%;
  }
}
@media (width >= 992px) {
  #page-footer > .container {
    grid-template-columns: 31% 48%;
  }
}
@media (width >= 1200px) {
  #page-footer > .container {
    grid-template-columns: 27% 40%;
  }
}
@media (width >= 1400px) {
  #page-footer > .container {
    grid-template-columns: 23% 40%;
  }
}
#page-footer .group.logo.social {
  grid-area: 1/1/2/2;
}
@media (width >= 768px) {
  #page-footer .group.logo.social {
    grid-area: 1/1/3/2;
  }
}
#page-footer .logo {
  width: 100%;
  max-width: 290px;
}
@media (width >= 1200px) {
  #page-footer .logo {
    max-width: 300px;
  }
}
#page-footer * + .container--social {
  margin-top: 30px;
}
#page-footer .container--social ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}
#page-footer .container--social a {
  display: inline-block;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
}
#page-footer .container--social a.facebook {
  width: 12px;
  background-image: url("img/social--facebook.svg");
}
#page-footer .container--social a.instagram {
  width: 24px;
  background-image: url("img/social--instagram.svg");
}
#page-footer .container--social a.yelp {
  width: 20px;
  background-image: url("img/social--yelp.svg");
}
@media (width < 576px) {
  #page-footer * + .group.phone.address .container--phone {
    margin-top: 15px;
  }
}
#page-footer .group.phone.address {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  grid-area: 1/2/2/3;
}
@media (width >= 768px) {
  #page-footer .group.phone.address {
    align-items: start;
    grid-area: 1/2/2/3;
  }
}
@media (width >= 992px) {
  #page-footer .group.phone.address {
    flex-direction: row;
    align-items: start;
    column-gap: 30px;
  }
}
#page-footer .container--phone,
#page-footer .container--address {
  position: relative;
  padding-left: 25px;
}
#page-footer .container--phone::before,
#page-footer .container--address::before {
  content: "";
  position: absolute;
  left: 0;
  background-size: contain;
}
#page-footer .container--phone {
  line-height: 1.88;
}
#page-footer .container--phone::before {
  top: 7px;
  width: 14px;
  height: 15px;
  background-image: url("img/icon--phone.svg");
}
#page-footer .container--phone a {
  text-decoration: none;
  color: #14214d;
}
@media (width < 992px) {
  #page-footer * + .container--address {
    margin-top: 30px;
  }
}
#page-footer .container--address {
  line-height: 1.44;
}
#page-footer .container--address::before {
  top: 1px;
  width: 13px;
  height: 17px;
  background-image: url("img/icon--pin.svg");
}
@media (width >= 576px) {
  #page-footer * + .container--copyright {
    margin-top: 45px;
  }
}
@media (width >= 768px) {
  #page-footer * + .container--copyright {
    margin-top: 30px;
  }
}
#page-footer .container--copyright {
  grid-area: 2/1/3/3;
  text-align: center;
  color: #767676;
  font-size: 14px;
  line-height: 2;
}
@media (width >= 768px) {
  #page-footer .container--copyright {
    grid-area: 2/2/3/3;
    text-align: left;
  }
}
