@charset "UTF-8";
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  transform-origin: left top;
  /* for open/close transition */
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.orphan-fix {
  white-space: nowrap;
}

.video-gallery__section:first-child, .entry-content ul li:first-child,
.entry-content ol li:first-child, .entry-content p:first-child, .entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child,
.entry-content .is-style-h2:first-child,
.entry-content .is-style-h3:first-child {
  margin-top: 0;
}
.video-gallery__section:last-child, .entry-content ul li:last-child,
.entry-content ol li:last-child, .entry-content p:last-child, .entry-content h1:last-child, .entry-content h2:last-child, .entry-content h3:last-child, .entry-content h4:last-child, .entry-content h5:last-child, .entry-content h6:last-child,
.entry-content .is-style-h2:last-child,
.entry-content .is-style-h3:last-child {
  margin-bottom: 0;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

iframe {
  max-width: 100%;
}

/*------------- Base Typography -------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  scroll-margin-top: 10.1875rem;
}
@media (max-width: 75rem) {
  h1, h2, h3, h4, h5, h6 {
    scroll-margin-top: 4.125rem;
  }
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5555555556;
  color: #646464;
}

* + p {
  margin: 1em 0 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #646464;
}

/*--------------------------------------*/
/*------------- Components -------------*/
/*--------------------------------------*/
/*------------- Accessibility -------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.entry-content a {
  color: #33718C;
}
.entry-content a:hover, .entry-content a:focus {
  color: #C7732C;
}
.entry-content strong,
.entry-content b {
  font-weight: 700;
}
.entry-content em,
.entry-content i {
  font-style: italic;
}
.entry-content .has-text-align-left {
  text-align: start;
}
.entry-content .has-text-align-center {
  text-align: center;
}
.entry-content .has-text-align-right {
  text-align: end;
}

.main-content {
  max-width: 78.25rem;
  padding: 0 1rem;
  margin: 3.75rem auto 6.875rem;
}
.main-content--has-sidebar {
  display: grid;
  grid-template-columns: 1fr 23.125rem;
  grid-template-rows: auto;
  grid-gap: 0 3.125rem;
}
@media (max-width: 68.75rem) {
  .main-content--has-sidebar {
    display: block;
  }
}
.main-content--no-content {
  display: none;
}

.entry-footer {
  max-width: 78.25rem;
  margin: 0 auto;
  text-align: right;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6,
.entry-content .is-style-h2,
.entry-content .is-style-h3 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  color: #646464;
  font-weight: 400;
  margin-top: 1.25em;
  margin-bottom: 0.3em;
}

.entry-content h2,
.entry-content .is-style-h2 {
  font-size: 1.875rem;
  color: #C7732C;
}

.entry-content h3,
.entry-content .is-style-h3 {
  font-size: 1.5rem;
  color: #33718C;
}

.entry-content p {
  font-family: "Open Sans", sans-serif;
  margin-top: 1em;
  margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  list-style: inherit;
  padding-left: 3em;
  margin-top: 0;
  margin-bottom: 1em;
  /* Nested Lists */
}
.entry-content ul li,
.entry-content ol li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5555555556;
  color: #646464;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.entry-content ul ul,
.entry-content ol ul,
.entry-content ul ol,
.entry-content ol ol {
  padding-left: 2em;
}

.entry-content ol {
  list-style-type: decimal;
}

.wp-block-image.is-style-separator {
  margin: 1.75rem 0;
}
.wp-block-image.is-style-separator img {
  width: 100%;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .wp-block-image.is-style-separator img {
    height: 8.125rem;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 30vw;
  }
}

.wp-block-quote {
  font-size: 1.125rem;
}
.wp-block-quote.is-style-default + .wp-block-quote, .wp-block-quote:not([class*=is-style]) + .wp-block-quote {
  margin-top: 2.25rem;
}
.wp-block-quote.is-style-floating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 21.875rem;
  padding: 1rem 2.5rem;
}
.wp-block-quote.is-style-floating {
  background-color: #FBFBFB;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #E1F1F8;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FFEEDF;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FBFBFB;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #E1F1F8;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FFEEDF;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FBFBFB;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #E1F1F8;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FFEEDF;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FBFBFB;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #E1F1F8;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FFEEDF;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FBFBFB;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #E1F1F8;
}

.wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating ~ .wp-block-quote.is-style-floating {
  background-color: #FFEEDF;
}

@media (max-width: 68.75rem) {
  .wp-block-quote.is-style-floating {
    display: block;
    position: static;
    height: auto;
    padding: 1rem;
    margin: 2em;
  }
}
@media (min-width: 68.8125rem) {
  :not(.main-sidebar) > .wp-block-quote.is-style-floating {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  }
  :not(.main-sidebar) > .wp-block-quote.is-style-floating:focus {
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    display: block;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
  }
}
.main-sidebar .wp-block-quote.is-style-floating {
  position: -webkit-sticky;
  position: sticky;
  top: 10.1875rem;
  margin-bottom: 2.5rem;
}
.main-sidebar .wp-block-quote.is-style-floating:last-child {
  margin-bottom: 0;
}
@media (max-width: 68.75rem) {
  .main-sidebar .wp-block-quote.is-style-floating {
    display: none;
  }
}
.wp-block-quote.is-style-floating p {
  max-height: 100%;
  overflow: auto;
  scrollbar-width: thin;
}
@media (max-width: 68.75rem) {
  .wp-block-quote.is-style-floating p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5555555556;
  }
}
.wp-block-quote.is-style-floating cite {
  display: block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.5em;
}
@media (max-width: 68.75rem) {
  .wp-block-quote.is-style-floating cite {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5555555556;
  }
}

.wp-block-embed-youtube {
  text-align: center;
}
.wp-block-embed-youtube figcaption {
  text-align: center;
  line-height: 1.5555555556;
}

.wp-block-video figcaption {
  text-align: center;
  line-height: 1.5555555556;
}

