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

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,x
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100%;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden; 
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

/* COLORS */

:root {
  --colorBlue: #5C7F92;
  --colorGreen: #43A43D;
  --colorDarkGray: #333F48;
  --colorLight: #fff;
  --colorLightGray: #DEE5E8;
  --colorDark: #121212;
}

/* FONTS */

@font-face {
  font-family: "OS Reg";
  src: url(../fonts/OpenSans-Regular.woff2);
  font-display: swap;
}

@font-face {
  font-family: "OS Bold";
  src: url(../fonts/OpenSans-Bold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "OS Extra";
  src: url(../fonts/OpenSans-ExtraBold.woff2);
  font-display: swap;
}


@font-face {
  font-family: "OS Semi";
  src: url(../fonts/OpenSans-SemiBold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "PF Ital";
  src: url(../fonts/PlayfairDisplay-Italic.woff2);
  font-display: swap;
}

@font-face {
  font-family: "PF Bold";
  src: url(../fonts/PlayfairDisplay-Bold.woff2);
  font-display: swap;
}

@font-face {
  font-family: "PF Bold Ital";
  src: url(../fonts/PlayfairDisplay-BoldItalic.woff2);
  font-display: swap;
}


/* TYPOGRAPHY */


h1,
h2,
h3,
h4,
p {
  margin-bottom: 20px;
}

h1 {
  font-family: "OS Bold", sans-serif;
  font-size: 40px;
}

h2 {
  font-family: "OS Extra", sans-serif;
  font-size: 36px;
  margin-bottom: 30px;
}

h3 {
  font-family: "OS Bold", sans-serif;
  font-size: 26px;
  margin-bottom: 20px;
}

h4 {
  font-family: "OS Bold", sans-serif;
  font-size: 20px;
}

h5 {
  font-family: 'Mont';
  font-size: 20px;
  margin-bottom: 20px;
}

p,
li {
  font-family: "OS Reg", sans-serif;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    letter-spacing: 0em;
}

p strong, li strong {
  font-family: 'OS Bold';
}



li p {
  margin-bottom: 0px;
  text-align: left;
}

li::marker {
  color: var(--colorDark);

}

a {
  text-decoration: none;
}

p a {
  color: var(--colorGreen);
  font-family: "OS Reg", sans-serif;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-decoration: none;
}


.post p iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.post p:has(iframe) {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

ul.checklist li {
  display: flex;
  margin-bottom: 10px;
}

ul.checklist li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  color: var(--colorPurple);
  font-weight: 700;
  margin-right: 12px;
}

#topic-filter a.green-text {
  color: var(--colorGreen);
  FONT-WEIGHT: 700;
}

/* Buttons */

.button, .post .content a.button {
  border: none;
  color: white;
  padding: 6px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 10px;
  font-weight: bold;
  font-family: 'OS Bold',sans-serif;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.button:hover {
  cursor:pointer;
}

.button.read-more {
  padding: 0px 16px;
}

.blue {
  background-color: var(--colorBlue);
}

a.blue:hover {
  color: var(--colorBlue);
  background-color: #fff;
  border: 2px solid #ededed;
}

.gray {
  background-color: var(--colorLightGray);
}

.dark-gray {
  background-color: var(--colorDarkGray);
}

.green {
  background-color: var(--colorGreen);
}

a.green:hover, button.green:hover {
  color: var(--colorGreen);
  background-color: #fff;
  border: 2px solid #ededed;
}

.white {
  background-color: var(--colorLight);
}

.blue .button.white {
  color: var(--colorBlue);
}

.blue a.button.white:hover {
  color: #fff;
  background-color: var(--colorBlue);
  border: 2px solid #ededed;
}

.green .button.white {
  color: var(--colorGreen);
}

.green a.button.white:hover, .green-header-content-container a.button.white:hover {
  color: #fff;
  background-color: var(--colorGreen);
  border: 2px solid #ededed;
}

a.button.read-more.green:hover {
  color: var(--colorGreen);
}

.dark-gray .button.white {
  color: var(--colorDarkGray);
}

.dark-gray a.button.white:hover, .page-template-home .hero-copy a.button.white:hover {
  color: #fff;
  background-color: var(--colorDarkGray);
  border: 2px solid #ededed;
}

.light-gray {
  background-color: var(--colorLightGray);
}

/* Icons */

.fa-phone {
  margin-right: 8px;
}


/* NAVIGATION */

.green-header-container {
  height: 75px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 7%;
  overflow: hidden;
}

.green-header-container img {
  height: 75px;
  position:absolute;
  top: 0;
  right: 0;
  min-width: 1527px;
  width: 100%;
}

.green-header-content-container {
  flex: 0 0 575px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}

.green-header-content-container p {
  margin-bottom: 0px;
  margin-right: 12px;
  font-size: 16px;
  color: #fff;
}

.green-header-content-container .button.white {
  color: var(--colorGreen);
  font-size: 15px;
}

header.desktop {
  padding: 0px;
  width: 100%;
  position: relative;
  height: auto;
  background-color: #fff;
  z-index: 15;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0px 7% 0px;
  margin-top: -10px;
}

.header-container > * {
  flex: 1;
}

.header-container p {
  text-align: right;
  flex: 2;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: "PF Bold", sans-serif;
}

.header-container a.logo {
  flex: 1;
}

.logo img {
  max-width: 440px;
}

.subhero {
  width: 100%;
  min-height: 60px;
  padding: 12px;
  text-align: center;
}


a.logo-link {
  padding: 0px 0px 0px;
  height: 100%;
  flex: 0 0 140px;
  margin-right: 50px;
  align-items: center;
  display: flex;
}


.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 300px;
}

.contact-content-container.green .hbspt-form {
  width: 100%;
}


nav {
  height: 60px;
  position: relative;
  background-color: var(--colorLightGray);
  display: flex;
  padding: 0px 7%;
  scroll-padding-top: 60px;
}

nav:not(.email-page) {

}

nav a {
  font-family: Helvetica, sans-serif, sans-serif;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  color: var(--colorDark);
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-border {
  height: 3px;
  width: 100%;
  opacity: 20%;
  background-color: #000;
  position: absolute;
  bottom: -3px;
}

#nav-bar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  padding: 0px 7%;
}

#sticky-space.sticky {
  margin-top: 60px;
}


.menu-main-menu-container {
  height: 100%;
  width: 100%;
  margin: 0 auto;
	padding-right: 16px;
}

#menu-main-menu {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* transition: all 1s ease-in-out; */
}

#menu-main-menu > li.no-link:hover {
  cursor: default;
}

#menu-main-menu > li:hover {
  background-color: #fff;
  transition: all .2s;
}

#menu-main-menu > li:hover a {
  color: var(--colorBlue);
}

.menu-main-menu-container li a {
  transition: margin 0.3s;
  display: flex;
  align-items: center;
  color: var(--colorLight);
  text-transform: none;
  font-family: "OS Bold", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 0px 10px;
  height: 100%;
  text-transform: uppercase;
  width: 100%;
  transition: all .2s;
}

#menu-main-menu > li {
  display: flex;
  align-items: center;
  height: 100%;
  transition: all .2s;
  cursor: pointer;
  position: relative;
}

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  position: absolute;
  width: 100%;
  top: 60px;
  min-width: 104px;
  overflow: hidden;
  background-color: #fff;
  padding: 0px 10px 10px;
  z-index: 910;
}

#menu-main-menu li:not(.destinations):hover ul.sub-menu {
  padding-top: 10px;
}

#menu-main-menu li ul.sub-menu a {
  padding-bottom: 0px;
  line-height: 160%;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--colorDark);
  font-family: "OS Reg", sans-serif;
  text-transform: capitalize;
}

#menu-main-menu li ul.sub-menu li.destination-parent a, #menu-main-menu li ul.sub-menu li.unique a {
  font-family: 'OS Bold';
}

li.destination-parent:hover,li.destination-parent a:hover {
  cursor: pointer;
}

#menu-main-menu li ul.sub-menu li:hover a {
  color: var(--colorGreen);
  font-weight: 600;
}

#menu-main-menu li.destinations:hover ul.sub-menu {
    height: 426px;
  width: 460px;
  display: flex !important;
  flex-direction: column !important;
  flex-flow: wrap;
}

#menu-main-menu li.menu-item-has-children > a:after,
.menu-mobile-menu-container li.menu-item-has-children > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  margin: 0 0 0 5px;
  font-weight: 600;
  font-size: 14px;
}

li.menu-button {
  background-color: var(--colorGreen);
  padding: 20px;
}

a.menu-button:hover {
  color: var(--colorGreen);
  background-color: var(--colorLight);
}

a.menu-button {
    transition: margin 0.3s;
    display: flex;
    align-items: center;
    color: var(--colorLight);
    text-transform: none;
    font-family: "OS Bold", sans-serif, sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 0px 10px;
    height: 100%;
    text-transform: uppercase;
    width: 228px;
    transition: all .2s;
    background-color: var(--colorGreen);
        padding: 10px;
    justify-content: center;
}

.sub-menu {
  display: none;
  position: absolute;
  z-index: 910;
  margin: 0;
  height: auto;
}

#menu-main-menu li ul.sub-menu a {
  padding: 0px 0px;
}

li.destination-parent, li.unique {
  margin-top: 10px;
}

#menu-main-menu li#menu-item-827:hover ul.sub-menu {
  min-width: 200px;
}


.faq-accordion {
  /* max-width: 800px; */
  margin: 0 auto;
}

.faq-accordion-title-container.accordion:hover {
  cursor: pointer;
}

