/*
Theme Name: Go With the Float
Theme URI: http://cdevision.com/
Author: cdeVision
Author URI: http://cdevision.com/
Description: Custom theme for Go With the Float
Version: 4.0
License: No copy or resale
License URI: http://cdevision.com/
Text Domain: Go With the Float
Tags: 
*/
/* 

CSS RESET 

Mostly:
https://www.joshwcomeau.com/css/custom-css-reset/

Added:
https://piccalil.li/blog/a-modern-css-reset/

Tweaks:
https://www.youtube.com/watch?v=h3bTwCqX4ns


*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*
  Added
*/
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles - Used * above instead

input, button, textarea, select {
  font: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*	
    --------------------------------------------------
    Body
	--------------------------------------------------
*/
html {
  overflow-y: scroll;
}

body {
  background: #FFFCF4;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
}

#skipnav {
  display: none;
}

/*	
    --------------------------------------------------
   	Grid
	-------------------------------------------------- 
*/
.container {
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
}

.main-content-inner {
  display: grid;
  max-width: 100%;
  grid-template-columns: minmax(20px, 1fr) minmax(50px, 410px) minmax(50px, 410px) minmax(50px, 410px) minmax(20px, 1fr);
}

.fullscreen {
  grid-column: 1/6;
}

.fullwidth {
  grid-column: 2/5;
}

.twothirds {
  grid-column: 3/5;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0px;
}

.col.sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}

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

@media (max-width: 1270px) {
  .col.sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
/* tablet */
@media (max-width: 1000px) {
  .main-content-inner {
    grid-template-columns: 20px minmax(50px, 1fr) minmax(50px, 1fr) minmax(50px, 1fr) 20px;
  }
  .columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .columns.three {
    display: block;
  }
  .columns.four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .columns.four .col {
    max-width: 100%;
    width: 100%;
  }
  .col.sidebar {
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .columns.revmob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
/* small Mobile */
@media (max-width: 600px) {
  .container {
    max-width: 100%;
  }
  .columns,
.columns.four {
    display: block;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    gap: 0;
  }
  .columns .col,
.col.sidebar {
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }
  .col.sidebar {
    margin-top: 50px;
  }
}
/*	
  ----------------------------------------------------------------
  Base - Typography and other classes - included into TinyMCE
	----------------------------------------------------------------
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #294343;
  margin: 20px 0 5px 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #294343;
  text-decoration: none;
  font-weight: 300;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
  text-align: center;
}

h1,
.h1 {
  font-size: 58px;
  line-height: 68px;
  color: #294343;
  font-weight: 400;
  margin: 20px 0 5px 0;
}

h2,
.h2 {
  font-size: 38px;
  line-height: 48px;
  color: #294343;
  font-weight: 300;
  margin: 20px 0 5px 0;
}

h3,
.h3 {
  font-size: 34px;
  line-height: 44px;
  color: #294343;
  font-weight: 300;
  margin: 20px 0 5px 0;
}

h4,
.h4 {
  font-size: 30px;
  line-height: 40px;
  color: #294343;
  font-weight: 300;
  margin: 20px 0 5px 0;
}

h5,
h6 {
  font-size: 30px;
  line-height: 40px;
  color: #294343;
  font-weight: 300;
  margin: 20px 0 5px 0;
}

/* Mobile */
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: 52px;
    line-height: 62px;
  }
  h2,
.h2 {
    font-size: 32px;
    line-height: 42px;
  }
  h3,
.h3 {
    font-size: 28px;
    line-height: 38px;
  }
  h4,
.h4 {
    font-size: 26px;
    line-height: 36px;
  }
  h5,
h6 {
    font-size: 26px;
    line-height: 36px;
  }
}
p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  font-weight: normal;
  margin: 0 0 24px 0;
}

p.smallmargin {
  margin: 0 0 10px 0;
}