.wp-block-media-text {
  margin-top: 1.25rem;
}
@media (max-width: 43.75rem) {
  .wp-block-media-text {
    grid-template-columns: 1fr !important;
  }
}
.wp-block-media-text + .wp-block-media-text {
  margin-top: 2.5rem;
}
@media (max-width: 43.75rem) {
  .wp-block-media-text .wp-block-media-text__media {
    grid-column: 1;
    grid-row: 1;
    text-align: center;
    margin-bottom: 1em;
  }
  .wp-block-media-text .wp-block-media-text__media img {
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 43.75rem) {
  .wp-block-media-text .wp-block-media-text__content {
    grid-column: 1;
    grid-row: 2;
  }
}

.entry-content .has-white-background-color {
  background-color: #FFF;
}
.entry-content .has-white-color {
  color: #FFF;
}
.entry-content .has-black-background-color {
  background-color: #000;
  color: #FFF;
}
.entry-content .has-black-color {
  color: #000;
}
.entry-content .has-light-gray-background-color {
  background-color: #FBFBFB;
}
.entry-content .has-light-gray-color {
  color: #FBFBFB;
}
.entry-content .has-gray-background-color {
  background-color: #EDEDED;
  color: #FFF;
}
.entry-content .has-gray-color {
  color: #EDEDED;
}
.entry-content .has-dark-gray-background-color {
  background-color: #646464;
  color: #FFF;
}
.entry-content .has-dark-gray-color {
  color: #646464;
}
.entry-content .has-light-blue-background-color {
  background-color: #E1F1F8;
}
.entry-content .has-light-blue-color {
  color: #E1F1F8;
}
.entry-content .has-blue-background-color {
  background-color: #33718C;
  color: #FFF;
}
.entry-content .has-blue-color {
  color: #33718C;
}
.entry-content .has-dark-blue-background-color {
  background-color: #0F2638;
  color: #FFF;
}
.entry-content .has-dark-blue-color {
  color: #0F2638;
}
.entry-content .has-light-orange-background-color {
  background-color: #FFEEDF;
}
.entry-content .has-light-orange-color {
  color: #FFEEDF;
}
.entry-content .has-orange-background-color {
  background-color: #C7732C;
  color: #FFF;
}
.entry-content .has-orange-color {
  color: #C7732C;
}

/*------------- Buttons -------------*/
.button,
.button-blue {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5em;
  padding: 0.5em 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #FFF !important;
  background-color: #33718C;
  border: 2px solid #33718C;
  transition-property: background-color, color;
  transition-duration: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .button,
.button-blue {
    transition: none;
  }
}
.button:hover, .button:focus, .button:active,
.button-blue:hover,
.button-blue:focus,
.button-blue:active {
  color: #33718C !important;
  background-color: #FFF;
  transition-duration: 0.4s;
}

.button-orange {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5em;
  padding: 0.5em 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  background-color: #C7732C;
  border: 2px solid #C7732C;
  transition-property: background-color, color;
  transition-duration: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  .button-orange {
    transition: none;
  }
}
.button-orange:hover, .button-orange:focus, .button-orange:active {
  color: #C7732C;
  background-color: #FFF;
  transition-duration: 0.4s;
}

.button--compressed {
  padding: 0.25em 0.75em;
  font-weight: 400;
}

.reveal-box {
  position: relative;
  contain: content;
}
.reveal-box__image {
  height: 14.5rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reveal-box__content {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 12%;
  background-color: rgba(255, 255, 255, 0.83);
  transition: opacity 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-box__content {
    transition: none;
  }
}
.reveal-box:hover .reveal-box__content, .reveal-box:focus .reveal-box__content, .reveal-box:active .reveal-box__content {
  opacity: 0;
}
.reveal-box__copy {
  max-width: 16.5625rem;
  font-weight: 600;
  text-align: center;
}

.cta-banner {
  margin: 4.375rem 0;
  width: 100%;
  text-align: center;
  background-color: #C7732C;
  box-sizing: border-box;
  padding: 3.125rem 1rem;
  color: #FFF;
}
.cta-banner__cta {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  line-height: 1;
  color: inherit;
  margin-bottom: 0.3333333333em;
}
.cta-banner__action {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.video-and-text {
  display: flex;
  align-items: flex-start;
  /* Video and content spacing */
}
@media (max-width: 65.75rem) {
  .video-and-text {
    flex-direction: column;
    align-items: center;
  }
}
.video-and-text__video-section {
  min-width: 35rem;
  margin-right: 3.75rem;
}
@media (max-width: 65.75rem) {
  .video-and-text__video-section {
    order: 2;
    margin-right: 0;
    min-width: 0;
    width: auto;
  }
}
.video-and-text > :first-child {
  margin-right: 3.75rem;
}
@media (max-width: 65.75rem) {
  .video-and-text > :first-child {
    margin-right: 0;
  }
}
.video-and-text__video {
  min-width: 35rem;
}
@media (max-width: 65.75rem) {
  .video-and-text__video {
    order: 2;
    min-width: 0;
    width: auto;
  }
}
iframe.video-and-text__video {
  max-width: 35rem;
  width: 100%;
  max-height: 19.6875rem;
}

.video-and-text__video:not(iframe) {
  position: relative;
}
.video-and-text__video:not(iframe)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  font-size: 6.25rem;
  color: #FFF;
  transition: font-size 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  .video-and-text__video:not(iframe)::after {
    transition: none;
  }
}
.video-and-text__video:not(iframe):hover::after {
  background-size: 7.125rem 7.125rem;
  font-size: 7.125rem;
}
.video-and-text__content {
  min-width: 25rem;
}
@media (max-width: 65.75rem) {
  .video-and-text__content {
    order: 0;
    min-width: 0;
    margin-bottom: 1.875rem;
  }
}
.video-and-text__single-heading {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  color: #33718C;
}
.video-and-text__heading {
  font-size: 1.875rem;
  line-height: 1.0714285714;
  color: #33718C;
  margin: 0;
}
.video-and-text__sub-heading {
  font-size: 1.25rem;
  line-height: 1.1;
  color: #C7732C;
  margin: 1em 0;
}
.video-and-text__content .video-and-text__button {
  margin-top: 4em;
}
@media (max-width: 65.75rem) {
  .video-and-text__content .video-and-text__button {
    margin-top: 2em;
    margin-bottom: 1em;
  }
}
.video-and-text__video-section .video-and-text__button {
  margin: 1em auto 0;
}
@media (max-width: 65.75rem) {
  .video-and-text__video + .video-and-text__content {
    margin-bottom: 1.875rem;
  }
}

.post-snippet {
  display: grid;
  grid-template-columns: 14.375rem 1fr;
  grid-gap: 3.125rem;
}
.post-snippet + .post-snippet {
  margin-top: 1.5rem;
}
.post-snippet__thumbnail-link {
  display: block;
  grid-column: 1;
  width: 14.375rem;
  border-radius: 100%;
}
.post-snippet__thumbnail {
  height: 14.375rem;
  width: 14.375rem;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-snippet__thumbnail--placeholder {
  background: #646464;
}
.post-snippet__main-content {
  grid-column: 2;
}
.post-snippet__title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  color: #33718C;
}
.post-snippet__title-link {
  color: inherit;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.post-snippet__title-link:hover, .post-snippet__title-link:focus, .post-snippet__title-link:active {
  -webkit-text-decoration-color: #33718C;
          text-decoration-color: #33718C;
}
.post-snippet__content {
  display: -webkit-box;
  height: 5.25rem;
  overflow-y: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.post-snippet__more-button {
  margin-left: auto;
  padding: 0.5em 0.75em;
}
.post-snippet__footer {
  margin-top: 1em;
  text-align: right;
}

.post-snippet.post-snippet--home {
  display: block;
  margin-top: 0;
}

.post-snippet--home .post-snippet__thumbnail-link {
  margin: 0 auto 1.375rem;
}
.post-snippet--home .post-snippet__more-button {
  margin: 1.5em auto 0;
}
.post-snippet--home .post-snippet__footer {
  margin-top: 1em;
  text-align: right;
}

.layered-focus {
  display: block;
  width: 12.5rem;
  max-width: 100%;
  height: 12.5rem;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  /* Foreground image */
  /* Background image */
}
@media (max-width: 14.5rem) {
  .layered-focus {
    height: calc(100vw - 2rem);
  }
}
.layered-focus .layered-focus__fg {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 90%;
  filter: none;
  transition: filter 0.5s, transform 0.5s;
  transform-origin: bottom;
}
.layered-focus--active .layered-focus__fg, .layered-focus:hover .layered-focus__fg, .layered-focus:focus .layered-focus__fg {
  transform: translateX(-50%) scale(1.075);
  filter: none;
}
.layered-focus .layered-focus__bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  filter: blur();
  transition: filter 0.5s;
}
.layered-focus--active .layered-focus__bg, .layered-focus:hover .layered-focus__bg, .layered-focus:focus .layered-focus__bg {
  filter: blur(7px);
}
@media (hover: none) {
  .layered-focus--active .layered-focus__bg, .layered-focus:hover .layered-focus__bg, .layered-focus:focus .layered-focus__bg {
    filter: none;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 23.125rem));
  grid-gap: 2rem;
  justify-content: center;
}
.gallery__heading {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  color: #C7732C;
  text-align: center;
  margin: 1.25em 0 0.5em;
}
.gallery__image {
  width: 100%;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .gallery__image {
    height: 15rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* Custom Photoswipe styles */
.pswp img {
  max-height: none;
}

.video-gallery__section,
.entry-content .video-gallery__section {
  margin: 3.125rem 0;
}
.video-gallery__section-heading,
.entry-content .video-gallery__section-heading {
  text-align: center;
  margin-bottom: 1em;
}
.video-gallery__videos,
.entry-content .video-gallery__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem 3.125rem;
}
@media (max-width: 55.125rem) {
  .video-gallery__videos,
.entry-content .video-gallery__videos {
    grid-template-columns: 1fr;
  }
}
.video-gallery__embed,
.entry-content .video-gallery__embed {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.video-gallery__video-title,
.entry-content .video-gallery__video-title {
  font-size: 1.125rem;
  margin: 1em 0 0.5em;
}
.video-gallery__video-description p,
.entry-content .video-gallery__video-description p {
  font-size: 1rem;
}

.covid-notice {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 1.5em 1em;
}
.covid-notice__text-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.covid-notice__text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
  padding: 0.3em;
}
.covid-notice__text a {
  color: #b7564c;
  text-decoration: none;
}
.covid-notice__text a:hover, .covid-notice__text a:focus {
  text-decoration: underline;
}
.covid-notice__close {
  justify-self: flex-end;
  padding: 0.3em;
  font-size: 22px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  cursor: pointer;
}

.footer-navigation__heading {
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: inherit;
}
@media (max-width: 19.5rem) {
  .footer-navigation__heading {
    text-align: left;
  }
}
.footer-navigation__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  margin-right: -2rem;
  margin-bottom: -1em;
}
@supports (grid-template-columns: max-content max-content) {
  .footer-navigation__items {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
  }
}
@supports (gap: 1em 1em) {
  .footer-navigation__items {
    gap: 1em 1em;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 19.5rem) {
  .footer-navigation__items {
    grid-template-columns: 1fr;
  }
}
.footer-navigation__items li {
  font-weight: 400;
  margin-right: 2rem;
  margin-bottom: 1em;
}
@supports (gap: 1em 1em) {
  .footer-navigation__items li {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.footer-navigation__items a {
  color: inherit;
  text-decoration: none;
}
.footer-navigation__items a:hover, .footer-navigation__items a:active, .footer-navigation__items a:focus {
  text-decoration: underline;
}

/*-----------------------------------*/
/*------------- Layouts -------------*/
/*-----------------------------------*/
.site-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  font-size: 0.625rem;
  background-color: #FFF;
}
/* .bounding-line {
	position: absolute;
    top: -92px;
    background-color: red;
    height: 10px;
    width: 100%;
} */
.blue_bg {
	background-color: #0F2638;
}
@media (max-width: 75rem), (hover: none) {
  .site-header {
    display: none;
  }
}
.site-header__spacer {
  margin-top: 11.4375rem;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
  .site-header__spacer {
    display: none;
  }
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
  }
}
.site-header #logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1rem 0.875rem;
  position: absolute;
	width:100%;
  top: 44px;
  z-index: -1;
}
.site-header .logo-content {
  display: flex;
  text-decoration: none;
  color: inherit;
	margin-left:15vw;
}
.site-header .logo-content__text {
  margin: 0 0 0 0.75rem;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 0.9375;
  color: #0F2638;
  text-decoration: none;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item > ul.mega-sub-menu {
	margin-top:30px;
}

.sub-menu-border {
	 border-right: 4px solid #C7732C !important;
	
	margin-top:auto;
	margin-bottom:auto;
}
.sub-menu-html{
	height:350px;
	padding-right:32px;
	
}

.sub-menu-html h2 {
	font-size:30px;
	
}

.sub-menu-html p {
	color: #0F2638;
	font-size:18px;
	
}



.site-header #internal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem 0.875rem;
    margin-bottom: 16px;
    background-color: #0F2638;
}
.menu-nav-menu-new-container{
	margin-right:auto;
}
.site-header .phones {
  background: #FFF;
  font-family: "Cinzel", serif;
  font-size: 1.2em;
}
.site-header .phones .site-content {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
}
.site-header .phones p {
  font-size: 1.25rem;
  margin: 0;
  color: #0F2638;
}
.site-header .phones p:first-child {
  margin-right: 4.625rem;
}
.site-header .phones a {
  color: #0F2638 !important;
  text-decoration: none;
}
.site-header .phones a:hover {
  color: #0F2638;
}
#mega-sub-menu li {
	padding-bottom:10px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: none !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
	opacity: 95% !important;
}
#mega-menu-5628-0:after {
    content: "";
    height: 100px;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-top: 50px solid orange;
    margin: auto;
}