.faq-accordion-title-container:not(.mobile-menu-accordion) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background-color: #fff;
  margin-bottom: 16px;
}

.faq-accordion-title-container:not(.mobile-menu-accordion) h3 {
  margin-bottom: 0px;
  font-size: 24px;
  margin-right: 20px;
  color: var(--colorDark);
  font-weight: 500;
  text-transform: capitalize;
}

span.fa-solid.fa-angle-down.title-icon {

  font-size: 25px;
  transform: rotate3d(1, 0, 0, 0deg);
  transition: transform 0.15s ease-in-out;
}

span.fa-solid.fa-angle-down.title-icon.angle-up {
  transform: rotate3d(1, 0, 0, 180deg);
}


.panel, .form-panel, .perk-panel {
  height: auto;
  display: none;
  /* max-width: 800px; */
}



.panel p {
  text-align: left;
  padding: 0px 16px 16px;
  margin-bottom: 0px;
}

#mySidenav .faq-accordion-title-container.mobile-menu-accordion h3, #mySidenav h3  {
  font-size: 24px;
}


/* Videos */

.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  margin: 5px;
}

.youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}

.youtube-player .play-button img {
  object-fit: fill;
  opacity: 0.85;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
}

.featured-video .play-button {
  width: 90px;
  height: 90px;
  z-index: 20;
  border-radius: 5%;
  overflow: hidden;
  top: 50%;
  left: 50%;
  margin-top: -45px;
  margin-left: -45px;
  position: absolute;
}

/* PARTS */

.content-wrapper {
  height: 100%;
  max-width: 1516px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 7%;
}

.split {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.heading-container {
  max-width: 847px;
  margin: 0 auto;
  text-align: center;
}

section.internal-header {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--colorPurple);
  opacity: 0;
}

#get-in-touch h2 {
  color: var(--colorDarkGray);
  font-family: 'PF Bold Ital';
  text-transform: math-auto;
}

.aligncenter {
  display: block;
  margin: 20px auto 20px;
  height: auto;
  width: 100%;
}

.page-template-default .content {
  text-align: left;
}

/* Footer */

footer {
  background-color: var(--colorDarkGray);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.destinations-column {
  flex: 0 0 608px;
}

.social-column {
  background-color: var(--colorDarkGray);
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.social-icon {
  background-color: #fff;
  height: 54px;
  width: 54px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6px;
}

a.social-icon:hover {
  background-color: var(--colorGreen);
}

.social-icon i {
  font-size: 28px;
  color: var(--colorDarkGray);
}

.footer-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px 10px;
}

.footer-phone a {
  color: #fff;
  font-family: 'OS Bold';
  font-size: 28px;
  letter-spacing: .04em;
}

.footer-phone i {
  color: #fff;
  font-size: 22px;
  padding-top: 4px;
}

footer h3 {
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

ul#menu-footer-menu-1 {
  display: flex;
  flex-direction: column;
  flex-flow: wrap;
  height: 500px;
}

ul#menu-footer-menu-1 {
  height: 463px;
  width: 50%;
  display: flex !important;
  flex-direction: column !important;
  flex-flow: wrap;
}

ul#menu-footer-menu-1 li a {
  color: #fff;
}

ul#menu-footer-menu li.footer-parent a {
  
}

ul#menu-footer-menu-1 li:hover a {
  font-weight: 600;
  color: var(--colorGreen);
  cursor: pointer;
}

ul#menu-footer-menu-1 li a:hover {
  font-weight: 600;
  color: var(--colorGreen);
  cursor: pointer;
}

ul#menu-footer-menu-1 li {
  text-align: left;
  margin-right: 75px;
  line-height: 140%;
}

li.footer-parent {
  font-weight: 600;
  font-family: 'OS Bold';
  margin-top: 12px;
}

ul#menu-footer-menu-1 li:not(.footer-parent) a {
  font-size: 16px;
  font-family: 'OS Reg';
  font-weight: 500;
}

.subfooter {
  display: flex;
  justify-content: center;
  align-items:  center;
  background-color: var(--colorDark);
  padding: 12px 7%;
}

.subfooter p {
  color: #fff;
  margin-bottom: 0px;
  font-size: 12px;
}

ul#menu-sub-footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subfooter p:after {
  content: "|";
  margin: 12px;
}

.subfooter a:after {
  content: "|";
  margin: 12px;
}

ul#menu-sub-footer-menu li:last-of-type a::after {
  content: "";
}

.subfooter a {
  color: #fff;
  font-size: 12px;
}

.subfooter a:hover {
  cursor: pointer;
  color: var(--colorGreen);
}

.sidenav ul#menu-footer-menu {
  height: auto;
  width: 100%;
  align-items: flex-start;
  margin-left: 20px;
  display: flex !important;
  flex-direction: column !important;
  flex-flow: wrap;
}

.sidenav li.footer-parent {
  margin-top: 0px;
}

.sidenav ul#menu-footer-menu li.footer-parent a, .sidenav ul#menu-footer-menu li a {
  color: var(--colorDark);
  font-size:16px;
}

/* Hero */


/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.0s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


#hero {
  background-color: var(--colorDarkGray);
}

.hero-wrapper {
  display: flex;
  flex-direction: row;
  background-color: var(--colorDarkGray);
  margin: 0 0 0 auto;
  justify-content: space-between;
}

.hero-content {
  flex: 0 0 44%;
  background-color: var(--colorDarkGray);
  position: relative;
  display: inline-block;
}

.triangle-piece {
  position: absolute;
  top: 0;
      right: calc(-7vw + 1px); 
  width: 7vw; 
  height: 100%;
  z-index: 20;
  background-image: linear-gradient(to top right, var(--colorDarkGray) 50%, transparent 51%);
}

.hero-content-container {

  width: 100%;
  padding: 70px 0px 30px calc(100vw * 0.07);
  box-sizing: border-box;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 720px;
  margin: 0 0 0 auto;
}

.hero-content-container h1 {
  color: #fff;
  text-transform: uppercase;
  line-height: 120%;
}

.hero-content-container p {
  color:  #fff;
  font-size: 22px;
}

.hero-bg-container {
  flex: 1;

  margin-left: 0;
  z-index: 10;
}

     /* HERO */

      
     #vid-hero {
      position: relative;
      z-index: 0;
      height: auto;
      overflow: hidden;
  }

  video {
    max-height: 640px;
    height: auto;
    min-width: 100%;
    object-fit: cover;
    display: block;
  }

  .video-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    /* background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.4) 15%,rgba(0,0,0,0.3) 30%, rgba(0,0,0,.2) 60%, rgba(0,0,0,0) 100%); */
    background-color: rgb(0,0,0,0.4);
  }

  div#hero-content {
      height: auto;
      width: 100%;
      top: 0;
      left: 0;
      display: flex;
      position: absolute;
      padding: 60px 8%;
      align-items: center;
      z-index: 10;
  }

  .hero-copy {
    flex: 0 0 829px;
    padding: 20px;
}

section#vid-hero #hero-content {
  padding: 60px 7%;
  height: 100%;
}

  section#vid-hero h1 {
    font-size: 50px;
    color: #fff;
    line-height: 110%;
    filter: drop-shadow(2px 2px 2px #333);
    font-family: 'OS EXTRA';
  }
  
  section#vid-hero .subheading {
        font-size: 36px;
    color: #fff;
    line-height: 100%;
    filter: drop-shadow(2px 2px 0px #333);
    margin-bottom: 30px;
    font-family: 'OS Reg';
  }
  
  a.button.white {
    color: var(--colorDark);
    font-size: 18px;
  }

/* Intro */

section#intro {
  background-color: var(--colorLightGray);
  position: relative;
}

section#intro p {
  font-size: 16px;
}

section#intro p:last-of-type {
  margin-bottom: 0px;
}

section#intro::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 9px 0 9px;
  border-color: var(--colorLightGray) transparent transparent transparent;
}

section#intro p {
  font-family: 'PF Ital';
  margin: 0 auto 20px;
}

section#intro p strong {
  font-family: 'PF Bold Ital';
}

section#intro p a {
  font-family: inherit;
  font-size: inherit;
}

/* Video Section */

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

.content-container {
  flex: 0 0 calc(50% - 50px);
  border-radius: 10px;
  text-align: left;
}

.featured-video {
  width: 100%;
}

#video-section h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  font-weight: bold;
  max-width: 824px;
    margin: 0 auto 20px;
}

#video-section h3 {
  font-family: "PF Bold Ital", sans-serif;
  font-weight: 100;
  font-size: 22px;
}

#video-section p span {
  font-size: 24px;
  font-weight: bold;
}

#video-section .content-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#video-section .split-image-container {
  max-height: 540px;
  overflow: hidden;
}




/* States */

#states h2 {
  font-family: 'PF Bold Ital';
  color: var(--colorDarkGray);
  font-size: 32px;
  text-transform: capitalize;
}

#states .black-label {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: absolute;
  top: calc(100% - 46px);
  transition: all 0.3s ease;
}

.expand p:hover {
  color: var(--colorGreen);
}

.state-container {
  flex: 0 0 24%;
  min-height: 240px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

#states a.destination-hover-link {
  font-family: 'OS Bold';
  font-size: 14px;
  color: #fff;
  margin-bottom: 0px;
  display: inline-block;
}

#states a.destination-hover-link:hover {
    color: var(--colorGreen);
}