p img {
  margin: 0;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ul {
  margin: 0 0 30px 20px;
  padding: 0;
}

ul li {
  margin: 0 0 12px 0;
  padding: 0 0 0 4px;
  list-style: url(images/bullet.png);
}

ul ul {
  margin: 10px 0 10px 60px;
  padding: 0;
}

ol {
  margin: 0 0 30px 20px;
  padding: 0;
}

ol li {
  margin: 0 0 12px 0;
  padding: 0 0 0 4px;
}

ol ol {
  margin: 10px 0 10px 60px;
  padding: 0;
}

blockquote {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  line-height: 22px;
}

blockquote p {
  padding: 0 0 0 45px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  border: none;
}

p.wp-caption-text {
  font-size: 12px !important;
  line-height: 20px !important;
  text-align: center !important;
  padding: 0 20px 0 20px;
  color: #666;
  font-style: normal;
  margin: 0;
}

.gallery-caption {
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  padding: 4px 35px 0 10px;
  color: #666;
  font-style: normal;
  margin: 0;
}

/*	--------------------------------------------------
	Links
	-------------------------------------------------- */
a {
  color: #4BAAC1;
  line-height: inherit;
  word-wrap: break-word;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: inherit;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: inherit;
}

a:visited {
  line-height: inherit;
  color: #4BAAC1;
}

a:hover {
  color: #294343;
  font-weight: bold;
  text-decoration: none !important;
}

a.box {
  display: inline-block;
  margin: 0;
  padding: 5px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 400 !important;
  position: relative;
  background: #4BAAC1;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 8px;
}

a.box:visited {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
}

a.box.back {
  padding: 6px 12px 6px 30px;
}

a.box.rev {
  color: #294343;
  background: transparent;
  border: 1px solid #294343;
}

a.box.white {
  color: #FFF;
  background: transparent;
  border: 1px solid #FFF;
}

a.box.white:visited {
  color: #FFF;
  background: transparent;
  border: 1px solid #FFF;
}

a.box.pdf:after {
  font-size: 20px;
  content: "\f1c1";
  padding-left: 10px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box.down:after {
  font-size: 18px;
  content: "\f078";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #294343;
}

a.box.rev:hover {
  color: #FFF;
  background-color: #4BAAC1;
  border: 1px solid #4BAAC1;
}

a.box.white:hover {
  color: #FFF;
  background-color: #4BAAC1;
  border: 1px solid #4BAAC1;
}

.linkwrap {
  margin-top: -10px;
}

p + p.linkwrap {
  margin-top: -10px;
}

/*	--------------------------------------------------
	Misc
	-------------------------------------------------- */
/* Utility classes */
.no-pad {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

.color-white {
  color: #FFF;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.clearfloats {
  clear: both;
  line-height: 0px;
  height: 0px;
  font-size: 0px;
}

.clearfloats.spacer {
  height: 20px;
}

div[id*=gallery-] {
  margin: 20px 0 20px 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.accordiancontent div[id*=gallery-] {
  margin: 30px 0 !important;
}

div[id*=gallery-] .gallery-item {
  margin: 0 !important;
}

.gallery-item {
  margin: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

.gallery br {
  display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
  div[id*=gallery-] {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
div[id*=gallery-] img {
  border: none !important;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

div[id*=gallery-] img:hover {
  opacity: 0.8;
}

img[class*=wp-image-] {
  margin-top: 0;
  margin-bottom: 0;
}

/* Images sizes */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 4px 30px 20px 0 !important;
  display: block;
}

.alignright {
  float: right;
  margin: 4px 0 20px 30px !important;
  display: block;
}

.widget {
  margin-bottom: 0;
  margin-top: 0;
}

.wp-caption {
  padding: 0;
  border: none;
}

@media handheld, only screen and (max-width: 767px) {
  .alignleft {
    max-width: 40% !important;
    height: auto;
  }
  .alignright {
    max-width: 40% !important;
    height: auto;
  }
  .main-content-inner img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .attachment-thumbnail {
    max-width: 100% !important;
    height: auto !important;
  }
}
.fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.fancybox-toolbar {
  right: auto !important;
  left: 0;
  top: 0;
}

/* Object Fit Image */
.object-fit-image {
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
}

.object-fit-image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: center center;
     object-position: center center;
}

/* Appear Items */
.has-animation {
  opacity: 0;
  -webkit-transition-duration: 0.35s;
          transition-duration: 0.35s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

.has-animation.animate-in {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

/* Mobile */
/*	--------------------------------------------------
   	Header
	-------------------------------------------------- */
/* Header */
.site-header {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #FFFCF4;
}

.site-header .wrap {
  position: static;
}

.site-header__pad {
  height: 128px;
  position: relative;
}

/* Site Branding */
.site-branding {
  width: 250px;
  height: 86px;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.site-branding__site-title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.site-branding__site-title a {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  text-indent: -4000px;
  background: url(images/logo.png) no-repeat;
  background-size: contain;
}

/* Mobile */
@media (max-width: 767px) {
  .site-branding {
    width: 250px;
    height: 86px;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* Tool */
.tool {
  position: absolute;
  right: 0;
  top: 20px;
}

.scrolled .tool {
  top: 0;
}

.tool .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

span.soc_title {
  font-family: "trajan-pro-3", serif;
  font-size: 17px;
  line-height: 30px;
  color: #294343;
  color: #294343;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1250px) {
  #masthead .tool {
    right: 50px;
    top: 20px;
  }
  .mobile-menu-cover .tool {
    display: none;
    position: static;
    margin: 15px 30px 0 30px;
  }
  .mobile-menu-cover .tool .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Mobile */
@media (max-width: 860px) {
  #masthead .tool {
    display: none;
  }
  .social.header {
    margin: 0 0 25px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* Social */
.social {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.social a {
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #294343;
  text-decoration: none;
  font-weight: normal;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.social a.fa-youtube {
  font-size: 22px;
}

.social a:hover {
  color: #4BAAC1;
}

.social.footer a {
  color: #FFF;
}

.social.footer a:hover {
  color: #FFF;
  opacity: 0.5;
}

@media (max-width: 1250px) {
  .mobile-menu-cover .tool .social {
    position: static;
    margin: 20px 0 50px 0;
  }
  .mobile-menu-cover .tool .social a {
    font-size: 30px;
    line-height: 30px;
    color: #FFF;
    padding: 0;
    margin: 0 20px 0 0;
  }
  .mobile-menu-cover .tool .social a:hover {
    color: #4BAAC1;
  }
}
/* Header Links */
.header_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

/*	--------------------------------------------------
   	Nav Bar - Desk
	-------------------------------------------------- */
.primary-navigation {
  position: absolute;
  bottom: 0;
  right: 0;
}

.primary-navigation .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

.primary-menu .menu-item {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
}

.primary-menu .menu-item a {
  display: block;
  font-size: 17px;
  line-height: 60px;
  margin: 0;
  padding: 0 12px;
  text-decoration: none;
  color: #294343;
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.primary-menu li.menu-item-has-children.menu-item > a:after {
  font-size: 18px;
  content: "\f078";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.primary-menu .menu-item:last-child a {
  padding-right: 0;
}

.primary-menu .menu-item.current_page_item > a,
.primary-menu .menu-item.current-menu-item > a,
.primary-menu .menu-item.current-post-ancestor > a,
.primary-menu .menu-item.current-category-ancestor > a,
.primary-menu .menu-item.current_page_ancestor > a {
  color: #4BAAC1;
}

.primary-menu .menu-item:hover > a {
  color: #4BAAC1;
}

.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 99999;
  background: #FFFCF4;
  padding: 0;
  min-width: 100%;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  -webkit-box-shadow: 0px 4px 2px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 2px 2px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1420px) {
  .primary-menu .menu-item:last-child .sub-menu {
    left: auto;
    right: 0;
  }
}
/*.menu-desk > ul > li:hover > ul { display:block; }*/
.primary-menu .sub-menu .menu-item {
  padding: 0;
  margin: 0;
}

.primary-menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 15px;
  line-height: 22px;
  font-family: "trajan-pro-3", serif;
  font-style: normal;
  font-weight: 400;
  padding: 5px 12px;
  color: #294343;
  background: none;
  white-space: nowrap;
}

.primary-menu .sub-menu .menu-item:first-child a {
  padding-top: 12px;
}

.primary-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 12px;
}

.primary-menu .menu-item .sub-menu .menu-item a:hover {
  color: #4BAAC1;
}

.primary-menu .menu-item .sub-menu .menu-item.current-menu-item > a {
  color: #4BAAC1;
}

@media (max-width: 1250px) {
  .primary-navigation {
    display: none;
  }
}
/*	--------------------------------------------------
   	Menu Mobile
	-------------------------------------------------- */
.mobile-hamburger {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 999999;
}

.mobile-hamburger__link {
  background: #4BAAC1 url(images/mob.png) 0 0 no-repeat !important;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  padding: 0;
  text-indent: -4000px;
}

.mobile-hamburger__link.open {
  background: #011229 url(images/mob.png) 0 -30px no-repeat !important;
}

.mobile-menu-cover {
  display: none;
  background: #011229 url(images/mob_back.jpg) right top no-repeat;
  color: #FFF;
  padding: 0;
  clear: both;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  height: 150%;
  max-width: 340px;
  min-width: 340px;
  overflow: auto;
  z-index: 99999;
}

.mob-nav-container {
  margin: 0;
  padding: 0;
  display: none;
}

.mob-nav-menu {
  margin: 40px 30px 0 30px;
  padding: 0;
}

.mob-nav-menu .menu-item {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mob-nav-menu .menu-item a {
  font-size: 24px;
  line-height: 32px;
  padding: 6px 0;
  display: block;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  font-weight: 300;
  font-style: normal;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.mob-nav-menu li.menu-item-has-children.menu-item > a:after {
  font-size: 18px;
  content: "\f078";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.mob-nav-menu .menu-item a:hover {
  color: #FFF;
  opacity: 0.5;
}

.mob-nav-menu .sub-menu {
  display: none;
  margin: 0 0 10px 20px;
  padding: 0;
  z-index: 99999;
  padding: 0;
}

.mob-nav-menu .sub-menu .menu-item a {
  font-size: 18px;
  line-height: 24px;
  padding: 6px 0;
  display: block;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

.mob-nav-menu .sub-menu .menu-item:first-child a {
  padding-top: 4px;
}

.mob-nav-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 10px;
}

.mobile_link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 30px;
  margin-bottom: 15px;
  margin-top: 10px;
}

@media (max-width: 1250px) {
  .mobile-hamburger {
    display: block;
    top: 22px;
    right: 20px;
  }
  .mobile-menu-cover {
    max-width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 660px) {
  .mobile-hamburger {
    top: 10px;
    right: 10px;
  }
  .mobile-menu-cover {
    max-width: 100%;
    min-width: 100%;
  }
}
/*	--------------------------------------------------
   	Home
	-------------------------------------------------- */
/* Alert */
.alertbar {
  background: #294343;
  padding: 15px 0;
  font-family: "Lato", sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
}

.alertbar .container {
  position: relative;
}

.alertbar .text {
  padding-right: 30px;
  font-family: "Lato", sans-serif;
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
}

.alertbar .text p {
  font-family: "Lato", sans-serif;
  color: #FFF;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

.alertbar .text a {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.alertbar .text a:hover {
  color: #FFF;
  font-weight: bold;
  text-decoration: underline;
  opacity: 0.6;
}

.alertbar .close {
  position: absolute;
  right: 10px;
  top: 0;
  font-size: 16px;
  line-height: 24px;
  width: 24px;
  text-align: center;
  color: #FFF;
  font-weight: normal;
}

.alertbar .close:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* Elevator */
.elevator .wrap {
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #294343;
  padding: 150px 0 0 0;
}

.elevator_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding-bottom: 80px;
}
.elevator_body .video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}
.elevator_body .video .videoWrapper {
  margin: 0;
}
.elevator_body .video .vwrap {
  margin: 0;
}
.elevator_body .text h2 {
  font-size: 50px;
  line-height: 60px;
  margin-top: 0;
  color: #FFF;
}
.elevator_body .text p {
  font-size: 18px;
  margin: 0 0 20px 0;
  color: #FFF;
}

/* mobile */
@media (max-width: 1200px) {
  .elevator .wrap {
    background-color: #000;
  }
}
@media (max-width: 1000px) {
  .elevator .wrap {
    padding: 300px 0 0 0;
  }
  .elevator_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 30px;
  }
  .elevator_body .video {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .elevator_body .text h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
.elevator_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

/* mobile */
@media (max-width: 767px) {
  .elevator_links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Benefits Section */
.benefits_section {
  padding: 40px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.benefit_columns {
  display: grid;
  grid-template-columns: 300px 1fr 1fr;
  gap: 30px;
  color: #FFF;
}
.benefit_columns h3 {
  font-size: 36px;
  line-height: 42px;
  color: #FFF;
  margin-top: -4px;
  margin-bottom: 10px;
}
.benefit_columns p {
  color: #FFF;
  margin-bottom: 20px;
}
.benefit_columns ul li {
  list-style: url(images/bullet_white.png);
}

/* Mobile */
@media (max-width: 1000px) {
  .benefit_columns {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .benefit_columns .headline {
    grid-column: 1/3;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .benefit_columns {
    display: block;
  }
  .benefit_columns .headline {
    margin-bottom: 30px;
  }
  .benefit_columns h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .benefit_columns ul {
    margin-bottom: 0;
  }
}
/* Home Featured */
.featured_section {
  background: #3A525B url(images/featured_back.png) center center no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.home_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.home_features .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.home_features .feature img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
  border-radius: 50%;
  display: block;
}
.home_features .feature .text h3 {
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 6px 0;
  color: #FFF;
}
.home_features .feature .text p {
  margin: 0 0 20px 0;
  color: #FFF;
}

@media (max-width: 1200px) {
  .featured_section {
    background: #3A525B;
  }
  .home_features {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
  .home_features .feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .home_features .feature img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 285px;
            flex: 0 0 285px;
    border-radius: 50%;
    display: block;
  }
  .home_features .feature .text h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 6px 0;
    color: #FFF;
  }
  .home_features .feature .text p {
    margin: 0 0 20px 0;
    color: #FFF;
  }
}
@media (max-width: 600px) {
  .home_features .feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 285px;
    margin: 0 auto;
  }
  .home_features .feature img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}
/*	--------------------------------------------------
   	Content
	-------------------------------------------------- */
/* Page wrap */
.pagewrap {
  padding: 0 0 80px 0;
}

/* Page header */
.page-header {
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.page-header.video {
  height: 450px;
  background-color: #000;
}

.page-header.videohome {
  height: 600px;
  margin-bottom: 0;
  background-color: #000;
}

.page-header img,
.page-header video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  height: 100%;
  z-index: 10 !important;
}

.page-header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(calc(-1230px/2), 0);
          transform: translate(calc(-1230px/2), 0);
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20 !important;
}
.page-header .wrap .link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.page-header h1,
.page-header .blog-title {
  margin: 0 0 2px 0;
  padding: 0;
  color: #FFF;
  text-transform: uppercase;
}

p.banner_intro {
  color: #FFF;
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 12px 0;
}

/* Mobile */
@media (max-width: 1330px) {
  .page-header {
    margin-bottom: 50px;
  }
  .page-header .wrap {
    left: 0;
    -webkit-transform: none;
            transform: none;
    padding-left: 20px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .page-header {
    height: 300px;
  }
  .page-header.video,
.page-header.videohome {
    height: 450px;
  }
  .page-header h1,
.page-header .blog-title {
    font-size: 38px;
    line-height: 48px;
  }
}
/* Main Content */
.clear-first-child-top-margin > *:first-child {
  margin-top: 0;
}

.clear-last-child-bottom-margin > *:last-child {
  margin-bottom: 0;
}

.intro {
  font-size: 18px;
  line-height: 1.6;
}

.intro p {
  font-size: 18px;
  line-height: 1.6;
}

/*	--------------------------------------------------
   	Sidebar
	-------------------------------------------------- */
.sidebar h3,
.sidebar .h3 {
  font-size: 24px;
  line-height: 34px;
}

.sidebar h4,
.sidebar .h4 {
  font-size: 24px;
  line-height: 34px;
}

.sidebar .fullwidthphoto {
  margin-bottom: 30px;
}

/*	--------------------------------------------------
   	Blog
	-------------------------------------------------- */
/* Blog Header */
.blog_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0 0 50px 0;
  gap: 30px;
}

.blog_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.blog_header ul li {
  list-style: none;
  margin: 0;
}

.blog_header ul li a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #4BAAC1;
}

.blog_header ul li a:hover,
.blog_header ul li.active a {
  font-weight: 700;
  color: #294343;
}

@media (max-width: 767px) {
  .blog_header ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
/* Blog Grid */
.bloggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 30px;
}

.object-fit-image {
  margin-bottom: 10px;
}

.blogitem h3 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .bloggrid {
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*	--------------------------------------------------
   	Pager
	-------------------------------------------------- */
ul.pager {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#nav-below {
  margin: 30px 0 0 0;
}

ul.pager li {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

ul.pager a {
  display: inline-block;
  margin: 0;
  padding: 0 28px 0 12px;
  font-size: 16px;
  line-height: 40px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 400 !important;
  position: relative;
  background: #4BAAC1;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

ul.pager a:before {
  position: absolute;
  right: 12px;
  top: 0;
  font-size: 20px;
  line-height: 40px;
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

ul.pager a:visited {
  color: #FFF;
  text-decoration: none;
}

ul.pager a:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #294343;
}

ul.pager .previous a {
  padding: 0 12px 0 28px;
}

ul.pager .previous a:before {
  content: "\f053";
  right: auto;
  left: 12px;
}

/* Mobile */
/*	--------------------------------------------------
   	Footer
	-------------------------------------------------- */
#colophon {
  padding: 0 0 100px 0;
}

/* Sign Up & Social */
.footer-sign-up {
  padding: 30px 0;
  background: #438EB3;
}

/* Social Bar */
.social_bar .social_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

.social_bar .social_columns .social_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.social_bar .social_columns .social_col.right {
  gap: 0;
}

.social_bar span {
  font-family: "trajan-pro-3", serif;
  font-size: 18px;
  line-height: 45px;
  color: #FFF;
}

/* Mobile */
@media (max-width: 1000px) {
  .social_bar .social_columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    gap: 30px;
  }
}
/* Mobile */
/* Mobile */
@media (max-width: 767px) {
  .social_bar .social_columns {
    gap: 20px;
  }
  .social_bar .social_columns .social a.fa-brands {
    font-size: 30px;
  }
  .social_bar .social_columns .social_col {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 100%;
    gap: 0;
  }
}
/* Mobile */
/* Join mailing list */
#gform_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

#gform_wrapper_2,
#gform_2 li,
#gform_2 .ginput_container,
#gform_2 .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

#gform_2 :focus {
  outline: none;
}

#gform_2 li {
  position: relative;
  max-width: none !important;
  margin: 0 !important;
}

#input_2_1 {
  width: 200px;
  height: 36px;
  margin: 0 !important;
  padding: 0 6px !important;
  font-size: 16px !important;
  line-height: 36px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
}

#input_2_1:focus {
  border: none !important;
  outline: none !important;
}

#gform_2 .gfield_error #input_2_1 {
  border: none;
}

#input_2_1:focus {
  border: none;
  outline: none;
}

#gform_submit_button_2 {
  display: inline-block;
  margin: 0 !important;
  padding: 5px 16px;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 400 !important;
  position: relative;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 8px;
  color: #FFF !important;
  background: transparent !important;
  border: 1px solid #FFF !important;
}

#gform_submit_button_2:hover {
  color: #4BAAC1 !important;
  background: #FFf !important;
  border: 1px solid #FFF !important;
}

#gform_2 img.gform_ajax_spinner {
  display: none !important;
}

#gform_2 .validation_error {
  display: none !important;
}

#validation_message_2_1 {
  position: absolute;
  left: 0;
  top: 40px;
  color: #FFF !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  white-space: nowrap;
}

#gform_confirmation_message_2 {
  color: #FFF !important;
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
}

/* Mobile */
@media (max-width: 767px) {
  #gform_2 {
    margin-left: 0;
    margin-top: 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
  }
  #input_2_1 {
    width: 180px;
    height: 45px;
    margin: 0 10px 0 0;
    padding: 0 6px;
    font-size: 16px !important;
    line-height: 45px !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
  }
  #gform_submit_button_2 {
    height: 45px;
    margin: 0 !important;
    padding: 0 10px !important;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none;
    background: #514C3D;
    font-size: 16px !important;
    line-height: 45px !important;
    color: #FFF;
  }
}
/* Mobile */
.site-footer {
  background: #00020F;
  padding: 0 0 100px 0;
}

.site-footer h3,
.site-footer p {
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 30px 0;
  }
}
/* Mobile */
.footercolumns {
  display: grid;
  grid-template-columns: 530px 1fr 1fr;
  gap: 80px;
  margin-bottom: 40px;
  padding-top: 60px;
}
.footercolumns .loc.image_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.footercolumns .loc h3 {
  font-size: 18px;
  line-height: 30px;
  font-family: "trajan-pro-3", serif;
  color: #FFF;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 1200px) {
  .footercolumns {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footercolumns .loc.image_wrap {
    grid-column: 1/3;
  }
}
@media (max-width: 600px) {
  .footercolumns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footercolumns .loc.image_wrap {
    grid-column: 1/2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Copyright */
.site-info {
  font-size: 12px;
  line-height: 16px;
}

.site-info p {
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 20px 0;
}

.site-info a {
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  text-decoration: none;
  padding-left: 5px;
}

.site-info a:hover {
  text-decoration: underline;
}

/*	--------------------------------------------------
   	Flexible Content
	-------------------------------------------------- */
/* UL columns */
.ul_two ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.ul_three ul {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.ul_four ul {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.ul_two ul li,
.ul_three ul li,
.ul_four ul li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}

@media (max-width: 1200px) {
  .ul_four ul {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
@media (max-width: 1000px) {
  .ul_three ul,
.ul_four ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media (max-width: 700px) {
  .ul_two ul,
.ul_three ul,
.ul_four ul {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .ul_two ul li,
.ul_three ul li,
.ul_four ul li {
    -webkit-column-break-inside: auto;
       -moz-column-break-inside: auto;
            break-inside: auto;
  }
}
/* Spacer */
.spacer_small {
  height: 20px;
}

.spacer_medium {
  height: 40px;
}

.spacer_large {
  height: 60px;
}

.spacer_lumbo {
  height: 80px;
}

/* Full width Photo */
.fullwidthphoto {
  margin-bottom: 50px;
}

.fullwidthphoto img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Column Images */
.column_image.object-fit-image {
  padding-bottom: 100%;
  margin: 10px 0 20px 0;
}

/* Highlight Text Intro */
.headline_left_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
}
.headline_left_intro .headline {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .headline_left_intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
  }
  .headline_left_intro .headline {
    white-space: unset;
  }
  .headline_left_intro .headline br {
    display: none;
  }
}
/* Highlight Box */
.highlight_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 50px 0;
  gap: 30px;
}

.highlight_box.left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.highlight_box .imagecol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}

.highlight_box.narrow .imagecol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}

.highlight_box .text *:last-child {
  margin-bottom: 0 !important;
}

.highlight_box img {
  display: block;
  max-width: 100%;
  height: auto;
}

.highlight_box h2 {
  margin-top: 0;
}

.highlight_box p.caption {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0 0 0;
  text-align: center;
}

.highlight_box ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

@media (max-width: 1100px) {
  .highlight_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px 0 30px 0;
  }
  .highlight_box .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box.narrow .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .highlight_box.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight_box .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
/* Hero Image & Text */
.hero_image {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  margin-top: 30px;
}
.hero_image .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  min-height: 590px;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
}
.hero_image .text h3,
.hero_image .text p {
  color: #FFF;
}

/* Mobile */
@media (max-width: 767px) {
  .hero_image .container {
    padding: 0;
    margin: 0;
  }
  .hero_image .text {
    padding: 50px 20px;
    min-height: 400px;
    max-width: 100%;
  }
}
/* Pricing Grid */
.pricing_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin: 20px 0 30px 0;
}

.pricing_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
  border: 1px solid #919E9E;
  border-radius: 8px;
  padding: 20px;
}
.pricing_card h4 {
  font-size: 28px;
  line-height: 38px;
  margin: 0 0 6px 0;
}
.pricing_card p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0;
}
.pricing_card .price {
  font-size: 58px;
  line-height: 68px;
  font-weight: bold;
  color: #294343;
  margin-bottom: 8px;
}
.pricing_card * {
  text-align: center;
}

@media (max-width: 1200px) {
  .pricing_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .pricing_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 767px) {
  .pricing_grid {
    grid-template-columns: 1fr;
  }
}
/* Pricing Bar */
.pricing_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background-color: #FFF;
  border: 1px solid #919E9E;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  padding-right: 30px;
}
.pricing_bar .image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
  min-height: 285px;
  padding-bottom: 0;
  margin: 0;
}
.pricing_bar .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pricing_bar .text .wrap {
  padding: 20px 0;
}
.pricing_bar .text h4 {
  font-size: 28px;
  line-height: 38px;
  margin: 0 0 6px 0;
}
.pricing_bar .text p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px 0;
}
.pricing_bar .text .price {
  font-size: 58px;
  line-height: 68px;
  font-weight: bold;
  color: #294343;
  margin-bottom: 8px;
}