#mega-menu-item-5628 > a:hover, #mega-menu-item-5629 > a:hover, #mega-menu-item-3252 > a:hover, #mega-menu-item-3255 > a:hover, #mega-menu-item-5823 > a:hover, #mega-menu-item-3357 > a:hover, #mega-menu-item-2356 > a:hover, #mega-menu-item-3337 > a:hover {
	content: ' ';
	border-bottom: 1px solid #C7732C !important;
	position: absolute;
    width: 50%;
	left: 0;
    margin-left: 25%;
}


/* Page Header */
.entry-header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7.5rem;
  max-height: 30vh;
  max-width: 80.75rem;
  margin-left: auto;
  margin-right: auto;
    margin-top: 150px;
  color: #FFF;
/*   background-color: #33718C; */
  background-size: cover;
  background-position: center;
}

.entry-title {
  font-family: "Cinzel", serif;
  font-size: 30px;
  text-align: center;
  padding: 0 1rem;
}

/* Mobile Header */
.shiftnav-main-toggle-content {
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
}

/*------------- Navigation -------------*/
.navigation > li.current-menu-item > a, .navigation > li.current_page_item > a,
.navigation > ul > li.current-menu-item > a,
.navigation > ul > li.current_page_item > a, .navigation > li:focus-within > a,
.navigation > ul > li:focus-within > a, .navigation > li:hover > a,
.navigation > ul > li:hover > a {
/*   color: #33718C; */
}
.navigation > li.current-menu-item > a::after, .navigation > li.current_page_item > a::after,
.navigation > ul > li.current-menu-item > a::after,
.navigation > ul > li.current_page_item > a::after, .navigation > li:focus-within > a::after,
.navigation > ul > li:focus-within > a::after, .navigation > li:hover > a::after,
.navigation > ul > li:hover > a::after {
  width: calc(100% - 2em);
  left: 1em;
}

ul.navigation,
div.navigation > ul {
  display: flex;
	margin-left:87px;
}

.navigation > li,
.navigation > ul > li {
  list-style: none;
  /* Sub-menus */
  /* Level 1 sub-menus */
  /* Level 2 sub-menus */
}
.navigation > li a,
.navigation > ul > li a {
  display: block;
  color: #FFF;
  text-decoration: none;
  font-size: 2em;
  padding: 1em;
  text-transform: uppercase;
  transition: color 0.4s, background-color 0.4s;
  text-align: center;
  /* For hover underline positioning */
  position: relative;
}
@media (prefers-reduced-motion: reduce) {
  .navigation > li a,
.navigation > ul > li a {
    transition: none;
  }
}
.navigation > li > a,
.navigation > ul > li > a {
  padding: 0.5em 0.5em;
}
.navigation > li > a::after,
.navigation > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: calc(0.5em - 0.375rem);
  width: 0;
  margin: 0 auto;
  transition: left 0.4s, width 0.4s;
  border-bottom: 1px solid orange;
}
@media (prefers-reduced-motion: reduce) {
  .navigation > li > a::after,
.navigation > ul > li > a::after {
    transition: none;
  }
}
.navigation > li.current-menu-item > a, .navigation > li.current_page_item > a,
.navigation > ul > li.current-menu-item > a,
.navigation > ul > li.current_page_item > a {
  cursor: default;
}
.navigation > li .sub-menu,
.navigation > li .children,
.navigation > ul > li .sub-menu,
.navigation > ul > li .children {
  display: none;
  position: absolute;
  text-align: left;
  background-color: #FBFBFB;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 16.875rem;
  box-shadow: 0 0 3px rgba(100, 100, 100, 0.7);
  /* Level 2 sub-menu */
}
.navigation > li .sub-menu > li,
.navigation > li .children > li,
.navigation > ul > li .sub-menu > li,
.navigation > ul > li .children > li {
  position: relative;
}
.navigation > li .sub-menu > li > a,
.navigation > li .children > li > a,
.navigation > ul > li .sub-menu > li > a,
.navigation > ul > li .children > li > a {
  text-align: inherit;
}
.navigation > li .sub-menu > li > a:hover, .navigation > li .sub-menu > li > a:focus,
.navigation > li .children > li > a:hover,
.navigation > li .children > li > a:focus,
.navigation > ul > li .sub-menu > li > a:hover,
.navigation > ul > li .sub-menu > li > a:focus,
.navigation > ul > li .children > li > a:hover,
.navigation > ul > li .children > li > a:focus {
  color: #FFF;
  background-color: #0F2638;
}
.navigation > li .sub-menu .sub-menu > li,
.navigation > li .sub-menu .children > li,
.navigation > li .children .sub-menu > li,
.navigation > li .children .children > li,
.navigation > ul > li .sub-menu .sub-menu > li,
.navigation > ul > li .sub-menu .children > li,
.navigation > ul > li .children .sub-menu > li,
.navigation > ul > li .children .children > li {
  border-left-width: 0;
}
.navigation > li:hover > .sub-menu, .navigation > li:hover > .children,
.navigation > ul > li:hover > .sub-menu,
.navigation > ul > li:hover > .children {
  display: block;
}
.navigation > li:focus-within > .sub-menu, .navigation > li:focus-within > .children,
.navigation > ul > li:focus-within > .sub-menu,
.navigation > ul > li:focus-within > .children {
  display: block;
}
.navigation > li .sub-menu > li:hover > .sub-menu,
.navigation > li .children > li:hover > .children,
.navigation > ul > li .sub-menu > li:hover > .sub-menu,
.navigation > ul > li .children > li:hover > .children {
  display: block;
}
.navigation > li .sub-menu > li:focus-within > .sub-menu,
.navigation > li .children > li:focus-within > .children,
.navigation > ul > li .sub-menu > li:focus-within > .sub-menu,
.navigation > ul > li .children > li:focus-within > .children {
  display: block;
}
.navigation > li:last-child .sub-menu, .navigation > li:last-child .children,
.navigation > ul > li:last-child .sub-menu,
.navigation > ul > li:last-child .children {
  /* Avoid last submenu item being longer than screen */
}
@media (max-width: 93.75rem) {
  .navigation > li:last-child .sub-menu, .navigation > li:last-child .children,
.navigation > ul > li:last-child .sub-menu,
.navigation > ul > li:last-child .children {
    right: 0;
  }
}
.navigation > li .sub-menu .sub-menu,
.navigation > li .children .children,
.navigation > ul > li .sub-menu .sub-menu,
.navigation > ul > li .children .children {
  display: none;
  position: absolute;
  text-align: left;
  left: 100%;
  top: 0;
}