.child-destination-containers {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

/* News & Careers */

.content li {
  text-align: left;
}

.content ul {
  margin-bottom: 20px;
}

.feed-row {
  display: flex;
  justify-content: space-between;
  padding: 30px 5%;
  border-bottom: 1px solid var(--colorLightGray);
}

.feed-title-container {
  text-align: left;
}

.feed-title-container a {
  font-family: 'PF Bold';
  color: var(--colorDark);
  font-size: 22px;
}

section#feed h2 {
  text-transform: none;
  color: var(--colorDarkGray);
  font-size: 32px;
  font-family: 'PF Bold Ital';
  max-width: 900px;
  margin: 0 auto 20px;
}

.feed-title-container a:hover {
  color: var(--colorGreen);
}

.feed-date-container {
  font-family: 'OS Reg';
  margin-bottom: 0px;
  line-height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Prevent the item from shrinking */
  flex-grow: 0;
  margin-left: 20px;
}

section#top-form {
  background-color: var(--colorGreen);
}

.resume-heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume-heading-container-copy {
  margin-right: 50px;
}

.resume-heading-container-copy h2 {
  margin-bottom: 0px;
}

.resume-heading-container-copy {
  text-align: left;
}

.resume-heading-container-copy h2, .resume-heading-container-copy p {
  color: #fff;
}

.button.form-reveal {
  background-color: var(--colorLight);
  color: var(--colorGreen);
}

/* Resume Form */

.form-panel .gform_wrapper.gravity-theme .gfield.gfield--width-half {
  text-align: left;
}

.form-panel div#field_1_7 {
  text-align: left;
}

.form-panel label.gfield_label.gform-field-label {
  font-family: 'OS Reg' !important;
  font-size: 13px !important;
  color: var(--colorLight) !important;
}

.form-panel input#gform_submit_button_1 {
  background-color: var(--colorLight);
  color: var(--colorGreen);
}

div#gform_confirmation_message_1 {
  color: #fff;
  font-family: 'OS Bold';
  font-size: 20px;
}

section.internal-header {
  height: 200px;
  padding: 40px 7%;
  position: relative;
}

section.internal-header h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 44px;
  margin-bottom: 0px;
  z-index: 10;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0,0.2);
  z-index: 5;
}

.page-template-careers section#destinations-info .content-wrapper {
  padding-bottom: 0px;
}

.single-news .content {
  max-width: 760px;
  margin: 0 auto;
}

.single-news h1 {
  text-align: center;
  line-height: 120%;
  font-size: 28px;
  font-family: 'OS Bold';
}

.single-news .post-meta-container {
  border: none;
}

.st-btn.st-last.st-remove-label {
  display: inline-block !important;
}

.single-news .content p {
  text-align: left;
}

.single-news h2 {
  font-family: "OS Extra", sans-serif;
  font-size: 24px;
  margin-bottom: 0px;
  text-align: left;
}

.single-news h3 {
  text-align: left;
  font-size: 18px;
}


.single-career .content {
  max-width: 760px;
  margin: 0 auto;
}

.single-career h1 {
  text-align: center;
  line-height: 120%;
  font-size: 28px;
  font-family: 'OS Bold';
  margin-bottom: 4px;
}

.single-career .post-meta-container {
  border: none;
}

.single-career .content p {
  text-align: left;
}

.single-career h2 {
  font-family: "OS Extra", sans-serif;
  font-size: 24px;
  margin-bottom: 0px;
  text-align: left;
}

.single-career h3 {
  text-align: left;
  font-size: 18px;
}

.single-career .content p.career-location {
  text-align: center;
  font-size: 18px;
}

/* Rows */

.row-wrap {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

/* Containers */

.black-label-container {
  flex: 0 0 calc(25% - 4px);
  margin-bottom: 4px;
  display:flex;
  flex-direction: column;
}

.black-label {
  height: auto;
  padding: 8px;
  background-color: var(--colorDark);
  width: 100%;
  text-align: center;
}

.black-label p {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0px;
  font-family: 'OS Bold';
}

.blue-label-container {
  flex: 0 0 calc(50% - 8px);
  margin-bottom: 12px;
  display:flex;
  flex-direction: column;
}

.blue-label {
  height: auto;
  padding: 8px;
  background-color: var(--colorBlue);
  text-align: center;
}

.blue-label p {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0px;
}

.blue-label-image-container {
  min-height: 300px;
    overflow: hidden;
    flex: auto;
}

.blue-label-image-container img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

/* Career Perks */

/* Career Perk Cards */



.perks-row {
	display: flex;
  flex-flow: wrap row;
  justify-content: space-evenly;
}


#perks-desktop .back, #perks-desktop .front {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;

}

.front p {
      font-family: 'OS Semi';
    color: #fff;
    font-size: 36px;
    padding: 12px;
    line-height: 100%;
    margin-bottom: 0px;
}

.back p {
      font-family: 'OS Reg';
    color: #fff;
    font-size: 18px;
    padding: 12px;
    line-height: 120%;
    margin-bottom: 0px;
}


/* entire container, keeps perspective */
.flip-container {
	perspective: 1000;
	  flex: 0 0 calc(25% - 12px);
  min-height: 320px;
	
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}


/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;
	height: 100%;
	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
}

#teamwork {
  background-color: #256e75;
}

.teamwork-wrapper {
  display: flex;
  flex-direction: row;
  background-color: #256e75;
  margin: 0 0 0 auto;
  justify-content: space-between;
}

.teamwork-content {
  flex: 0 0 44%;
  background-color: var(--colorDarkGray);
  position: relative;
  display: inline-block;
}

#teamwork .triangle-piece {
  position: absolute;
  top: 0;
      left: calc(-7vw + 1px); 
  width: 7vw; 
  height: 100%;
  z-index: 20;
  background-image: linear-gradient(to bottom left, var(--colorDarkGray) 50%, transparent 51%);
}

.teamwork-content-container {

  width: 100%;
  padding: 50px calc(100vw * 0.07) 30px 6%;
  box-sizing: border-box;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 720px;
  margin: 0 0 0 auto;
}

.teamwork-content-container h2 {
  color: #fff;
  text-transform: uppercase;
  line-height: 120%;
	font-family: "OS Bold", sans-serif;
}

.teamwork-content-container p {
  color:  #fff;
  font-size: 22px;
	margin-bottom: 30px;
}

.teamwork-bg-container {
  flex: 1;

  margin-left: 0;
  z-index: 10;
}

/* Custom Select filter */

.new-event-filter-form-title {
  flex: 0 0 auto;
  margin-right: 30px;
}

.select-box {
  position: relative;
  display: flex;
  flex-direction: column;
}

.select-box .options-container {
  background: #fff;
  color: var(--colorFont);
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 0px;
  overflow: hidden;
  order: 1;
  position: absolute;
  z-index: 100;
  top: 44px;
  padding: 6px 0px;
}

.selected {
  background: #eee;
  border-radius: 0px;
  /* margin-bottom: 8px; */
  color: var(--colorFont);
  position: relative;
  order: 0;
}

.selected::after {
  content: "";
  background: url("img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 32px;
  right: 10px;
  top: 5px;
  transition: all 0.4s;
}

.select-box .options-container.active {
  max-height: 100vh;
  opacity: 1;
  /* overflow-y: scroll; */
  margin-top: 0px;
  filter: drop-shadow(2px 4px 3px #ccc);
}

.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top: -9px;
}

.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: #0d141f;
  border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #eee;
}

.select-box label {
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 160%;
  padding: 4px 8px;
  font-size: 12px;
  color: var(--colorDark);
  font-family: "OS Reg", sans-serif;
  text-transform: capitalize;
}

.select-box .option .radio {
  display: none;
}

section#new-event-filter {
  position: relative;
}

.new-event-filter-container {
  display: block;
  max-width: 1400px;
}

.new-event-filter-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.new-event-filter-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

.selected {
  background-color: #eee;
  color: var(--colorFont);
  font-family: 'OS Bold', sans-serif;
  font-size: 13px;
  
}

.services-select-box .selected::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f002";
  font-size: 18px;
  margin-top: 3px;
  left: 10px;
  top: 6px;
  position: absolute;
}

.destinations-select-box .selected::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f3c5";
  font-size: 18px;
  margin-top: 3px;
  left: 10px;
  top: 6px;
  position: absolute;
}

.selected::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f0d7";
  font-size: 18px;
  margin-top: 3px;
  font-color: var(--colorDark);
}

.select-box.services-select-box {
  flex: 0 0 250px;
  margin-right: 12px;
}

.select-box.destinations-select-box {
  flex-grow: 1;
  margin-right: 20px;
}

.select-box.destinations-select-box .options-container {
  columns: 2;
    min-width: 390px;
    height: 447px;
    display: flex !important;
    flex-direction: column !important;
    flex-flow: wrap;
    width: 100%;
}


  .select-box .option, .select-box .option-heading {
    padding: 0 0 0 6px;
    text-align: left;
    height: 20px;
    display: flex;
}


.option label {
  line-height: 100%;
  font-size: 12px;
  color: var(--colorDark);
  font-family: "OS Reg", sans-serif;
  text-transform: capitalize;
  flex: 1;
}

.option-heading label {
  font-family: 'OS Bold';
}

.option-heading {
  margin-top: 10px;
}

.option-heading p {
  font-family: 'OS Bold';
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 160%;
  padding: 0px 8px;
  font-size: 12px;
  color: var(--colorDark);
  text-transform: capitalize;
  cursor: default;
}

.option-heading:hover {
  background-color: #fff;
}

.no-results {
  flex: 0 0 100%;
  margin-top: -50px;
  font-family: 'OS Reg', sans-serif;
}

.loading-container {
  display: none; /* Initially hide the loading container */
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: transparent; /* Semi-transparent white background */
  z-index: 9999; /* Ensure it's above other content */
}

