/**
 * This stylesheet is RENDER-BLOCKING
 *
 * @format
 */

/* Only add priority styles that occur near the top of the page and/or prevent page jitter */

/*
CORE
HEADER
MENUS
BANNER
PRIORITY
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
  --font-size-h1: 2.75rem;
  --font-size-h2: 2.5rem;
  --font-size-h3: 1.875rem;
  --font-size-h4: 1rem;
  --font-size-base: 1.125rem;
  --color-body-text: #092538;
  --color-primary: #cc753a;
  --color-secondary: #092538;
  --color-alternate: #a86638;
  --color-dark: #021b2c;
  --color-dark-alt: #1a1818;
  --color-gray: #faf5f1;
  --color-gray-dark: #6d6f72;
  --color-gray-alt: #b9b9b9;
  --color-white: #fff;
  --color-near-white: #c3c3c3;
  --color-black: #000;
  --color-border: rgba(112, 112, 112, 0.5);
  --color-line: #7ba6bb;
  --color-near-black: #28484e;
  --color-warning: #f10f0f;
  --font-family-body: 'Avenir', sans-serif;
  --font-family-icon: 'Font Awesome 6 Pro';
  --font-family-heading: 'Times New Roman', sans-serif;
  --header-height: 100px;
  --gutter-size: 30px;
  --width-normal: 1004px;
  --width-narrow: 1024px;
  --width-wide: 1599px;
  --swiper-theme-color: var(--color-primary);
  --swiper-navigation-color: var(--color-alternate);
  --swiper-pagination-bullet-inactive-color: var(--color-body-text);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bottom: -50px;
  font-size: 16px;
}

@media screen and (min-width: 160px) {
  :root {
    --width-normal: 1360px;
  }
}

@media screen and (min-width: 1921px) {
  /* TABLET */
  :root {
    --font-size-h1: 3.75rem;
    --font-size-h4: 1.063rem;
  }
}

#container {
  position: relative;
  right: 0;
  top: 0;
  overflow: clip;
  min-height: 100vh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  display: block !important;
  line-height: 1.6;
  color: var(--color-body-text);
  font-size: var(--font-size-base);
  font-family: var(--font-family-body);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus-visible {
  outline: auto;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Hidden elements */
.hide,
.show-in-pdf,
.show-for-pdf,
.gfield--type-captcha,
.grecaptcha-badge {
  display: none !important;
}

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 30px;
  color: var(--color-secondary);
  font-weight: 500;
  font-family: var(--font-family-body), sans-serif;
  line-height: 1.2;
}

h1,
.h1 {
  font-weight: 400;
  line-height: 1.1;
  font-size: var(--font-size-h1);
  font-family: var(--font-family-heading), sans-serif;
}

h2,
.h2 {
  text-transform: uppercase;
  font-size: var(--font-size-h2);
}

h3,
.h3 {
  text-transform: uppercase;
  font-size: var(--font-size-h3);
}

h4,
.h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-size: var(--font-size-h4);
}

h5,
h6 {
  font-size: var(--font-size-h5);
}

h2 strong,
h3 strong {
  font-weight: 700;
}

h1 span.subtitle,
h2 span.subtitle {
  display: block;
  color: var(--color-secondary);
  font-size: 50%;
}

p {
  margin: 0 0 30px;
}

ul {
  list-style: none;
}

/* CORE > Links and Buttons */
a {
  color: var(--color-near-black);
  text-decoration: underline;
}

a:hover,
a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
  text-decoration: underline;
}