/* Mobile Navigation */
@media (min-width: 75.0625rem) and (hover: hover) {
  body.shiftnav-disable-shift-body {
    padding-top: 0 !important;
  }

  .shiftnav-shiftnav-main {
    display: none !important;
  }
}
#shiftnav-toggle-main {
  display: none;
}
@media (max-width: 75rem), (hover: none) {
  #shiftnav-toggle-main {
    display: block;
  }
}

#shiftnav-main .shiftnav-menu .menu-item {
  font-size: 1.25rem;
  text-transform: uppercase;
  background-color: #FFF;
}
#shiftnav-main .shiftnav-menu .menu-item > a {
  color: #646464;
  background-color: #FFF;
  transition: color 0.4s, background-color 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  #shiftnav-main .shiftnav-menu .menu-item > a {
    transition: none;
  }
}
#shiftnav-main .shiftnav-menu .menu-item > a:hover, #shiftnav-main .shiftnav-menu .menu-item > a:active, #shiftnav-main .shiftnav-menu .menu-item > a:focus {
  color: #FFF;
  background-color: #0F2638;
}
#shiftnav-main .shiftnav-menu .shiftnav-target {
  display: inline-block;
  width: calc(100% - 3rem) !important;
}
#shiftnav-main .shiftnav-menu :not(.menu-item-has-children) > .shiftnav-target {
  width: 100% !important;
}
#shiftnav-main .shiftnav-menu .toggle-submenu {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  box-sizing: content-box;
  padding: 0.75rem;
  border: 0;
  color: #646464;
  background-color: #FFF;
  cursor: pointer;
  transition: color 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  #shiftnav-main .shiftnav-menu .toggle-submenu {
    transition: none;
  }
}
#shiftnav-main .shiftnav-menu .toggle-submenu.active {
  color: #0F2638;
}
#shiftnav-main .shiftnav-menu .sub-menu {
  display: none !important;
  padding-left: 1em;
}
#shiftnav-main .shiftnav-menu .toggle-submenu.active + .sub-menu {
  display: block !important;
}
#shiftnav-main .shiftnav-menu .current-menu-item .shiftnav-target {
  color: #FFF;
  background-color: #33718C;
}
#shiftnav-main .shiftnav-menu .shiftnav-target {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
}

.site-content {
  max-width: 78.25rem;
  margin: 0 auto;
}