.loading-spinner {
  border: 5px solid #f3f3f3; /* Light grey border */
  border-top: 5px solid var(--colorGreen); /* Blue border on top */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite; /* Animation for spinning effect */
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px; /* Center the spinner vertically */
  margin-left: -25px; /* Center the spinner horizontally */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 1200px) {
	.flip-container {
		perspective: 1000;
		flex: 0 0 calc(50% - 12px);
		min-height: 320px;
		margin-bottom: 6px;
	}
}




@media only screen and (min-width: 701px) {
#perks-mobile {
	display:none;
	}
	#perks-desktop {
		display:block;
	}
}


@media only screen and (max-width: 700px) {

	#perks-mobile {
	display:block;
	}
	#perks-desktop {
		display:none;
	}
	
.perks-mobile-row {
    display: flex;
    flex-direction: column;
}

.perk-mobile-title.perk-accordion {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
}

.perk-mobile-title.perk-accordion p {
    font-family: 'OS Semi';
    color: #fff;
    font-size: 22px;
    padding: 7px;
    line-height: 100%;
    margin-bottom: 0px;
}

.perk-mobile-info.perk-panel p {
    font-family: 'OS Reg';
    color: #fff;
    font-size: 18px;
    padding: 12px;
    line-height: 120%;
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-align: center;
}

.perk-mobile-title.perk-accordion span {
    position: absolute;
    right: 20px;
    font-size: 20px !important;
    opacity: 0.5;
}
	
	.teamwork-wrapper {
    flex-direction: column;
}

.teamwork-bg-container {
    flex: none;
    height: 340px;
}

.teamwork-content-container {
    padding: 20px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.teamwork-content-container > * {
    text-align: center;
}
	
}


/* Contact Section */

section#contact-section {
  background-color: var(--colorGreen);
}


.contact-content-container {
  flex-grow: 1;
  padding-right: calc(100vw * .07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  padding: 20px calc(100vw * .07) 20px 0px;
}

.contact-green-container {
  WIDTH: 444px;
  margin: 0 auto;
}

.contact-image-container img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: right;
}

.contact-content-container h3 {
  color: #fff;
  margin-bottom: 0px;
}

.contact-content-container p {
  color: #fff;
}

section#contact-section .split {
  justify-content: flex-start;
}

.hs_submit.hs-submit {
  height: 54px !important;
}

.actions {
  padding: 0px 0;
}

.actions input[type="submit"] {
  background-color: #fff;
  color: var(--colorGreen) !important;
  border-radius: 10px;
  border: none;
}



/* Form */

.gform_wrapper .top_label .gfield_label {
  font-family: "Mont", sans-serif;
  color: #4b4b4b;
  font-weight: 400;
}


.ginput_container.ginput_container_radio .gfield_radio {
  display: flex;
  flex-direction: row;
}

form .gform_wrapper .gform_footer {
  margin-top: 0px;
}


.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label,
.gform_wrapper
  .field_sublabel_below
  div[class*="gfield_time_"].ginput_container
  label {
  font-family: open sans, sans-serif;
  font-size: 10px;
}

#contact-form .gform_wrapper .gform_body .gform_fields .gfield .gfield_label,
.gform_wrapper
  .gform_body
  .gform_fields
  .gfield
  .gfield_label
  .gfield_required {
  color: #4b4b4b;
  font-family: "OS Bold", sans-serif;
}

#contact-form .gform_wrapper.gravity-theme .gfield-choice-input + label {
  color: #4b4b4b;
  font-family: "OS Bold", sans-serif;
}

.gform_wrapper .gform_body .gform_fields .gfield input[type="text"],
.gform_wrapper .gform_body .gform_fields .gfield input[type="email"],
.gform_wrapper .gform_body .gform_fields .gfield textarea,
.gform_wrapper .gform_body .gform_fields .gfield select,
.gform_wrapper .gform_body .gform_fields .gfield input[type="tel"] {
  border-radius: 4px;
  border: 2px solid #ddd;
  font-family: 'Prox Nova', sans-serif;
}

#gform_confirmation_message_3 {
  font-family: 'Prox Nova', sans-serif;
}

select,
input[type="text"] {
  height: 44px;
  background-color: #fff;
  border: none;
  padding-left: 6px !important;
  border-radius: 0px;
  font-family: "Mont", sans-serif;
}

::placeholder {
  color: #aaa;
  text-transform: Capitalize;
  font-family: "Mont", sans-serif;
}

option:not(:first-of-type) {
  color: #aaa;
}

input[type="submit"] {
  background-color: var(--colorGreen);
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  font-family: "OS Reg", sans-serif;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 5px;
}

input[type="submit"]:hover {
  cursor: pointer;
}

#submitBtn {
  transition: transform 0.2s;
}

#submitBtn.pressed {
  transform: scale(0.9);
}

.ginput_container.ginput_container_radio .gfield_radio label {
  font-family: "Mont";
}

.pagination {
  width: 100%;
}

nav.navigation.pagination {
  background-color: #fff;
  padding-top: 30px;
  height: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  background-color: transparent;
  justify-content: center;
  height: 47px;
}

a.page-numbers {
  color: var(--colorDark);
  background-color: var(--colorLightGray);
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 8px;
}

a.page-numbers:last-of-type {
  margin-right: 0px;
}

a.page-numbers:hover {
  background-color: var(--colorPurple);
  color: #fff;
}

span.current {
  color: var(--colorDark);
  font-family: "Prox Nova", sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-image: var(--colorGradient);
  padding: 8px;
  border-radius: 4px;
  color: #fff;
  margin-right: 8px;
}

span.page-numbers.dots {
  margin-right: 8px;
}


/* Search */

.search-functions {
  border-radius: 6px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: var(--colorLightGray);
}

.category-container {
  display: flex;
  flex-flow: wrap;
  flex-grow: 1;
  margin-right: 30px;
}

.category-container a.media-button {
  font-size: 14px;
  padding: 2px 9px;
  margin-right: 6px;
  margin-left: 6px;
  margin-bottom: 8px;
  margin-top: 8px;
  background-color: var(--colorPurple);
  font-weight: bold;
}

.search-form-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-form-container input[type="text"] {
  margin-right: 10px;
  border-radius: 5px;
  height: 36px;
  margin-bottom: 0px;
  border: 1px solid #ddd;
}

.search-form-container input[type="submit"] {
  margin-bottom: 0px;
}

.search-form-container form div {
  display: flex;
}

div#scholarship-form {
  margin: 40px 0px 30px;
}

div#gfield_description_5_8 {
  font-family: 'prox nova';
}

label#label_5_10_1 {
  font-family: 'prox nova', sans-serif;
}

.page .post {
  text-align: left;
}

/* Destination */

.single-destination .hero-content-container h1 {
  font-size: 64px;
}

.hero-content-container h2 {
   font-size: 28px;
    color: #fff;
    line-height: 100%;
    filter: drop-shadow(2px 2px 0px #333);
    margin-bottom: 30px;
    font-family: 'OS Reg';
}

ul.areas-served-list {
  display: flex;
  justify-content: center;
  padding: 0 10%;
  flex-flow: wrap;
  margin: 0 auto;
}

ul.areas-served-list li {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}

ul.areas-served-list li a {
  color: inherit;
}

ul.areas-served-list i {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 5px;
}

.single-destination section#intro p {
  font-size: 16px;
}

.single-destination section#intro .content-wrapper {
  max-width: 1400px;
}

.single-destination .state-container {
  flex: 0 0 calc(33% - 20px);
  margin: 10px;
}

.single-destination #states .black-label {
  height: auto;
  bottom: 0;
  top: auto;
}

.single-destination .black-label p {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0px;
  font-family: 'OS Bold';
  line-height: 120%;
}

.single-destination #states .row-wrap {
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.single-destination #contact-section .split .contact-image-container.green {
  flex: 0 0 60%;
  max-height: 500px;
  overflow: hidden;
}

.single-destination .contact-content-container {
  padding: 20px calc(100vw * .07) 20px 30px;
  position: relative;
}

.single-destination .contact-content-container h3 {
  color: #fff;
  margin-bottom: 16px;
  font-family: 'PF Bold';
  font-size: 32px;
}

.single-destination .contact-content-container p {
  margin-bottom: 30px;
}

.contact-content-container.green .triangle-piece {
  right: auto;
  left: -7vw;
  background-image: linear-gradient(to bottom left, var(--colorGreen) 50%, transparent 51%);
}

/* International */

.single-destination.postid-630 .hero-content-container a.button.white {
  display: none;
}

.single-destination.postid-630 .info-button-container {
  display: none;
}

.single-destination.postid-630 section#contact-section {
  display: none;
}

.single-destination.postid-630 section#featured-events {
  display: none;
}



#highlights h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  font-size: 36px;
}

.highlights-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.highlight {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33% - 10px);
  align-items: flex-start;
}

.highlight-image-container img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.highlight-image-container {
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
}

.highlight h3 {
  font-style: italic;
  margin-bottom: 8px;
  text-align: left;
  font-family: 'PF Bold Ital';
  font-size: 21px;
}

.highlight p {
  text-align: left;
  font-size: 16px;
}

#snapshot h2 {
  color: #fff;
  font-family: 'PF Bold';
  font-size: 36px;
  text-transform: capitalize;
}

.snapshot-columns-row {
  display: flex;
  justify-content: space-between;
}

.snapshot-column {
  color: #fff;
  flex: 1;
  padding: 0px 30px;
}

#snapshot .snapshot-column h3 {
  font-family: 'OS Bold';
  font-size: 20px;
}

#awards h2 {
  font-size: 28px;
  color: #212121;
  font-family: 'PF Bold';
  text-transform: uppercase;
}