@media (max-width: 670px) {
  .pricing_bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
  .pricing_bar .image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-height: 285px;
    padding-bottom: 0;
    margin: 0;
  }
  .pricing_bar .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .pricing_bar .text .wrap {
    padding: 0 20px 20px 20px;
    text-align: center;
  }
}
/* Page Quote */
.page-quote {
  padding: 0;
  margin: 60px 150px;
}

.page-quote .quotetext {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 10px;
}

.page-quote .quotetext p {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  text-align: center;
  margin: 0;
}

.page-quote .by {
  font-weight: 400;
  text-align: center;
}

/* small screen - hide on ipad */
@media (max-width: 767px) {
  .page-quote {
    padding: 0;
    margin: 40px 0;
  }
  .page-quote .quotetext {
    font-size: 26px;
    line-height: 36px;
  }
  .page-quote .quotetext p {
    font-size: 26px;
    line-height: 36px;
  }
}
/* Accordion */
.accordianwrap {
  margin: 10px 0 30px 0;
  border-top: 1px solid #cccccc;
}

.accordianwrap.add {
  margin: -31px 0 30px 0;
}

.accordiantitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #cccccc;
}

.accordiantitle .fa-solid {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #4BAAC1;
  float: left;
  margin: 0;
}

.accordiantitle:hover .fa-solid {
  cursor: pointer;
  color: #294343;
}