.treatments-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-items: center;
}
@supports (gap: 3.75rem 1.625rem) {
  .treatments-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16.25rem, 25rem));
    grid-template-rows: auto;
    gap: 3.75rem 1.625rem;
  }
  @media (max-width: 37.75rem) {
    .treatments-list {
      grid-template-columns: 1fr;
    }
  }
}
.treatments-list__item {
  width: 100%;
  max-width: 25rem;
  height: 17.5rem;
  box-sizing: border-box;
  margin-right: 1.625rem;
  margin-bottom: 3.75rem;
  background: transparent;
  background-size: cover;
  perspective: 62.5rem;
}
@supports (gap: 3.75rem 1.625rem) {
  .treatments-list__item {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 37.75rem) {
  .treatments-list__item {
    width: 100%;
  }
}
.treatments-list__item:hover .treatments-list__inner, .treatments-list__item:focus .treatments-list__inner {
  transform: rotateY(0.5turn);
}
.treatments-list__item:focus-within .treatments-list__inner {
  transform: rotateY(0.5turn);
}
.treatments-list__inner {
  position: relative;
  height: 100%;
  width: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  background-size: cover;
}
@media (prefers-reduced-motion: reduce) {
  .treatments-list__inner {
    transition: none;
  }
}
.treatments-list__front, .treatments-list__back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.treatments-list__front {
  background-color: rgba(51, 113, 140, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.treatments-list__back {
  background-color: rgba(255, 255, 255, 0.9);
  transform: rotateY(0.5turn) translateZ(1px);
}
.treatments-list__heading {
  padding: 1rem;
  max-width: 21.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1666666667em;
  text-align: center;
  color: #FFF;
}
@media (max-width: 37.75rem) {
  .treatments-list__heading {
    height: auto;
  }
}
.treatments-list__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 1rem 1.5rem;
}
.treatments-list__copy {
  margin: 0;
  font-size: 1.25rem;
}
.treatments-list__button {
  margin: 1em auto 0;
}

.button-blue {
/* 	height:30px;
	width:298px; */
	background-color:#4C829A;
	color: #fff;
	font-size:18px;
	font-weight:500;
	text-align:center;
	margin-top:40px;
	
}
/* Gravity Forms styling */
.gform_wrapper .gform_body .gform_fields .gfield {
  padding-right: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield label.gfield_label {
  font-size: 1.25rem;
  font-weight: 400;
  color: #646464;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container {
  margin-top: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield input,
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  font-size: 1.25rem;
  color: #646464;
}

.gform_wrapper .gform_footer {
  padding-top: 0 !important;
}
.gform_wrapper .gform_footer input.gform_button[type=submit] {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5em;
  padding: 0.5em 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  background-color: #C7732C;
  border: 2px solid #C7732C;
  transition-property: background-color, color;
  transition-duration: 0.3s;
  font-size: 1.25rem;
  margin-top: 0;
  margin-left: auto !important;
  margin-right: 0 !important;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .gform_wrapper .gform_footer input.gform_button[type=submit] {
    transition: none;
  }
}
.gform_wrapper .gform_footer input.gform_button[type=submit]:hover, .gform_wrapper .gform_footer input.gform_button[type=submit]:focus, .gform_wrapper .gform_footer input.gform_button[type=submit]:active {
  color: #C7732C;
  background-color: #FFF;
  transition-duration: 0.4s;
}

.main-sidebar {
  grid-column: 2/-1;
}
@media (max-width: 68.75rem) {
  .main-sidebar {
    margin-top: 2.5rem;
  }
}

.entry-content .sidebar-form__heading {
  font-size: 1.5rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.entry-content .sidebar-form__phone {
  font-size: 1.875rem;
  font-family: "Cinzel", serif;
  text-align: center;
  margin: 0 0 0.75rem;
}
.entry-content .sidebar-form__phone-link {
  text-decoration: none;
}
.entry-content .sidebar-form__phone-link:hover, .entry-content .sidebar-form__phone-link:focus {
  text-decoration: underline;
}

.site-footer {
  box-sizing: content-box;
  padding-left: calc((100% - 78.25rem) / 2);
  padding-right: calc((100% - 78.25rem) / 2);
  margin-top: 3.75rem;
  padding-top: 1.75rem;
  padding-bottom: 1.25rem;
  background-color: #33718C;
  color: #FFF;
}
@media (max-width: 80.25rem) {
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.site-footer__brand {
  max-width: 15.625rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.site-footer__brand-name {
  font-family: "Cinzel", serif;
  font-size: 1.625rem;
  line-height: 1;
  color: inherit;
  margin-bottom: 0.5rem;
}
.site-footer__brand-separator {
  margin: 0.5rem 0;
  color: inherit;
  border-top: #FFF solid;
  border-width: 0.0625rem 0 0;
}
.site-footer__brand-tagline {
  font-weight: 300;
  line-height: 1.5;
  color: inherit;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.site-footer__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 80.25rem) {
  .site-footer .footer-navigation {
    margin: 0 3.75rem 1.875rem;
  }
}
@media (max-width: 19.5rem) {
  .site-footer .footer-navigation {
    margin-left: 0;
    margin-right: auto;
  }
}
.site-footer__contact {
  flex-grow: 1;
  margin: 0 3.75rem;
}
@media (max-width: 80.25rem) {
  .site-footer__contact {
    order: 1;
    width: 100%;
    margin: 1.875rem 0 0;
  }
}
.site-footer__contact-blocks {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.site-footer__contact-block {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1em;
  font-size: 1rem;
}
.site-footer__contact-content {
  display: block;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.5;
  color: inherit;
  text-decoration: none;
}
a.site-footer__contact-content:hover, a.site-footer__contact-content:active, a.site-footer__contact-content:focus {
  text-decoration: underline;
}

.site-footer__contact-map-embed {
  margin-top: 1.125rem;
  width: 100%;
}
.site-footer__social-icons {
  margin-top: 3.125rem;
  text-align: center;
}
.site-footer__social-icon {
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}
.site-footer__social-icon:not(:last-child) {
  margin-right: 2em;
}
.site-footer__social-icon:hover, .site-footer__social-icon:active, .site-footer__social-icon:focus {
  color: #0F2638;
}
.site-footer__copyright {
  font-size: 1rem;
  color: inherit;
  text-align: center;
}

.site-footer ~ img[src^="//insight.adsrvr.org"] {
  position: absolute;
  top: 0;
  right: 0;
}

/*------------- Home -------------*/
.hero {
  position: relative;
  width: 100%;
  font-size: 0;
  /* Removes empty space between video and banner*/
}
@media (max-width: 48rem) {
  .hero {
    height: auto;
  }
}
.hero-background-video {
  width: 100%;
  height: 100%;
  max-height: calc(90vh - 10.1875rem);
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #FFF;
}
@media (max-width: 75rem) {
  .hero-background-video {
    display: none;
  }
}
.hero-background-video.cover {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-mobile-background-video {
  width: 100%;
  height: calc(90vh - 4.125rem);
  max-height: 56.25vw;
  margin: 0 auto;
  display: none;
}
@supports (aspect-ratio: 16 / 9) {
  .hero-mobile-background-video {
    aspect-ratio: 16 / 9;
  }
  @media (min-aspect-ratio: 1/1) {
    .hero-mobile-background-video {
      height: calc(90vh - 4.125rem);
      max-height: 56.25vw;
      width: auto;
    }
  }
  @media (max-aspect-ratio: 1/1) {
    .hero-mobile-background-video {
      width: 100%;
      height: auto;
    }
  }
}
@media (max-width: 75rem) {
  .hero-mobile-background-video {
    display: block;
  }
}
.hero-banner {
  width: 100%;
/*   background: #0F2638; */
  color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: left;
  box-sizing: border-box;
  padding: 1.2em;
  transition: none 1s;
	position:absolute;
	top: 35%;
	left: 14%;
	z-index:2;
  
}
.hero-banner h1 {
	font-size: 41px;
}

.hero-banner h3 {
  font-family: "Open Sans", sans-serif;
	font-size: 21px;
	line-height: 2.4;
}

div.hero-contact.button {
	display: block;
    width: 109px;
    margin-top: 1.5em;
    padding: 10px 20px;
    font-family: "Open Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    text-decoration: none !important;
    color: #FFF;
    background-color: #C7732C;
    border: 2px solid #C7732C;
    transition-property: background-color, color;
    transition-duration: 0.3s;
    font-size: 20px;
    cursor: pointer;
}

div.hero-contact.button a{
	 text-decoration: none !important;
	color:#fff;
}
.hero-mute-button {
  position: absolute;
  bottom: 1.5em;
  right: 1.5em;
  font-size: 2em;
  color: #FFF;
  text-shadow: rgba(0, 0, 0, 0.8) 0 0 2px;
  cursor: pointer;
}

.home-content {
  margin-bottom: 3.75rem;
}

.home-intro {
  max-width: 80.25rem;
  padding: 0 1rem;
  margin: 3.25rem auto 4.125rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Content section */
  /* Image section */
}
@media (max-width: 69.875rem) {
  .home-intro {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.home-intro__content {
  flex: 1 0;
  margin-right: 1.625rem;
}
@media (max-width: 69.875rem) {
  .home-intro__content {
    margin-right: 0;
    margin-bottom: 1.875rem;
  }
}
.home-intro__heading {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #33718C;
  margin-bottom: 0;
}
.home-intro__sub-heading {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  color: #C7732C;
  margin: 1em 0;
}
.home-intro__button {
  margin-top: 2em;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 69.875rem) {
  .home-intro__button {
    /* Center button */
    margin-left: auto;
  }
}
.home-intro__image-section {
  flex: 0 1 auto;
  text-align: center;
  width: 31.25rem;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.home-intro__image {
  max-width: 100%;
}
@media (min-width: 69.875rem) {
  @supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .home-intro__image {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center bottom;
         object-position: center bottom;
    }
  }
}
.home-intro__image-caption {
  max-width: 26.25rem;
  margin: 1.875rem auto 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.375;
}

.treatments {
  box-sizing: content-box;
  padding-left: calc((100% - 78.25rem) / 2);
  padding-right: calc((100% - 78.25rem) / 2);
  padding-top: 2.625rem;
  padding-bottom: 3.75rem;
  background-color: #FBFBFB;
}
@media (max-width: 80.25rem) {
  .treatments {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.treatments__heading {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  color: #C7732C;
  margin-bottom: 2.875rem;
}

.our-values {
  width: 100%;
  max-width: 57.5rem;
  margin: 3.25rem auto;
  box-sizing: border-box;
  padding: 2.5rem 3.25rem;
  background: #FFF;
  text-align: center;
}
@media (max-width: 57.5rem) {
  .our-values {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.our-values-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
  margin-bottom: 3.125rem;
  overflow: auto;
  background-size: cover;
}
.our-values__heading {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  color: #33718C;
  margin: 1.5em 0 0.4em;
}
.our-values__heading:first-child {
  margin-top: 0;
}
.our-values__heading + p {
  margin-top: 0;
}
.our-values p {
  font-family: "Merriweather", serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}
.our-values__button {
  margin: 2em auto 0;
}

.prescribing-purpose-section {
  max-width: 78.25rem;
  margin: 1.875rem auto 4.375rem;
  padding: 0 1rem;
}
.prescribing-purpose-section__heading {
  font-size: 2.5rem;
  color: #33718C;
  margin-bottom: 0.625em;
  text-align: center;
}
.prescribing-purpose-section__video {
  max-width: 50rem;
  margin: 0 auto;
}

.family-section {
  max-width: 78.25rem;
  margin: 1.875rem auto 4.375rem;
  padding: 0 1rem;
}

.sentence-completion-section {
  max-width: 78.25rem;
  margin: 3.75rem auto 4.375rem;
  padding: 0 1rem;
}
.sentence-completion-section__heading {
  font-size: 2.5rem;
  color: #33718C;
  margin-bottom: 0.625em;
  text-align: center;
}
.sentence-completion-section__boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: 0.6875rem;
  margin-right: -1.375rem;
  margin-bottom: -1.375rem;
  width: 100%;
}
.sentence-completion-section__boxes .reveal-box {
  margin-right: 1.375rem;
  margin-bottom: 1.375rem;
  width: 24.375rem;
}

.video-section {
  max-width: 78.25rem;
  margin: 4.375rem auto 4rem;
  padding: 0 1rem;
}
.video-section .video-and-text {
  margin: 4.0625rem 0;
}

.latest-articles {
  box-sizing: content-box;
  padding-left: calc((100% - 78.25rem) / 2);
  padding-right: calc((100% - 78.25rem) / 2);
  max-width: 78.25rem;
  margin: 4rem auto 3.125rem;
  padding-top: 2.25rem;
  padding-bottom: 4.125rem;
  background-color: #FBFBFB;
}
@media (max-width: 80.25rem) {
  .latest-articles {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.latest-articles__heading {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: #C7732C;
  text-align: center;
}
.latest-articles__articles {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-right: -2.5rem;
  margin-bottom: -1.875rem;
  width: 100%;
}
@media (max-width: 50.75rem) {
  .latest-articles__articles {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.latest-articles__articles > .post-snippet {
  flex: 0 1;
  margin-right: 2.5rem;
  min-width: 23.125rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 50.75rem) {
  .latest-articles__articles > .post-snippet {
    min-width: 0;
    margin-right: 0;
  }
}

.home-logos {
  max-width: 78.25rem;
  width: 100%;
  margin: 2.5rem auto 2.5rem;
  box-sizing: border-box;
  padding: 0 2.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 80.25rem) {
  .home-logos {
    /* Get rid of logos' excess horizontal margin */
    justify-content: space-around;
  }
}
.home-logos img {
  margin: 0 1.5625rem 1.25rem;
}
@media (max-width: 80.25rem) {
  .home-logos img {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
  }
}
.home-logos .slick-arrow::before {
  color: #33718C;
}
.home-logos .slick-arrow.slick-prev {
  left: 20px;
}
.home-logos .slick-arrow.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "";
}
.home-logos .slick-arrow.slick-next {
  right: 20px;
}
.home-logos .slick-arrow.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "";
}

.staff-list,
.entry-content .staff-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 12.5rem);
  align-items: flex-start;
  justify-content: center;
  gap: 3.75rem 1.875rem;
  margin-bottom: 3.75rem;
}
@media (max-width: 29rem) {
  .staff-list,
.entry-content .staff-list {
    row-gap: 3.125rem;
  }
}
.staff-list--large-items,
.entry-content .staff-list--large-items {
  grid-template-columns: repeat(auto-fill, 15.625rem);
  -moz-column-gap: 4.375rem;
       column-gap: 4.375rem;
}
.staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus {
  display: block;
  width: 15.625rem;
  max-width: 100%;
  height: 15.625rem;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  /* Foreground image */
  /* Background image */
}
@media (max-width: 17.625rem) {
  .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus {
    height: calc(100vw - 2rem);
  }
}
.staff-list--large-items .layered-focus .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg,
.entry-content .staff-list--large-items .layered-focus .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 90%;
  filter: none;
  transition: filter 0.5s, transform 0.5s;
  transform-origin: bottom;
}
.staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg, .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg, .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg,
.entry-content .staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg,
.entry-content .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg,
.entry-content .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__fg {
  transform: translateX(-50%) scale(1.075);
  filter: none;
}
.staff-list--large-items .layered-focus .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  filter: blur();
  transition: filter 0.5s;
}
.staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg, .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg, .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg {
  filter: blur(7px);
}
@media (hover: none) {
  .staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg, .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg, .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus, .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus--active .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus:hover .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg,
.entry-content .staff-list--large-items .layered-focus:focus .staff-list--large-items .layered-focus,
.entry-content .staff-list--large-items .layered-focus .entry-content .staff-list--large-items .layered-focus__bg {
    filter: none;
  }
}
.staff-list__heading,
.entry-content .staff-list__heading {
  font-size: 1.875rem;
  margin-top: 0;
  margin-bottom: 1.2em;
  color: #C7732C;
  text-align: center;
}

.staff.single {
  max-width: 78.25rem;
  margin: 3.75rem auto;
  padding: 0 1rem;
}

.staff-entry-content {
  display: grid;
  grid-template-columns: 21.875rem 1fr;
  grid-gap: 1.875rem 3.125rem;
  /* Main Content Section */
  /* Sidebar */
}
@media (max-width: 52rem) {
  .staff-entry-content {
    grid-template-columns: 100%;
  }
}
.staff-entry-content__main {
  margin-top: 1.875rem;
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 52rem) {
  .staff-entry-content__main {
    margin-top: 0;
    grid-column: 1;
    grid-row: 1;
  }
  @supports (display: contents) {
    .staff-entry-content__main {
      grid-row: 2;
    }
  }
}
.staff-entry-content__title {
  font-family: "Cinzel", serif;
  line-height: 1.25;
  font-size: 1.875rem;
  color: #33718C;
  margin-bottom: 0.2em;
}
.staff-entry-content__position {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #C7732C;
  margin: 0.3em auto 0.5em;
}
.staff-entry-content__custom-content {
  margin-top: 0.75rem;
  padding-left: 0;
}
.staff-entry-content__sidebar {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 52rem) {
  .staff-entry-content .staff-sidebar {
    grid-row: 2;
  }
  @supports (display: contents) {
    .staff-entry-content .staff-sidebar {
      display: contents;
    }
  }
}
.staff-entry-content .staff-sidebar__image {
  grid-column: 1;
  max-width: 100%;
  width: 21.875rem;
  height: 21.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 23.875rem) {
  .staff-entry-content .staff-sidebar__image {
    height: calc(100vw - 2rem);
  }
}
@media (max-width: 52rem) {
  .staff-entry-content .staff-sidebar__image {
    margin-left: auto;
    margin-right: auto;
  }
}
.staff-entry-content .staff-sidebar__image.layered-focus {
  display: block;
  width: 21.875rem;
  max-width: 100%;
  height: 21.875rem;
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  /* Foreground image */
  /* Background image */
}
@media (max-width: 23.875rem) {
  .staff-entry-content .staff-sidebar__image.layered-focus {
    height: calc(100vw - 2rem);
  }
}
.staff-entry-content .staff-sidebar__image.layered-focus .layered-focus__fg {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  height: 90%;
  filter: none;
  transition: filter 0.5s, transform 0.5s;
  transform-origin: bottom;
}
.staff-entry-content .staff-sidebar__image.layered-focus--active .layered-focus__fg, .staff-entry-content .staff-sidebar__image.layered-focus:hover .layered-focus__fg, .staff-entry-content .staff-sidebar__image.layered-focus:focus .layered-focus__fg {
  transform: translateX(-50%) scale(1.075);
  filter: none;
}
.staff-entry-content .staff-sidebar__image.layered-focus .layered-focus__bg {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  filter: blur();
  transition: filter 0.5s;
}
.staff-entry-content .staff-sidebar__image.layered-focus--active .layered-focus__bg, .staff-entry-content .staff-sidebar__image.layered-focus:hover .layered-focus__bg, .staff-entry-content .staff-sidebar__image.layered-focus:focus .layered-focus__bg {
  filter: blur(7px);
}
@media (hover: none) {
  .staff-entry-content .staff-sidebar__image.layered-focus--active .layered-focus__bg, .staff-entry-content .staff-sidebar__image.layered-focus:hover .layered-focus__bg, .staff-entry-content .staff-sidebar__image.layered-focus:focus .layered-focus__bg {
    filter: blur(7px);
  }
}
@media (max-width: 52rem) {
  .staff-entry-content .staff-sidebar__info-content {
    margin-top: 0;
  }
}
.staff-entry-content .staff-sidebar__heading {
  font-size: 1.5rem;
  text-align: center;
  margin: 2em 0 0.75em;
}
@media (max-width: 52rem) {
  .staff-entry-content .staff-sidebar__heading {
    text-align: left;
  }
  .staff-entry-content .staff-sidebar__heading:first-child {
    margin-top: 0;
  }
}
.staff-entry-content .staff-sidebar__quote {
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
}

.staff.not-single {
  text-align: center;
}
.staff.not-single .staff-item__image-wrapper {
  display: block;
  margin-bottom: 2.125rem;
  z-index: 2;
}
.staff.not-single .staff-item__image:not(.layered-focus__fg) {
  border-radius: 100%;
  width: 12.5rem;
  height: 12.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff.not-single .staff-item__image:not(.layered-focus__fg).staff-item__image--large {
  width: 15.625rem;
  height: 15.625rem;
}
.staff.not-single .staff-item__image--placeholder {
  background: url(/wp-content/uploads/photo-placeholder.png) #646464 center;
  background-size: 150%;
}
.staff.not-single .staff-item__name {
  font-size: 1.25rem;
  font-family: "Cinzel", serif;
  color: inherit;
  margin: 0;
}
.staff.not-single .staff-item__name-link {
  color: #33718C;
  text-decoration: none;
}
.staff.not-single .staff-item__name-link:hover, .staff.not-single .staff-item__name-link:focus, .staff.not-single .staff-item__name-link:active {
  color: #C7732C;
  text-decoration: underline;
}
.staff.not-single .staff-item__creds {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  margin: 0;
}
.staff.not-single .staff-item__position {
  font-size: 1.125rem;
  margin-top: 0.75em;
}

.services-list__service {
  margin-bottom: 1.5rem;
}
.services-list__read-more {
  font-weight: 400;
}

.service {
  margin-bottom: 1.5rem;
}
.service__heading {
  font-size: 1.5rem;
  color: #C7732C;
  margin-bottom: 0.7em;
}
.service__content {
  display: flex;
  align-items: flex-start;
}
.service__thumbnail {
  width: 25rem;
  max-width: calc(50vw - 2.5625rem);
  height: 12.5rem;
  margin-right: 3.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 40.625rem) {
  .service__thumbnail {
    display: none;
  }
}
.service__entry-content {
  flex: 1 1;
}

.post-2826 .main-content {
  max-width: 66.875rem;
}

.contact-us__first-text,
.entry-content .contact-us__first-text {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.3em;
}
.contact-us__columns .wp-block-column,
.entry-content .contact-us__columns .wp-block-column {
  flex-basis: calc(50% - 1.875rem);
}
.contact-us__columns .wp-block-column:not(:last-child),
.entry-content .contact-us__columns .wp-block-column:not(:last-child) {
  margin-bottom: 3.75rem;
}
.contact-us__columns .wp-block-column:not(:first-child),
.entry-content .contact-us__columns .wp-block-column:not(:first-child) {
  margin-left: 3.75rem;
}
@media (max-width: 37.5rem) {
  .contact-us__columns .wp-block-column:not(:first-child),
.entry-content .contact-us__columns .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
}
.contact-us__heading,
.entry-content .contact-us__heading {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.contact-us__heading + *,
.entry-content .contact-us__heading + * {
  margin-top: 0;
}
.contact-us__phone,
.entry-content .contact-us__phone {
  font-family: "Cinzel", serif;
  font-size: 1.875rem;
}
.contact-us__map,
.entry-content .contact-us__map {
  font-size: 1.125rem;
  border: 0;
  height: 12.5rem;
  max-height: 100vh;
  margin-top: 4em;
}
@media (max-width: 37.5rem) {
  .contact-us__map,
.entry-content .contact-us__map {
    margin-top: 1em;
  }
}
.contact-us__separator-image,
.entry-content .contact-us__separator-image {
  height: 11.25rem;
}
.contact-us__separator-image img,
.entry-content .contact-us__separator-image img {
  height: 100%;
}

.post-thumbnail {
  max-height: 18.75rem;
}

@media screen and (max-width: 1516px ) {
	.site-header .logo-content{
		margin-left: 11vw;
	}

}
@media screen and (max-width: 1428px ) {
	.site-header .logo-content{
		margin-left: 8vw;
	}

}
@media screen and (max-width: 1390px ) {
	.site-header .logo-content{
		margin-left: 5vw;
	}
	
	#sub-menu {
	  width: 230px !important;
    padding: 0.5em 20px;
    font-size: 18px;
    height: 48px;
}

}
	


@media screen and (max-width: 1330px ) {
	.site-header .logo-content{
		margin-left: 3vw;
	}
	
	#mega-menu-wrap-main-menu{
		margin-right:14vw !important;
	}

}

@media screen and (max-width: 1280px ) {
	.site-header .logo-content{
		margin-left: 1vw;
	}

}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInZlbmRvcnMvcGhvdG9zd2lwZS9waG90b3N3aXBlLmNzcyIsInZlbmRvcnMvcGhvdG9zd2lwZS9kZWZhdWx0LXNraW4vZGVmYXVsdC1za2luLmNzcyIsInZlbmRvcnMvb3dsLWNhcm91c2VsMi9vd2wuY2Fyb3VzZWwubWluLmNzcyIsInZlbmRvcnMvb3dsLWNhcm91c2VsMi9vd2wudGhlbWUuZGVmYXVsdC5taW4uY3NzIiwidmVuZG9ycy9fb3JwaGFuLWZpeC5zY3NzIiwiYWJzdHJhY3RzL19taXhpbnMuc2NzcyIsImJhc2UvX3Jlc2V0LnNjc3MiLCJiYXNlL19tZWRpYS5zY3NzIiwiYmFzZS9fdHlwb2dyYXBoeS5zY3NzIiwiYWJzdHJhY3RzL19jb25maWcuc2NzcyIsImNvbXBvbmVudHMvX2luZGV4LnNjc3MiLCJjb21wb25lbnRzL19hY2Nlc3NpYmlsaXR5LnNjc3MiLCJjb21wb25lbnRzL3VzZXItaW5wdXQvX2dlbmVyYWwuc2NzcyIsImNvbXBvbmVudHMvdXNlci1pbnB1dC9jb3JlLWJsb2Nrcy9fYmxvY2tfX2hlYWRpbmcuc2NzcyIsImNvbXBvbmVudHMvdXNlci1pbnB1dC9jb3JlLWJsb2Nrcy9fYmxvY2tfX3BhcmFncmFwaC5zY3NzIiwiY29tcG9uZW50cy91c2VyLWlucHV0L2NvcmUtYmxvY2tzL19ibG9ja19fbGlzdC5zY3NzIiwiY29tcG9uZW50cy91c2VyLWlucHV0L2NvcmUtYmxvY2tzL19ibG9ja19faW1hZ2Uuc2NzcyIsImNvbXBvbmVudHMvdXNlci1pbnB1dC9jb3JlLWJsb2Nrcy9fYmxvY2tfX3F1b3RlLnNjc3MiLCJjb21wb25lbnRzL3VzZXItaW5wdXQvY29yZS1ibG9ja3MvX2Jsb2NrX19lbWJlZC5zY3NzIiwiY29tcG9uZW50cy91c2VyLWlucHV0L2NvcmUtYmxvY2tzL19ibG9ja19fdmlkZW8uc2NzcyIsImNvbXBvbmVudHMvdXNlci1pbnB1dC9jb3JlLWJsb2Nrcy9fYmxvY2tfX21lZGlhLXRleHQuc2NzcyIsImNvbXBvbmVudHMvdXNlci1pbnB1dC9fY29sb3JzLnNjc3MiLCJjb21wb25lbnRzL19idXR0b24uc2NzcyIsImNvbXBvbmVudHMvX3JldmVhbC1ib3guc2NzcyIsImNvbXBvbmVudHMvX2N0YS1iYW5uZXIuc2NzcyIsImNvbXBvbmVudHMvX3ZpZGVvLWFuZC10ZXh0LnNjc3MiLCJjb21wb25lbnRzL19wb3N0LXNuaXBwZXQuc2NzcyIsImNvbXBvbmVudHMvX2hvbWUtcG9zdC1zbmlwcGV0LnNjc3MiLCJjb21wb25lbnRzL19sYXllcmVkLWZvY3VzLnNjc3MiLCJjb21wb25lbnRzL19nYWxsZXJ5LnNjc3MiLCJjb21wb25lbnRzL192aWRlby1nYWxsZXJ5LnNjc3MiLCJjb21wb25lbnRzL19jb3ZpZC1ub3RpY2Uuc2NzcyIsImNvbXBvbmVudHMvX2Zvb3Rlci1uYXZpZ2F0aW9uLnNjc3MiLCJsYXlvdXRzL19pbmRleC5zY3NzIiwibGF5b3V0cy9faGVhZGVyLnNjc3MiLCJsYXlvdXRzL19nZW5lcmFsLnNjc3MiLCJsYXlvdXRzL190cmVhdG1lbnRzLWxpc3Quc2NzcyIsImxheW91dHMvX2Zvcm1zLnNjc3MiLCJsYXlvdXRzL19zaWRlYmFyLnNjc3MiLCJsYXlvdXRzL19mb290ZXIuc2NzcyIsInBhZ2VzL19ob21lLnNjc3MiLCJwYWdlcy9fc3RhZmYtbGlzdC5zY3NzIiwicGFnZXMvX3N0YWZmLnNjc3MiLCJwYWdlcy9fc2VydmljZXMtbGlzdC5zY3NzIiwicGFnZXMvX2NvbnRhY3QtdXMuc2NzcyIsInBhZ2VzL19wb3N0cy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQTtBQUNBO0FBQUE7QUFBQTtBQUdBO0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FBQ0E7RUFDQTtFQUNBOzs7QUFDQTtFQUNFO0VBQ1E7OztBQUNWO0VBQ0U7OztBQUVKO0FBQ0E7QUFDRTtFQUNBO0VBQ0E7QUFDQTtFQUNBO0VBQ1E7OztBQUVWO0VBQ0U7OztBQUVGO0FBQ0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQ0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQ0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7QUFBQTtBQUFBO0FBSUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ1E7RUFDUjtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFFRjtBQUNBO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDSTtFQUNKO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBQUNBO0VBQ0E7RUFDUTs7O0FBRVY7RUFDRTtBQUNBO0VBQ0E7RUFDUTs7O0FBRVY7QUFBQTtFQUVFO0VBQ0E7OztBQUVGO0FBQUE7RUFFRTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7QUFBQTtBQUFBO0FBQUE7QUFJQTtFQUNFOzs7QUFFRjtBQUFBO0FBQUE7QUFBQTtBQUlBO0VBQ0U7OztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7QUFBQTtBQUFBO0FBSUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTs7O0FDbExGO0FBQ0E7O0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOztBQUFBO0FBWUE7O0FBQUE7O0FBQUE7QUFLQTtBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNRO0VBQ1I7RUFDUTs7O0FBQ1I7RUFDRTs7O0FBQ0Y7RUFDRTtFQUNBOzs7QUFDRjtFQUNFO0VBQ0E7OztBQUVKO0FBQ0E7RUFDRTs7O0FBRUY7QUFBQTtBQUFBO0VBR0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQ0U7RUFDQTtBQUFBO0FBQUE7SUFHRTs7O0VBQ0Y7QUFBQTtJQUVFOzs7QUFFSjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFO0VBQ0E7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0FBQ0E7QUFBQTtFQUVFOzs7QUFFRjtBQUFBO0FBQUE7QUFBQTtBQUlBO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7OztBQUVGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTs7O0FBRUY7RUFDRTtFQUNBOzs7QUFFRjs7QUFBQTs7QUFBQTtBQUtBO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDSTs7O0FBRU47RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ1E7RUFDUjtFQUNBOzs7QUFFRjtFQUNFOzs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNRO0VBQ1I7RUFDSTtFQUNJO0VBQ1I7RUFDUTtFQUNSO0VBQ0E7OztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFDQTtFQUNFO0VBQ0E7OztBQUNGO0FBQ0U7RUFDQTs7O0FBQ0Y7RUFDRTs7O0FBRU47RUFDRTs7O0FBQ0E7RUFDRTtFQUNJO0VBQ0k7OztBQUVaO0FBQ0E7RUFDRTs7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTs7O0FBQ0E7RUFDRTs7O0FBRUo7RUFDRTtFQUNBOzs7QUFFRjtFQUNFO0VBQ0E7OztBQUVGO0VBQ0U7OztBQUVGOztBQUFBOztBQUFBO0FBS0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGOztBQUFBOztBQUFBO0FBS0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFDQTtFQUNFO0VBQ0E7OztBQUVKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7OztBQUVGO0FBQ0E7RUFDRTs7O0FBRUY7O0FBQUE7O0FBQUE7O0FBQUE7QUFPQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDUTtFQUNSO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTtFQUNBOzs7QUFFRjtFQUNFOzs7QUFDQTtBQUNFO0VBQ0E7OztBQUVKO0VBQ0U7OztBQUNBO0VBQ0U7RUFDUTs7O0FBQ1Y7RUFDRTtFQUNROzs7QUFFWjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQ0U7QUFBQTtBQUFBO0FBQUE7RUFJQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtFQUNRO0VBQ1I7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7OztBQUVKO0VBQ0U7SUFDRTtJQUNROztFQUNWO0lBQ0U7SUFDUTs7O0FBRVo7RUFDRTtJQUNFO0lBQ1E7O0VBQ1Y7SUFDRTtJQUNROzs7QUFFWjtFQUNFO0lBQ0U7SUFDUTs7RUFDVjtJQUNFO0lBQ1E7O0VBQ1Y7SUFDRTtJQUNROzs7QUFFWjtFQUNFO0lBQ0U7SUFDUTs7RUFDVjtJQUNFO0lBQ1E7O0VBQ1Y7SUFDRTtJQUNROzs7QUFFWjs7QUFBQTs7QUFBQTtBQUtBO0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7QUFBQTtBQUFBO0VBSUU7RUFDQTtFQUNBO0VBQ1E7OztBQUVWO0FBQ0E7QUFBQTtFQUVFOzs7QUFFRjtBQUFBO0VBRUU7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Y0NpQjtFZEFqQjtFQUNBO0VBQ0E7QUFhQTtBQXFCQTs7QUEvQkU7RWNzRkU7SWRyRkE7OztBQVVKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBOztBQUdGO0VBR0U7RUFDQTs7QUFJRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHRjtFQUtFLFFBRmlCOztBQUtmO0VBUko7SUFTTSxRQU5hOzs7QWNpRGY7RUFGRjtJQUdJOzs7QUFJSjtFQUNFO0VBQ0E7RUFDQTs7QUFFQTtFQUxGO0lBTUk7O0VBRUE7SUFDRTs7O0FBS047RUFDRSxhakMvRW1CO0VpQ2dGbkI7RUFDQTtFQUNBO0VBQ0E7OztBQU9OO0VBQ0U7O0FBSUU7RUFDRTtFQUNBO0VBQ0E7O0FBR0Y7RUFDRTtFQUNBLE9qQ3hEbUI7RWlDeURuQixRakN6RG1CO0VpQzBEbkI7O0FBRUE7RUFDRSxPakM1RHVCO0VpQzZEdkIsUWpDN0R1Qjs7QWlDZ0UzQjtFQUNFO0VBQ0E7O0FBR0Y7RUFDRTtFQUNBLGFqQ3RIZ0I7RWlDdUhoQjtFQUNBOztBQUVBO0VBQ0UsT2pDM0pNO0VpQzRKTjs7QUFFQTtFQUdFLE9qQzlKTTtFaUMrSk47O0FBTU47RUFDRSxhakN6SWdCO0VpQzBJaEI7RUFDQTs7QUFHRjtFQUNFO0VBQ0E7OztBQzlMSjtFQUNFOztBQUdGO0VBQ0U7OztBQUlKO0VBSUU7O0FBRUE7RUFDRTtFQUNBO0VBQ0E7O0FBR0Y7RUFDRTtFQUNBOztBQUdGO0VBSUU7RUFDQSxXQUhhO0VBSWI7RUFDQSxjQXZCMkI7RUF3QjNCOztBQUVBO0VBVkY7SUFXSTs7O0FBSUo7RUFDRTs7O0FDNUNKO0VBQ0U7OztBQVNBO0FBQUE7RUFDRSxhbkNxQ2tCO0VtQ3BDbEI7RUFDQTtFQUNBOztBQUtBO0FBQUE7RUFDRTs7QUFFQTtBQUFBO0VBQ0UsZUFoQnFCOztBQW1CdkI7QUFBQTtFQUNFLGFBckJ1Qjs7QUF1QnZCO0VBSEY7QUFBQTtJQUlJOzs7QUFNUjtBQUFBO0VBQ0U7RUFDQTs7QUFFQTtBQUFBO0VBQ0U7O0FBSUo7QUFBQTtFQUNFLGFuQ0VrQjtFbUNEbEI7O0FBR0Y7QUFBQTtFQUNFLFduQ2FvQjtFbUNacEI7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFQRjtBQUFBO0lBUUk7OztBQUlKO0FBQUE7RUFDRTs7QUFFQTtBQUFBO0VBQ0U7OztBQ2xFTjtFQUNFIiwiZmlsZSI6Im1haW4uY3NzIn0= */

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