.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-flow: wrap; */
}

.award-image-container {
  flex: 1;
  margin: 0px;
  padding: 8px;
}

.award-image-container img {
  transform: scale(0.8);
}

section#awards .content-wrapper {
  padding-bottom: 10px;
}

/* Services Page */

.page-template-services a.black-label-container .black-label-image-container {
  height: 260px;
  overflow: hidden;
}

.page-template-services a.black-label-container {
  margin-bottom: 20px;
  flex: 0 0 calc(25% - 6px);

}

.page-template-services #intro p {
  font-size: 16px;
}

.page-template-services a.black-label-container .black-label-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.page-template-services .row-wrap {
  align-items: stretch;
}

.page-template-services .row-wrap > div {
  margin-bottom: 20px;
}

.page-template-services .row-wrap .black-label {
  flex-grow: 1;
  padding: 20px 10px;
}

.page-template-services .row-wrap .black-label .subtitle {
  font-family: 'OS Reg';
  text-transform: none;
  font-weight: 100;


  font-size: 14px;
    line-height: 120%;
    padding: 0px 10px;
}

.page-template-services .row-wrap .black-label p:first-of-type {
  line-height: 120%;
  margin-bottom: 10px;
}

.ready-cta-content h4 {
  color: var(--colorGreen);
  max-width: 900px;
  margin: 0 auto 10px;
}

/* Services */
#info h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  font-size: 36px;
}

.info-images-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 40px 0px;
}

.info-images {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33% - 16px);
  align-items: flex-start;
}

.info-image-container img {
min-height: 100%;
min-width: 100%;
object-fit: cover;
}

.info-image-container {
height: 260px;
margin-bottom: 10px;
overflow: hidden;
width: 100%;
}

.statement-container {
  padding: 20px 7% 50px;
}

p.info-statement {
  font-size: 24px;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  font-family: "PF Bold Ital", sans-serif;
}

.info-images p {
  text-align: left;
  font-size: 16px;
}

.split-image-container {
  flex: 0 0 50%;
  position: relative;
}

.split-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
}

.split-content-container {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  align-items: flex-start;
  justify-content: center;
}

.split-content-container > * {
  text-align: left;
}

.split-content-container a.button {
  text-align: center;
}

.split-content-container h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  font-size: 28px;
}

.additional-info-content h2, .additional-info-content p {
  color: #fff;
}

section#additional-info.blue p a {
  color: #fff;
  text-decoration: underline;
}

section#additional-info.blue p a:hover {
  color: #A1C6CF;
}


/* Event Page */

.single-event .hero-content-container h1 {
  font-size: 54px;
}

section#overview > * {
  color: #fff;
}

.overview-content-container {
  flex: 3;
  text-align: left;
}

.overview-details {
  flex: 1;
  padding-left: 5%;
}


p.overview-heading {
  margin-bottom: 0px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  font-size: 16px;
  line-height: 140%;
}

p.overview-detail {
  margin-bottom: 0px;
  font-size: 16px;
  text-align: left;
  line-height: 140%;
}

.space {
  height: 20px;
}

.overview-content-container p:last-of-type {
  font-size: 24px;
  line-height: 180%;
  margin-bottom: 0px;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

p.stat-number {
  color: #fff;
  font-size: 64px;
  font-weight: bold;
  line-height: 100%;
  margin-bottom: 10px;
}

p.stat-label {
  font-style: italic;
  color: #fff;
  margin-bottom: 0px;
}

.info-blocks-row {
  display: flex;
  justify-content: space-between;
}

.info-block-image-container {
  height: 400px;
  margin-bottom: 10px;
  overflow: hidden;
}

.info-block-image-container img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.info-block h3 {
  color: var(--colorGreen);
  text-transform: uppercase;
  font-size: 32px;
  text-align: left;
  margin-bottom: 0px;
}

.info-block {
  flex: 0 0 49%;
}

.info-block p {
  text-align: left;
}

.additional-info-content h2 {
  font-family: "OS Bold", sans-serif;
  font-size: 26px;
  margin-bottom: 20px;
}


.additional-info-content p {
  font-size: 16px;
  line-height: 200%;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.image-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.image-gallery-container {
  flex: 0 0 20%;
  margin-bottom: 10px;
  height: 200px;
  overflow: hidden;
  padding-left: 5px;
  padding-right: 5px;
}

.image-gallery-container img {
  min-height: 200px;
  width: 100%;
  object-fit: cover;
}

#lightbox .lb-data .lb-close {
  opacity: 1;
}

#lightbox .lb-details {
  display: none;
}

#lightboxOverlay.lightboxOverlay {
  opacity: 0.9;
}

.lb-data span.lb-number {
  font-family: 'OS Bold';
  font-size: 18px;
  color: #fff;
  display: none;
}

.lb-container .lb-nav a.lb-next {
  opacity: 1;
  margin-right: -60px;
}

.lb-container .lb-nav a.lb-prev {
  opacity: 1;
  margin-left: -60px;
}

.single-event .featured-event-teaser-container-bottom, .single-service  .featured-event-teaser-container-bottom, .page-template-destinations .featured-event-teaser-container-bottom, .single-destination  .featured-event-teaser-container-bottom {
  text-align: left;
}

/* Application Page */

.app_container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Featured Events */

.home-events-text {
  max-width: 1000px;
  margin: 0 auto 20px;
}


section#featured-events h2 {
  text-transform: none;
  color: var(--colorDarkGray);
  font-size: 32px;
  font-family: 'PF Bold Ital';
  max-width: 900px;
  margin: 0 auto 20px;
}

.featured-events-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.featured-event-container {
  flex: 0 0 100%;
}

.teaser-image-container {
  height: 240px;
  overflow: hidden;
  margin-bottom: 10px;
  display: inline-block;
}

.teaser-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.featured-event-teaser-container {
  flex: 0 0 calc(25% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 5px;
}

.featured-event-teaser-container h3 a {
  font-family: 'PF Bold', sans-serif;
  text-align: left;
  font-size: 18px;
  line-height: 100%;
  color: var(--colorDark);
}

.featured-event-teaser-container h3 {
  text-align: left;
  line-height: 100%;
  margin-bottom: 10px;
  min-height: 52px;
}

.featured-event-teaser-container p {
  font-size: 14px;
  text-align: left;
  line-height: 140%;
  margin-bottom: 4px;
  padding-right: 4px;
  max-width: 1000px;
  margin: 0 auto 4px;
}

p.teaser-stats {
  font-family: 'OS Bold';
  margin-bottom: 4px;
}

a.read-more-link {
  color: var(--colorGreen);
  font-family: 'OS Bold';
  font-size: 18px;
  text-transform: capitalize;
  line-height: 100%;
}

a.read-more-link:hover {
  text-decoration: underline;
}

.featured-event-teaser-container-top {
  text-align: left;
}

#featured-events .info-button-container {
  margin-top: 40px;
}

/* Portfolios */

.page-template-portfolio h1 {
  font-size: 60px;
} 

#main-featured-event h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  text-align: left;
  font-size: 44px;
  margin-bottom: 10px;
}

section#main-featured-event .content-wrapper {
  text-align: left;
}


.featured-event-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-event-image-container {
  height: 600px;
  overflow: hidden;
  position: relative;
}


.featured-event-info-container {
  height: auto;
  padding: 10px 30px 20px;
  text-align: left;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.featured-event-info-container h3 {
  margin-bottom: 0px;
  line-height: 120%;
}

.featured-event-info-container h3 a {
  color: #fff;
  text-transform: uppercase;
  font-family: "OS Bold", sans-serif;
  font-weight:bold;
  margin-bottom: 0px;
  display: block;
}


.featured-event-info-container p {
  color: #fff;
  line-height: 120%;
  font-size: 16px;
  margin-bottom: 10px;
}


.portfolios-container .featured-events-row {
  flex-flow: wrap;
}

.portfolios-container .featured-events-row .featured-event-teaser-container {
  margin-bottom: 30px;
}

.portfolios-container .featured-event-teaser-container-top {
  text-align: center;
  margin: 0 auto;
}

.featured-event-teaser-container-top .button {
  margin-bottom: 20px;
}

.featured-event-teaser-container-bottom .button.green {
  margin-bottom: 20px;
}

.portfolios-container .featured-event-teaser-container-top > * {
  text-align: center;
}

.portfolios-container .featured-event-teaser-container-top h3, .portfolios-container .featured-event-teaser-container-top p {
  padding: 0px 10px 10px;
}

.portfolios-container a.featured-event-title {
  font-family: 'OS Bold';
  text-transform: uppercase;
  font-size: 16px;
  line-height: 100%;
  color: var(--colorDark);
}

.portfolios-container a.button.read-more.green {
  margin-bottom: 20px;
}

p.filter-heading {
  font-family: 'OS Bold';
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 0px;
}

/* ul.filter-list {
  display: flex;
  justify-content: space-between;
}

a.filter-button {
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'OS Reg', sans-serif;
}

a.filter-button:hover {
  color: var(--colorGreen);
  cursor: pointer;
}

#event-filter .content-wrapper {
  padding: 10px 7%;
}

.selected {
  color: var(--colorGreen);
  font-weight: 700;
} */

/* Services */

.page-template-services h1 {
  font-size: 60px;
}

#services h2 {
  font-family: 'PF Bold Ital';
  font-size: 32px;
  max-width: 720px;
  margin: 0 auto 20px;
}

/* Single */