a,
button,
.button,
.wp-element-button {
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button,
.wp-element-button {
  font-family: var(--font-family-body), sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  border: 3px solid transparent;
  margin: 0;
  padding: 20px 30px;
  border-radius: 0;
  text-align: center;
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-primary);
  text-decoration: none;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus {
  background-color: transparent;
  color: var(--color-primary);
  text-decoration: none;
  border-color: var(--color-primary);
}

button.alt-01,
.button.alt-01 {
  color: var(--color-white);
  background-color: var(--color-near-black);
}

button.alt-01:hover,
button.alt-01:focus,
.button.alt-01:hover,
.button.alt-01:focus {
  border-color: var(--color-near-black);
  background-color: transparent;
  color: var(--color-near-black);
}

button.alt-02,
.button.alt-02 {
  background-color: var(--color-near-black);
}

button.alt-02:hover,
button.alt-02:focus,
.button.alt-02:hover,
.button.alt-02:focus {
  background-color: var(--color-alternate);
  color: var(--color-white);
}

button.outline,
.button.outline {
  background: none;
  border-color: var(--color-alternate);
  color: var(--color-alternate);
}

button.outline:hover,
button.outline:focus,
.button.outline:hover,
.button.outline:focus {
  background: var(--color-alternate);
  color: var(--color-white);
}

button.outline.outline-alt-01,
.button.outline.outline-alt-01 {
  border-color: var(--color-white);
  color: var(--color-white);
}

button.outline.outline-alt-01:hover,
button.outline.outline-alt-01:focus,
.button.outline.outline-alt-01:hover,
.button.outline.outline-alt-01:focus {
  background: var(--color-near-white);
  color: var(--color-primary);
}

button.link,
.button.link,
button.no-button,
.button.no-button {
  border: 0;
  padding: 4px 0;
  font-size: 0.938rem;
  background: none;
  font-weight: 500;
  position: relative;
  text-transform: none;
  color: var(--color-body-text);
}

button.link i,
.button.link i,
button.no-button i,
.button.no-button i {
  color: var(--color-primary);
}

button.no-button:after,
.button.no-button:after {
  left: 0;
  top: 100%;
  content: '';
  height: 2px;
  width: 100%;
  display: block;
  position: absolute;
  background-color: var(--color-primary);
}

button.link:hover,
button.link:focus,
.button.link:hover,
.button.link:focus,
button.no-button:hover,
button.no-button:focus,
.button.no-button:hover,
.button.no-button:focus {
  color: var(--color-primary);
  text-decoration: none;
}

button.link,
.button.link {
  padding: 0;
  font-style: italic;
  font-size: 1.563rem;
  letter-spacing: normal;
  font-family: var(--font-family-heading), sans-serif;
}

button.link i,
.button.link i {
  font-size: 1.188rem;
  font-style: normal;
}

/* CORE > Page Structure */
main {
  padding: 30px 0;
  min-height: 450px;
  display: block;
  width: 100%;
  flex: 1;
}

.no-banner main {
  padding-top: 180px;
}

.content.full-width {
  float: none;
}

.content img {
  max-width: 100%;
  height: auto;
}

.content section:not(:last-of-type) {
  margin-bottom: 60px;
}

.columns,
.column {
  padding: 0 var(--gutter-size);
}

.row,
.row-wide,
.row-narrow {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: calc(var(--width-normal) + var(--gutter-size) * 2);
}

.row-narrow {
  max-width: calc(var(--width-narrow) + var(--gutter-size) * 2);
}

.row-wide {
  max-width: calc(var(--width-wide) + var(--gutter-size) * 2);
}

.row::after {
  clear: both;
}

.row:not(.main-inner)::before,
.row:not(.main-inner)::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1;
}

.row.main-inner::before,
.row.main-inner::after {
  display: none;
}

@media screen and (min-width: 768px) {
  main {
    padding: 40px 0;
  }

  .main-inner {
    display: flex;
  }
}

@media screen and (min-width: 1920px) {
  main {
    padding: 60px 0;
  }
}