.accordiantitle.open .closedicon {
  display: none;
}

.accordiantitle.open .openicon {
  display: block;
}

.accordiantitle .openicon {
  display: none;
}

.accordiantitle h3 {
  line-height: 30px;
  font-size: 16px;
  color: #333;
  padding: 0 0 0 12px;
  margin: 0;
  font-weight: 400;
}

.accordiantitle:hover h3 {
  cursor: pointer;
  color: #333;
}

.accordiantitle.open:hover h3 {
  cursor: pointer;
}

.accordiancontent {
  display: none;
  padding: 20px 34px 1px 34px;
  margin: 0;
}
.accordiancontent ul {
  margin-left: 30px;
}

/* Mobile */
@media (max-width: 767px) {
  .accordiancontent {
    display: none;
    padding: 20px 0 1px 0;
    margin: 0;
  }
}
/* Video embeds */
.vwrap {
  max-width: 100%;
  margin: 0 auto 50px auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
  margin-bottom: 30px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */
.galleryblock {
  margin: 30px 0;
}

.galleryblock .smallmargin {
  margin: 0;
}

/*	--------------------------------------------------
   	Form - Gravity Forms (labels inside)
	-------------------------------------------------- */
.gform_wrapper {
  margin: 0 0 20px 0 !important;
  max-width: 100% !important;
}

.formsection {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: -6px;
}

.gform_wrapper h3 {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 400 !important;
  text-transform: initial;
}

.gform_wrapper ul {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper ul li {
  margin-bottom: 0 !important;
  list-style-image: none !important;
  list-style: none !important;
  text-indent: 0 !important;
  padding: 0;
}

.gform_wrapper ul li:before {
  display: none;
  content: "";
  margin: 0;
  padding: 0;
}

.gform_wrapper ul li.gfield {
  margin-top: 0 !important;
}

.gform_wrapper ul li.gfield_html {
  margin: 20px 0 -10px 0 !important;
}

.gform_wrapper ul li.gfield_html:first-child {
  margin: 0 0 -10px 0 !important;
}

.gform_wrapper .medium.gfield_select {
  margin-bottom: 0 !important;
  font-size: 16px !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-size: 16px !important;
  height: 38px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CCCCCC;
  border-radius: 0;
}

.gform_wrapper select {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  font-size: 16px !important;
  height: 38px;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  border: 1px solid #CCCCCC;
  border-radius: 0;
}

.gform_wrapper textarea {
  margin-top: 12px !important;
  font-size: 16px !important;
  border: 1px solid #CCCCCC;
  border-radius: 0;
}

#gform_1 .ginput_container_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#gform_1 .address_line_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 !important;
  padding: 0 !important;
}

#gform_1 .address_city {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: 0 !important;
  padding: 0 !important;
}