.post {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.post .sidebar {
  flex: 0 0 320px;
}

.post .content {
  text-align: left;
  padding-left: 40px;
}

.post .content a {
  color: var(--colorGreen);
  text-decoration: none;
}

.post h1 {
  font-family: 'PF Bold';
}

.post h2 {
  font-family: 'PF Bold';
  color: var(--colorGreen);
}

p.newsletter-signup-heading {
  font-family: 'PF Bold';
  font-size: 28px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 10px;
}


p.newsletter-signup-text {
  text-align: left;
  line-height: 140%;
}

.newsletter-signup-container {
  margin-bottom: 40px;
}

p.sidebar-heading {
  font-family: 'OS Bold';
  font-size: 22px;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 20px 0;
  border-bottom: 4px solid var(--colorGreen);
  display: inline-block;
}

.sidebar-feed {
  text-align: left;
}


.sidebar-teaser {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.sidebar-teaser-content h2 a {
  color: var(--colorDark);
}

.sidebar-teaser-content h2 {
  line-height: 120%;
  margin-bottom: 0px;
  font-size: 15px !important;
  font-family: 'OS Bold';
  color: var(--colorDark);
}

.sidebar-thumbnail {
  height: 80px;
  flex: 0 0 80px;
}

.sidebar-thumbnail a {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.sidebar-teaser-content {
  height: 80px;
  padding-left: 10px;
  padding-top: 10px;
}

.sidebar-teaser-content p {
  margin-bottom: 0px;
  font-size: 12px;
}

.post-featured-image-container img {
  width: 100%;
}

.post-featured-image-container {
  margin-bottom: 18px;
  max-height: 420px;
  overflow: hidden;
}

.post td {
  font-family: 'OS Reg';
  padding-right: 16px;
}

.post table {
  width: 100%;
}

.post-meta-container {
  display: flex;
  align-items: center;
  border-top: 2px solid var(--colorLightGray);
  border-bottom: 2px solid var(--colorLightGray);
  padding: 4px 0px;
  margin-bottom: 30px;
}

.post-persona-role {
  color: #fff;
}

.single .post-persona-role {
  color: var(--colorDark);
}

.post-meta-container p {
  margin-bottom: 0px;
}

.post-meta-container > div {
  margin: 0 4px;
}

p.date {
  font-size: 14px;
  text-transform: uppercase;
}

.post .content .post-persona-role a {
  font-family: 'OS Reg';
  font-size: 14px;
  text-transform: uppercase;
}

.pipe {
  font-size: 14px;
}

.enjoy-row {
  display: flex;
}

.blog-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.blog-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.blog-teaser.gray {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.blog-teaser-image-container {
  height: 240px;
  overflow: hidden;
}

.blog-teaser-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.blog-teaser-container-top {
  text-align: center;
}

.may-also-like .featured-events-row {
  flex-flow: wrap;
  justify-content: space-between;
}

.may-also-like .featured-events-row .featured-event-teaser-container {
  margin-bottom: 30px;
}

.may-also-like .featured-event-teaser-container-top {
  text-align: center;
  margin: 0 auto;
}

.may-also-like .featured-event-teaser-container-top > * {
  text-align: center;
}

.may-also-like .featured-event-teaser-container-top h3, .may-also-like .featured-event-teaser-container-top p {
  padding: 0px 10px 10px;
}

.may-also-like a.featured-event-title {
  font-family: 'OS Bold';
  text-transform: uppercase;
  font-size: 16px;
  line-height: 100%;
  color: var(--colorDark);
}

.may-also-like a.button.read-more.green {
  margin-bottom: 20px;
}

.may-also-like .featured-event-teaser-container {
  flex: 0 0 32%;
}

/* Blog */

.post-date {
  flex: 0 0 auto;
}

.post-sharing {
  flex: 0 0 auto;
}

#blog-hero img {
  width: 100%;
}

.page-template-blog #main-featured-event h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
  text-align: left;
  font-size: 44px;
  margin-bottom: 20px;
  font-family: 'OS Bold', sans-serif;
  line-height: 100%;
}

.page-template-blog #main-featured-event h3 a {
  color: #fff;
}

.page-template-blog .post-meta-container {
  border: none;
  margin-bottom: 0px;
}

.page-template-blog .pipe {
  color: #fff;
}

.blog-page-row {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-flow: wrap;
  margin-top: 20px;
}

.blog-page-row .featured-event-teaser-container.gray {
  flex: 0 0 32%;
  margin-bottom: 20px;
}

.featured-event-teaser-container-top {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.featured-event-teaser-container-bottom {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
}

.blog-page-row .featured-event-teaser-container h3 a {
  text-align: center;
  color: #212121;
  font-family: 'OS Bold';
  text-transform: uppercase;
  font-size: 15px;
  line-height: 140%;
  min-height: 67px;
}

.blog-page-row .featured-event-teaser-container h3 {
  text-align: center;
  color: #212121;
  font-family: 'OS Bold';
  text-transform: uppercase;
  font-size: 15px;
  line-height: 140%;
  min-height: 0px;
  padding: 0px 6px;
}

.blog-page-row .featured-event-teaser-container p {
  font-size: 12px;
  text-align: center;
  padding: 0px 10px;
  color: #333;
  margin-bottom: 10px;
}

.blog-page-row .featured-event-teaser-container p.teaser-date {
  margin-bottom: 10px;
}

div#topic-filter {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

#topic-filter a {
  font-family: 'OS Reg';
  color: #212121;
  padding: 6px 0px;
  font-size: 14px;
  border-bottom: 1px solid var(--colorLightGray);
}

.single p img {
  /* height: 100%; */
  width: inherit;
}

.post-navigation {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px 10px 0px;
}

.post-navigation .button {
  min-width: 160px;
  margin: 0 20px;

}

.post-navigation .button a {
  color: #fff;
}

.post-navigation .button:hover {
  border: 2px solid #ededed;
  background-color: #fff;
}

.post-navigation .button:hover a {
  color: var(--colorGreen);
}

.nav-previous.button.green {
  height: 36px;
  padding: 0;
}

.nav-previous.button.green a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.green-separator {
  height: 1px;
  margin: 50px 0px 40px;
  width: 100%;
  background-color: var(--colorGreen);
}

.may-also-like h2 {
  text-align: center;
  font-family: 'OS BOLD';
  color: var(--colorDark);
  text-transform: uppercase;
  font-size: 28px;
}
/* About Us */

.page-template-about #intro p {
  font-size: 16px;
}

.page-template-about .swiper-container{
  height: 100%; 
  max-height: 100vw;
  min-height: 0;
  min-width: 0;
  max-width: 40vw; 
  width: 100%;
  overflow: hidden;
}
 
.page-template-about .swiper-slide{
  width: auto;
  flex-shrink: 0;
  display: block;
  height: 100%;
  max-height: 100%;
}

.page-template-about .swiper-wrapper{
  max-height: 100%;
  height: 100%t;
  display: flex;
}

section#our-story h2 {
  color: var(--colorGreen);
}

.our-story-content p {
  text-align: left;
}

.our-story-content img {
  margin-bottom: 30px;
}

section#intro .content-wrapper {
  max-width: 1310px;
  margin: 0 auto;
}

.affiliates-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
}

.affiliate-logo-container {
  flex: 0 0 160px;
  margin: 0 20px;
}

section#affiliates h3 {
  font-family: "PF Bold Ital", sans-serif;
  text-transform:capitalize;
}

/* Our Team */

.page-template-our-team .hero-bg-container {
  background-position-x: right;
  background-position-y: top;
}

.team-members-row {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member-column {
  flex: 1;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.team-member-image-container {
  height: auto;
  margin-bottom: 20px;
}

.team-member-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.team-member-title-container h4 {
  color: var(--colorGreen);
  font-family: 'OS Extra';
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 0px;
}

p.team-member-title {
  margin-bottom: 0px;
}

p.team-member-fun-fact {
  font-style: italic;
}

.team-member-contact-container span {
  margin-right: 10px;
  font-family: 'OS Extra';
}

.team-member-contact-container p {
  margin-bottom: 0px;
}

.our-team-cta-content div {
  margin: 0 auto;
}

p.our-team-cta-content-heading {
  font-family: "PF Bold Ital", sans-serif;
  text-transform: capitalize;
  font-size: 26px;
  margin-bottom: 30px;
}

/* Contact Us */

.page-template-contact #hero .button {
  display: none;
}

.contact-us-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.email-column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: column;
  flex: 0 0 280px;
}

.contact-form-container {
  flex-grow: 1;
}

.page-template-contact section#get-in-touch .content-wrapper {
    padding-bottom: 30px;
}

p.contact-us-city {
  margin-bottom: 0px;
  font-weight: bold;
  min-height: 33px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.office-email-container {
  margin: 6px 4px 10px;
}

span.contact-us-email {
  margin-right: 4px;
  font-size: 15px;
}

.office-email-container p:last-of-type {
  margin-bottom: 0px;
  line-height: 100%;
  font-size: 15px;
}

.contact-us-content > p {
  max-width: 930px;
  margin: 0 auto 40px;
}

.contact-us-content H2 {
  COLOR: var(--colorGreen);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 100%;
  font-size: 24px;
}


/* Guide */

.single-guide h2 {
  color: var(--colorGreen);
  text-transform: uppercase;
}

.single-guide h2 {
  color: var(--colorGreen);
  text-transform:  uppercase;
}

.single-guide section#intro p {
  font-size: 16px;
  line-height: 200%;
}

#glance .split-text-container {
  text-align: left;
  padding-left: 40px;
}

.split-text-container ul {
  padding-left: 20px;
}

.single-guide h3 {
  font-family: 'PF Bold Ital';
}

.climate-content p:first-of-type {
  max-width: 800px;
  margin: 0 auto 30px;
}