/* CORE > Priority Utility Classes */
.no-float {
  float: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-min-height {
  min-height: 0;
}

img.responsive-img,
.responsive-img img {
  max-width: 100%;
  height: auto;
}

.position-static,
.static {
  position: static !important;
}

.position-relative,
.relative {
  position: relative !important;
}

.position-absolute,
.absolute {
  position: absolute;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.visually-hidden {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.no-background {
  background: none !important;
}

.animate-in-view,
.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1 !important;
}

.uppercase {
  text-transform: uppercase;
}

.small-text {
  font-size: 0.9rem;
}

.larger-text {
  font-size: 1.2rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.bold,
.font-bold {
  font-weight: 700;
}

.font-extra-bold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .show-for-large {
    display: none !important;
  }
}

/*******************************************************************************************
HEADER
*******************************************************************************************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: 200ms ease-out;
}

.header a {
  text-decoration: none;
}

.header > .row {
  height: 100%;
}

.header-desktop {
  display: none;
}

.header-logo {
  width: 107px;
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 100%;
  display: block;
}

.header-phone {
  font-weight: 900;
  color: var(--color-primary);
  font-size: 1.375rem;
  margin-left: 14px;
  display: inline-block;
}

.header-phone i {
  font-size: 70%;
}

.header-right {
  display: none;
  flex-direction: column;
  height: 100%;
}

.header-right-top {
  flex: 1;
  display: none;
  font-weight: 500;
  font-size: 0.875rem;
  justify-content: flex-end;
  align-items: center;
  color: var(--color-white);
}

.header-right-bottom {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -ms-align-items: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  justify-content: flex-end;
}

.header-mobile-inner {
  display: flex;
  padding: 18px var(--gutter-size);
}

.header-mobile-buttons {
  display: flex;
  margin-left: 4%;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

.header-mobile-phone,
.mobile-menu-toggle {
  border-width: 2px;
  display: flex;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex: 1;
  max-width: 43px;
  width: 43px;
  height: 54px;
}

.mobile-menu-toggle {
  flex-direction: column;
  margin-left: 10px;
  font-size: 1.375rem;
}

.mobile-menu-toggle span {
  display: block;
  margin-top: 5px;
  font-weight: 600;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.header-mobile-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 30px;
  font-size: 0.813rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
}

body.scrolled .header {
  box-shadow: 0 10px 10px rgba(5, 27, 43, 0.2);
  background-color: var(--color-secondary);
}

body.admin-bar .header {
  margin-top: 46px;
}

@media screen and (min-width: 641px) {
  .header-logo {
    width: 130px;
  }

  .header-right-top {
    display: flex;
    padding: 5px 0;
  }

  .header-mobile-buttons {
    flex: none;
    margin-left: 0;
  }

  .header-mobile-phone {
    display: none;
  }

  .header-mobile-inner {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 782px) {
  .header-logo {
    width: 182px;
  }

  body.admin-bar .header {
    margin-top: 32px;
  }
}

@media screen and (min-width: 1025px) {
  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: block;
  }

  .header-right {
    flex: 1;
    display: flex;
  }

  .header-inner {
    padding: 27px var(--gutter-size);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    position: relative;
  }

  .header-right-top {
    padding-top: 0;
    line-height: 1;
    padding-bottom: 14px;
  }

  .header-right-top {
    font-size: 0.875rem;
  }

  .header-phone {
    font-size: 1.438rem;
  }

  .mobile-menu-toggle {
    margin-left: 25px;
  }
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.main-navigation-menu li {
  display: block;
  position: relative;
  padding: 0;
}

.main-navigation-menu > li:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.main-navigation-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 220px;
  margin: 0;
  padding-top: 10px;
}

.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideDown 200ms both;
  animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
  color: var(--color-primary);
  text-decoration: none;
}

.main-navigation-menu > li > a {
  position: relative;
  display: block;
  height: 100%;
  color: var(--color-white);
  line-height: 1;
  font-size: 1.031rem;
  font-weight: 800;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li {
  background: var(--color-secondary);
  transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
  position: relative;
  cursor: pointer;
}

#desktop-navigation .sub-menu li a {
  color: var(--color-white);
  font-size: 0.9rem;
  display: block;
  padding: 12px;
  line-height: 1;
  text-decoration: none;
}

#desktop-navigation .sub-menu li.active {
  background: var(--color-dark);
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
  display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideRight 200ms both;
  animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#mobile-navigation {
  display: none;
}

/*******************************************************************************************
BANNER - Page-top image and title
*******************************************************************************************/

.banner {
  height: 320px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-color: var(--color-secondary);
}

.banner:after,
.banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.banner:after {
  height: 192px;
  background: linear-gradient(to top, rgba(5, 27, 43, 0) 0%, rgba(5, 27, 43, 0.475) 28.6%, rgba(5, 27, 43, 1) 100%);
}

.banner::before {
  background: rgba(9, 37, 56, 0.5);
}

.banner img {
  position: relative;
  width: 100%;
}

.banner > .row {
  height: 100%;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  float: none;
  padding-top: 100px;
}

.banner-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-family-body), sans-serif;
}

body.admin-bar .banner {
  margin-top: 46px;
}

@media screen and (min-width: 782px) {
  body.admin-bar .banner {
    margin-top: 32px;
  }
}

@media screen and (min-width: 1025px) {
  .banner {
    height: 500px;
  }

  .banner-title {
    font-size: 3.125rem;
    letter-spacing: 7px;
  }
}

/*******************************************************************************************
PRIORITY - Other important styles
*******************************************************************************************/

.accordion-item-title {
  background: none;
}

.swiper {
  visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  background: none !important;
  padding: 0;
}