#gform_1 .address_state {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin: 0 !important;
  padding: 0 16px !important;
}

#gform_1 .address_zip {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 16px 0 0 0 !important;
}

.gform_wrapper .gform_footer input[type=submit] {
  display: inline-block;
  margin: 0;
  padding: 5px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 400 !important;
  position: relative;
  background: #4BAAC1;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border: none !important;
  border-radius: 8px;
  -webkit-appearance: none;
}

.gform_wrapper .gform_footer input[type=submit]:hover {
  background: #294343 !important;
  cursor: pointer !important;
}

.gform_wrapper .validation_error {
  margin: 12px 0 0 0 !important;
  display: none;
}

.gform_wrapper .validation_message {
  padding-top: 0 !important;
  color: red;
  font-weight: 400 !important;
}

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper li.gfield_error textarea {
  border: 1px solid red;
}

.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent !important;
  margin-bottom: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ginput_recaptcha {
  margin-top: 12px !important;
}

#g-recaptcha-response {
  display: none !important;
}

.gform_wrapper .gfield_required {
  color: #333 !important;
}

.gfield_consent_label {
  font-size: 16px;
  line-height: 24px;
}

.ginput_container_fileupload {
  font-size: 16px !important;
}

.flex_checkbox .gchoice {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}
.flex_checkbox .gchoice input.gfield-choice-input {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

/* Placeholder color */
.gform_wrapper .gform_fields .gfield input::-webkit-input-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder,
.ginput_container_select select:first-child {
  color: #666666;
}

/* Focus color */
.gfield input[type=text]:focus,
.gfield input[type=email]:focus,
.gfield input[type=tel]:focus,
.gfield input[type=url]:focus,
.gfield input[type=number]:focus,
.gfield input[type=password]:focus,
.gfield select:focus,
.gfield textarea:focus {
  border: 1px solid #AAA !important;
  border-radius: 0 !important;
}

/* Focus visible */
.gfield :focus-visible {
  outline: none !important;
}

.grecaptcha-badge {
  display: none !important;
}

p.captchanotice {
  font-size: 14px;
  line-height: 20px;
}

/*	--------------------------------------------------
	Print
	-------------------------------------------------- */
.showprint {
  display: none;
}

@media print {
  body {
    padding: 20px !important;
  }
  .container {
    padding: 0;
    margin: 0;
  }
  .showprint {
    display: block;
  }
  .hideprint {
    display: none;
  }
  .printlogo {
    margin: 15px 0;
  }
  .header-pad {
    display: none;
  }
  .page-header {
    margin: 0;
    padding: 0;
  }
  .page-header .wrap {
    display: block;
    height: auto;
  }
  .page-header h1 {
    color: #000;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .main-content-inner {
    margin: 0;
  }
  p {
    margin: 0 0 20px 0;
  }
  #colophon a {
    display: none !important;
  }
}