.single-guide h4 {
  font-family: 'PF Bold Ital';
  margin-bottom: 10px;
  font-size: 22px;
}

.single-guide .row-wrap {
  margin-bottom: 10px;
}

.single-guide .hero-content {
	background-color: #43A43D;
}

.single-guide .triangle-piece {
	    background-image: linear-gradient(to top right, #43A43D 50%, transparent 51%);
}

.single-guide .subhero.green {
	background-color: #333F48;
}

.flex-third-container {
  flex: 0 0 calc(33% - 10px);
    margin: 0 6px 20px;
}

.hotels-text p {
  font-size: 22px;
}

.hotels-text p a, .restaurants-text p a {
  display: inline;
  font-size: inherit;
  font-weight: 600;
  font-family: inherit;
  text-transform: none;
}

.restaurants-text p {
  font-size: 22px;
}


#guide-restaurants .flex-third-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

section#local-picks h2 {
  color: #fff;
}

.resources-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-row a {
  margin: 0 10px;
  font-family: 'OS Reg';
  color: var(--colorDark);
}

.resources-row .pipe {
  font-size: 20px;
}

#guide-resources .content-wrapper {
  padding-top: 0px;
}

.guide-hotels-content h4, .guide-restaurants-content h4 {
  margin-bottom: 0px;
  text-align: left;
}

.guide-hotels-content a, .guide-restaurants-content a {
  display: block;
  text-align: left;
  color: var(--colorGreen);
  font-family: 'OS Reg';
  text-transform: uppercase;
}

.guide-hotel-image-container {
  height: 320px;
  margin-bottom: 6px;
  overflow: hidden;
}

.guide-hotel-image-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.guide-hotels-content .row-wrap {
  justify-content: center;
}

.guide-hotels-content .flex-third-container {
  margin: 0 5px 10px;
}

.guide-restaurants-content .row-wrap {
  justify-content: center;
}

.guide-restaurants-content .flex-third-container {
  margin: 0 5px 10px;
}

.local-picks-content .flex-third-container .local-picks-image-container {
  height: 280px;
  overflow: hidden;
  margin-bottom: 10px;
}

.local-picks-content .flex-third-container img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.local-picks-content .flex-third-container h4 {
  color: #fff;
  text-align: left;
  line-height: 100%;
  font-family: 'PF Bold Ital';
}

.local-picks-content .flex-third-container h4 a {
  color: inherit;
}


.sidenav {
  height: 0px;
  width: 100%;
  position: fixed;
  z-index: 990;
  top: 80px;
  left: 0;
  background-color: var(--colorLight);
  overflow-x: hidden;
  transition: 0.5s all;
  -webkit-overflow-scrolling: touch;
  padding-right: 20px;
  padding-left: 20px;
}

.sidenav li {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sidenav li:last-of-type {
  border: none;
}

.sidenav a {
  padding: 4px;
  text-decoration: none;
  font-size: 21px;
  color: var(--colorDark);
  display: block;
  transition: 0.3s;
  font-family: "OS Reg", sans-serif;
}

.sidenav > div > a {
  margin: 0;
  padding: 0;
}

.sidenav .panel ul {
  margin-bottom: 20px;
}

a.mobile-submenu-link {
  color: var(--colorDark);
  font-size: 16px;
  margin-left: 20px;
}

#mySidenav .faq-accordion-title-container.mobile-menu-accordion h3, #mySidenav h3  {
  font-size: 16px;
}

.faq-accordion-title-container.accordion.mobile-menu-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.faq-accordion-title-container.accordion.mobile-menu-accordion h3 {
  margin-bottom: 0px;
}

.sidenav.open {
  height: calc(100% - 80px);
  padding-bottom: 100px;
  padding-top: 20px;
}

#mySidenav ul {
  list-style: none;
  padding-left: 0px;
}

.fixedPosition {
  position: fixed;
}

/* Menu Icon */
#menu-icon {
  width: 40px;
  height: 30px;
  position: relative;
  margin: 7px auto 6px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--colorDark);
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#menu-icon.open span {
  background: var(--colorDark);
}

/* Icon 3 */
#menu-icon span:nth-child(1) {
  display: none;
}

#menu-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 11px;
}

#menu-icon span:nth-child(4) {
  top: 24px;
}

#menu-icon.open span:nth-child(1) {
  display: none;
}

#menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

#menu-icon.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
  opacity: 0;
}

div#menu-icon {
  z-index: 999;
}

/* 404 */

section#page-404 .content-wrapper {
  max-width: 1200px;
}

section#page-404 h3 {
  margin-bottom: 0px;
}

#page-404 .content {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1401px) {
  .green-header-container {
    padding-right: 7%;
  }

  .header-container {
      padding: 0px 3%;
  }

  nav#nav-bar {
      padding: 0px 0%;
  }

  #nav-bar.sticky {
    padding: 0 0;
  }

    .menu-main-menu-container li a {
      text-align: center;
      line-height: 110%;
  }

  .page-template-services a.black-label-container {
    flex: 0 0 calc(33% - 12px);
    margin: 6px 6px;
  }

  .page-template-services .row-wrap {
    justify-content: center;
  }

  #nav-bar.sticky {
    padding: 0 2%;
  }

  .hero-content-container {
    padding: 70px 0px 30px calc(100vw * 0.02);
  }


  .subhero.green {
    padding: 12px 3%;
  }

  .content-wrapper {
    padding: 40px 3%;
  }

  .row-wrap {
    justify-content: center;
  }

  .state-container {
    flex: 0 0 calc(33% - 12px);
    margin: 0px 6px 20px;
  }

  ul.filter-list li {
    padding: 0px 7px;
  }

  ul.filter-list {
      flex-flow: wrap;
      justify-content: center;
  }

  .featured-event-teaser-container.gray {
      flex: 0 0 calc(33% - 10px);
  }

  .info-block h3 {
    font-size: 28px;
    padding-right: 10px;
  }

  .blog-page-row .featured-event-teaser-container.gray {
    flex: 0 0 calc(50% - 18px);
    margin-bottom: 20px;
}

  .feed-title-container {
    text-align: left;
  }

  a.blue-label-container {
    flex: 0 0 calc(50% - 16px);
    margin: 8px 8px;
}


}


@media only screen and (min-width: 1001px) {
  .mobile-only {
    display: none;
  }

  #states .black-label.expand:hover {
    top: 0;
  }
}

@media only screen and (max-width: 1000px) {

  /* Main Header */
  .desktop {
    display: none;
  }

  header.mobile-only {
    display: flex;
    padding: 0px 20px;
    justify-content: space-between;
    height: 80px;
    position: fixed;
    z-index: 20;
    background-color: #fff;
    width: 100%;
  }

  header.mobile-only a.logo-link {
    flex-grow: 1;
    flex: auto;
  }

  header.mobile-only a.logo-link img {
    padding: 10px 0px;
    height: auto;
    max-height: 100%;
  }


  #get-in-touch {
    scroll-margin-top: 80px;
  }

  .mobile-navbar {
    display: flex;
    align-items: center;
  }

  #sticky-space.mobile-only {
    height: 80px;
    background-color: #fff;
  }

  section#vid-hero #hero-content {
    padding: 60px 2%;
  }

  div#hero-content .hero-copy {
      flex: none;
      width: 100%;
      text-align: center;
  }

  section#vid-hero h1 {
    font-size: 32px;
  }

  section#vid-hero .subheading {
     font-size: 36px;
    color: #fff;
    line-height: 100%;
    filter: drop-shadow(2px 2px 0px #333);
    margin-bottom: 30px;
    font-family: 'OS Reg';
  }

.split {
    flex-direction: column;
}

.split-image-container {
    flex: none;
    height: 400px;
}

.content-container {
    flex: none;
    padding: 30px 0px 0px;
}

.contact-image-container.green {
  display: none;
}

.contact-content-container {
  padding: 30px 2%;
}

.footer-columns {
  flex-direction: column;
}

h2 {
  font-size: 28px;
}

#info h2 {
  font-size: 28px;
}

footer h3 {
  text-align: center;
}

ul#menu-footer-menu li {
  text-align: center;
  margin-right: 0;
}

.destinations-column {
  flex: none;
  margin-bottom: 30px;
}

.state-container > a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 200;
}

.contact-green-container {
  width: 100%;
}

.triangle-piece {
  display: none;
}

.hero-wrapper {
  position: relative;
}

.hero-content.dark-gray {
  flex: 0 0 100%;
  background-color: transparent;
  z-index: 10;
  background-color: rgb(0,0,0,0.4);
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero-content-container {
  padding: 60px 20px;
  margin: 0 auto;
  align-items: center;
}

.hero-content-container .button {
  margin: 0 auto;
}

#hero .hero-bg-container {
  position: absolute;
}


.single-service .featured-event-teaser-container, .single-destination .featured-event-teaser-container, .single-event .featured-event-teaser-container, .page-template-destinations .featured-event-teaser-container {
  flex-direction: column;
  flex: 0 0 calc(50% - 20px);
}

.single-service .featured-event-teaser-container-top, .single-destination .featured-event-teaser-container-top, .single-event .featured-event-teaser-container-top, .page-template-destinations .featured-event-teaser-container-top {
  display: flex;
}

.single-service .featured-events-row, .single-destination .featured-events-row, .single-event .featured-events-row , .page-template-destinations .featured-events-row {
  flex-flow: wrap;
}

.single-service a.teaser-image-container, .single-destination a.teaser-image-container, .single-event a.teaser-image-container, .page-template-destinations a.teaser-image-container {
  height: 160px;
  flex: 0 0 160px;
  margin-right: 12px;
}

.single-service a.teaser-image-container img, .single-destination a.teaser-image-container img, .single-event a.teaser-image-container img, .page-template-destinations a.teaser-image-container img {
  object-fit: cover;
}

.single-service .featured-event-teaser-container h3, .single-destination .featured-event-teaser-container h3, .single-event .featured-event-teaser-container h3, .page-template-destinations .featured-event-teaser-container h3 {
  line-height: 110%;
  font-size: 20px;
  margin-bottom: 10px;
  min-height: 0px;
}

.single-service .featured-event-teaser-container-top, .single-destination .featured-event-teaser-container-top, .single-event .featured-event-teaser-container-top, .page-template-destinations .featured-event-teaser-container-top {
  justify-content: center;
  margin-bottom: 0px;
}

.single-service .featured-event-teaser-container-bottom, .single-destination .featured-event-teaser-container-bottom, .single-event .featured-event-teaser-container-bottom, .page-template-destinations .featured-event-teaser-container-bottom {
  padding-left: 170px;
  margin-bottom: 30px;
}

.single-service .featured-event-teaser-container p, .single-destination .featured-event-teaser-container p, .single-event .featured-event-teaser-container p, .page-template-destinations .featured-event-teaser-container p {
  margin-bottom: 10px;
}

.featured-event-teaser-container:nth-child(odd) {
  margin-right: 20px;
}

.page-template-about .swiper-container {
  width: 100%;
  max-width: 100%;
  flex: none;
}

p img {
  margin: 0 0 20px;
}

.team-members-row {
  flex-direction: column;
}

.post .content {
  padding-left: 0px;
}

.selector-container.mobile-only {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0px;
}

.selector-container.mobile-only select {
  background-color: #efefef;
  border-radius: 6px;
}

.selector-container.mobile-only label {
  font-size: 13px;
  font-family: 'OS Bold';
}

.page-template-portfolio .selector-container {
  flex-direction: column;
  align-items: center;
}

.page-template-portfolio .selector-container label {
  margin-bottom: 10px;
  font-size: 15px;
}

.contact-us-content {
  flex-direction: column-reverse;
}

.email-column {
  flex: none;
  flex-flow: wrap;
}

.email-column h2 {
  flex: 0 0 100%;
}

.email-column > * {
  /* margin: 10px; */
  flex: 30%;
}

.contact-form-container {
  flex-grow: 1;
  margin-bottom: 40px;
}

.snapshot-columns-row {
  flex-direction: column;
}

.subfooter {
  flex-direction: column;
}

ul#menu-sub-footer-menu {
  flex-flow: wrap;
}

.subfooter p:after {
  content: "";
}

.hero-content-container p {
  text-align: center;
  font-size: 18px;
}

.overview-details {
  padding: 30px 0 0;
}

p.overview-heading {
  text-align: center;
}

p.overview-detail {
  text-align: center;
}

.team-member-column {
  margin-bottom: 40px;
}

.team-member-image-container {
  max-width: 500px;
  margin: 0 auto 10px;
}
	
	.pipe {
    display: none;
}

.resources-row {
    flex-direction: column;
}

.resources-row a {
    margin-bottom: 20px;
}

.guide-resources-content h4 {
    margin-bottom: 30px;
}
	

	.new-event-filter-form {
    flex-direction: column;
    align-items: center;
}

.new-event-filter-form > div {
    flex: none !important;
    margin-bottom: 20px;
    margin-right: 0px !important;
    width: 100%;
}

.select-box.destinations-select-box .options-container {
    left: 0;
}

}


@media only screen and (max-width: 700px) {

  section#intro .content-wrapper {
    text-align: left;
}

#video-section h2 {
    font-size: 28px;
    line-height: 120%;
}

.button, .post .content a.button {
    margin: 0 auto;
}

#states h2 {
    font-size: 28px;
}

.state-container {
    flex: 0 0 calc(50% - 12px);
}

.blue-label-image-container {
  height: 240px;
}

.blue-label p {
  line-height: 130%;
  text-transform: capitalize;
}

video {
  max-height: 500px;

}

.subfooter {
  flex-direction: column;
}

ul#menu-sub-footer-menu {
  flex-direction: column;
}

.subfooter a:after {
  display: none;
}

.single-service .featured-events-row,.single-destination .featured-events-row,.single-event .featured-events-row,.page-template-destinations .featured-events-row {
  flex-flow: column;
}

.single-service .featured-event-teaser-container:nth-child(odd),.single-destination .featured-event-teaser-container:nth-child(odd),.single-event .featured-event-teaser-container:nth-child(odd),.page-template-destinations .featured-event-teaser-container:nth-child(odd) {
  margin: 0;
}

.single-service a.teaser-image-container,.single-destination a.teaser-image-container,.single-event a.teaser-image-container,.page-template-destinations a.teaser-image-container {
  flex: 0 0 120px;
  height: 120px;
}

.single-service .featured-event-teaser-container h3 a,.single-destination .featured-event-teaser-container h3 a,.single-event .featured-event-teaser-container h3 a,.page-template-destinations .featured-event-teaser-container h3 a {
  font-size: 16px;
}

.single-service .featured-event-teaser-container h3,.single-destination .featured-event-teaser-container h3,.single-event .featured-event-teaser-container h3,.page-template-destinations .featured-event-teaser-container h3 {
  margin-top: -6px;
  margin-bottom: 6px;
}

.single-service .featured-event-teaser-container p,.single-destination .featured-event-teaser-container p,.single-event .featured-event-teaser-container p,.page-template-destinations .featured-event-teaser-container p {
  font-size: 12px;
}

.single-service .featured-event-teaser-container-bottom,.single-destination .featured-event-teaser-container-bottom,.single-event .featured-event-teaser-container-bottom,.page-template-destinations .featured-event-teaser-container-bottom {
  padding-left: 130px;
}

.image-gallery-container {
  flex: 0 0 25%;
  height: 120px;
}

.info-blocks-row {
  flex-flow: column;
}

.info-block-image-container {
  height: 260px;
}

.info-block {
  flex: none;
  margin-bottom: 20px;
}

.info-block:last-of-type {
  margin-bottom: 0px;
}

.stats-row {
  flex-direction: column;
}

.stat-container {
  flex: none;
  margin-bottom: 20px;
}

.stat-container p.stat-number, .stat-container p.stat-label {
  text-align: center;
}

.split-content-container {
  padding: 20px 0px 0px;
}

.split-image-container {
  height: 300px;
}

.featured-events-row.event-container {
  flex-flow: column;
}

.portfolios-container .featured-events-row .featured-event-teaser-container {
  flex-direction: column;
}

.portfolios-container .featured-event-teaser-container-top {
  flex-direction: column;
}

.portfolios-container .featured-event-teaser-container-top a.teaser-image-container {flex: none;height: 260px;margin: 0 0 20px;}

.portfolios-container .featured-event-teaser-container-bottom {
  margin: 0 0 10px;
}

.highlights-row {
  flex-direction: column;
}

.row-wrap {
  flex-direction: column;
}

.single-destination .hero-content-container h1 {
  font-size: 42px;
  text-align: center;
}


.blue-label {
  margin-top: -8px;
}

.blog-page-row .featured-event-teaser-container.gray {
  flex: 0 0 100%;
  margin: 0 0 20px;
}

.post .content {
  padding-left: 0px;
  width: 100%;
}

.blog-page-row .featured-event-teaser-container-bottom {
  padding-bottom: 20px;
}

.post-meta-container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.post-meta-container > div {
  margin: 0 auto 0 0;
}

.post-meta-container .pipe {
  display: none;
}

.post-meta-container .post-date {
  margin-bottom: 10px;
  text-align: left;
}

.post-persona-role {
  text-align: left;
}

.featured-event-info-container.dark-gray {
  padding: 10px 20px;
}

.featured-event-info-container.dark-gray h3 {
  font-size: 20px;
}

.featured-event-info-container.dark-gray p {
  font-size: 14px;
  margin-bottom: 10px;
}

.featured-event-teaser-container:nth-child(odd) {
  margin: 0 0 20px
}

.email-column > * {
  /* margin: 10px; */
  flex: 48%;
}

.info-images-row {
  flex-direction: column;
}

.info-images-row {
  flex-direction: column;
}

section#info .content-wrapper {
  text-align: left;
}

.hero-content-container h1 {
  font-size: 32px;
  text-align: center;
}

.single-event .hero-content-container h1 {
  font-size: 32px;
  text-align: center;
}

.single .post {
  flex-direction: column-reverse;
}

.enjoy-row {
  flex-direction: column;
  margin-bottom: 30px;
}

.post h1 {
  font-size: 32px;
  line-height: 120%;
}

.post h2 {
  font-size: 28px;
}

.post h3 {
  font-size: 24px;
}

.single .post-persona-role {
  margin-bottom: 10px;
}

a.affiliate-logo-container {
  flex: 0 0 36%;
}

.award-image-container {
  flex: 0 0 calc(29% - 20px);
  margin: 0px;
}

#awards h2 {
  font-size: 22px;
}

.resume-heading-container {
  flex-direction: column;
}

.resume-heading-container-copy {
  margin: 0;
  text-align: center;
}
	
	@media only screen and (max-width: 700px) {
	

		
		.new-event-filter-form {
    flex-direction: column;
    align-items: center;
}

.new-event-filter-form > div {
    flex: none !important;
    margin-bottom: 20px;
    margin-right: 0px !important;
    width: 100%;
}

.select-box.destinations-select-box .options-container {
    left: 0;
    min-width: 0px;
}

.option label {
    font-size: 10px;
}



}

