/**
 * Highest priority styling
 *
 * @format
 */

/*
CORE
HEADER
MENUS
*/

/*******************************************************************************************
CORE - Top-level styling
*******************************************************************************************/
:root {
  font-size: 16px;
  --body-text-color: #1e272b;
  --primary-color: #1b3a63;
  --secondary-color: #5e93aa;
  --alternate-color: #6dbe5a;
  --gray-color: #1e272b;
  --light-gray-color: #eff4f7;
  --body-font-family: 'Oxygen', sans-serif;
  --heading-font-family: 'Lora', serif;
  --fa-caret-right: '\f0da';
  --fa-angle-right: '\f105';
  --fa-plus: '\f067';
  --fa-minus: '\f068';
}

@media screen and (min-width: 768px) {
  /*TABLET*/
  :root {
    font-size: 16px;
  }
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  display: block !important;
  line-height: 1.6;
  color: #1e272b;
  font-size: 16px;
  font-family: var(--body-font-family);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

*:focus {
  outline: auto;
}

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

/* CORE > Headings and Paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 30px;
  color: #1b3a63;
  font-weight: 400;
  font-family: var(--heading-font-family);
  line-height: 1.2;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 23px;
  color: #6dbe5a;
  font-weight: 700;
  position: relative;
}

h4::after {
  background: #6dbe5a;
  content: '';
  left: 0;
  height: 2px;
  width: 100%;
  bottom: -10px;
  position: absolute;
}

h5,
h6 {
  font-size: 20px;
}

p {
  margin: 0 0 30px;
  font-size: 16px;
  color: #1e272b;
  line-height: 30px;
}

/* CORE > Links and Buttons */
a {
  color: #6dbe5a;
  text-decoration: underline;
}

a:hover,
a:focus {
  color: #5e93aa;
  text-decoration: underline;
}

a.no-underline {
  text-decoration: none;
}

a.no-underline:hover,
a.no-underline:focus {
  text-decoration: underline;
}

a,
button,
.button {
  -webkit-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
  -o-transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
  transition: color 200ms ease-out, background 200ms ease-out, transform 60ms ease-in;
}

button,
.button {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  margin: 0;
  border-radius: 0px;
  padding: 12px 25px;
  text-align: center;
  display: inline-block;
  color: #1b3a63;
  background-color: #6dbe5a;
  text-decoration: none;
}

button:active,
.button:active {
  transform: translateY(1.5px);
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: #1b3a63;
  color: #fff;
  text-decoration: none;
}

/* CORE > Layout */
.columns,
.column {
  float: left;
  padding: 0 15px;
}

.row,
.row-wide,
.row-narrow {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}
.header-desktop .row {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.row-narrow {
  max-width: 1024px;
}

.row-wide {
  max-width: 1599px;
}

.row:after {
  clear: both;
}

.row:after,
.row:before {
  display: table;
  content: ' ';
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1;
}

/* CORE > Utility Classes */
.no-float {
  float: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-min-height {
  min-height: 0;
}

.position-static,
.static {
  position: static !important;
}

.position-relative,
.relative {
  position: relative !important;
}

.block {
  display: block;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.center,
.align-center,
.text-center {
  text-align: center;
}

.right,
.align-right,
.text-right {
  text-align: right;
}

.body-font {
  font-family: var(--body-font-family);
}

.header-font {
  font-family: var(--header-font-family);
}

.uppercase {
  text-transform: uppercase;
}

.hide {
  display: none;
}

.visually-hidden {
  border: none !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.flex-container {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.flex-align-vertical {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-align-horizontal {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  text-align: center;
}

.two-buttons-container a,
.two-buttons-container button {
  display: block;
  margin-bottom: 10px;
}

.small-text {
  font-size: 0.9rem;
}

.larger-text {
  font-size: 1.2rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.bold,
.font-bold {
  font-weight: 700;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.small-margin-left {
  margin-left: 10px;
}

.small-margin-right {
  margin-right: 10px;
}

.no-background {
  background: none !important;
}

.animate-in-view,
.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 1 !important;
}

.pointer-events-none {
  pointer-events: none;
}

.transition-all {
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.z-index-over {
  position: relative;
  z-index: 1;
}

.background-center {
  background-position: center center !important;
}

.background-y-bottom {
  background-position-y: 100%;
}

.background-y-top {
  background-position-y: 0%;
}

.background-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

.background-transparent {
  background: transparent;
}

.light-text,
button.light-text,
.light-text h1,
.light-text h2,
.light-text h3,
.light-text p,
.light-text span,
.light-text li,
.light-text label {
  color: #fff;
}

@media screen and (min-width: 450px) {
  .two-buttons-container {
    display: flex;
    justify-content: center;
  }

  .two-buttons-container a,
  .two-buttons-container button {
    margin: 0 6px;
  }
}

@media (min-width: 768px) {
  .hide-for-medium {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0px), screen and (min-width: 768px) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 767px), screen and (min-width: 1025px) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .show-for-large {
    display: none !important;
  }
}

/*******************************************************************************************
HEADER 
*******************************************************************************************/

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  border-bottom: 0px solid transparent;
  -webkit-transition: border-color 200ms ease-out;
  -moz-transition: border-color 200ms ease-out;
  -ms-transition: border-color 200ms ease-out;
  -o-transition: border-color 200ms ease-out;
  transition: border-color 200ms ease-out;
}

body.scrolled .header {
  /*border-color: #0F8577;*/
}

.header > .row {
  height: 100%;
}

.header a {
  text-decoration: none;
}

.header-desktop {
  display: none;
}

.header-logo {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 8px;
}

.header-logo img {
  max-width: 310px;
  /*	height: 124px;*/
  display: block;
  width: 100%;
}
.header-logo a {
  width: 350px;
}
.header-mobile-inner {
  display: flex;
  min-height: 70px;
}

.header-mobile-buttons {
  display: flex;
  margin-left: 4%;
  flex: 1;
  justify-content: flex-end;
}

.header-mobile-buttons a,
.header-mobile-buttons button {
  display: flex;
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex: 1;
  max-width: 50px;
  width: 50px;
  height: 50px;
}

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

  .header-desktop {
    display: block;
  }

  .header-logo {
    padding: 0;
  }
}

/* HEADER > module-header-b-style Start */
.module-header-b-lower {
  background: #1b3a63;
}

.module-header-b-lower-inner {
  padding: 0 15px;
}

.module-header-b .main-navigation-menu > li {
  padding: 0px 0;
  margin-right: 0;
}

.module-header-b .main-navigation-menu > li:after {
  display: none;
}

.module-header-b .main-navigation-menu > li > a {
  color: #fff;
}

.module-header-b .main-navigation-menu a:focus,
.module-header-b .main-navigation-menu a:hover,
.module-header-b .main-navigation-menu li:hover > a {
  color: #fff;
  background: #6dbe5a;
  text-decoration: none;
}

.module-header-b-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 05px 0;
}

.module-header-b-phone {
  font-size: 1.1rem;
}

.module-header-b-upper-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
}

.header-cta-right {
  margin-left: 15px;
  text-align: right;
}
.header-cta-right {
  text-align: right;
  color: #1b3a63;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
.header-cta p,
.header-cta p a {
  margin: 0 !important;
  font-size: 15px;
  font-weight: 600;
  color: #1b3a63;
}
.header-cta p a:hover,
.header-cta p a:focus {
  margin: 0 !important;
  font-size: 15px;
  font-weight: 600;
  color: #6dbe5a;
}

.header-cta p {
  margin: 0 !important;
}

.header-badge-lefft img {
  display: block;
}

.module-header-b-phone {
  font-size: 30px;
  line-height: 33px;
  font-weight: bold;
}
.module-header-b-phone i {
  color: #1b3a63;
  font-size: 23px;
  position: relative;
  top: -3px;
  font-weight: 600;
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
  .header-logo img {
    max-width: 315px;
  }
}

/* HEADER > module-header-b-style END */

/* HEADER > Header Search Bar */

.header-search {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background-color: #14172f;
  padding: 18px 0;
  width: 100%;
  opacity: 0;
  z-index: 3;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.header-search.active {
  opacity: 1;
  top: 0;
}

.header-search-inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  float: none;
}

.search-results-post-type:not(:last-child) {
  margin-bottom: 30px;
}

.search-results-post-type ul {
  margin: 0;
}

.header-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 30px;
  background: #14172f;
  display: none;
  max-height: 350px;
  overflow: auto;
}

.header-search-results.active {
  display: block;
  -webkit-animation: fadeIn 200ms ease-out;
  animation: fadeIn 200ms ease-out;
}

.header-search-results h3,
.header-search-results a,
.header-search-results p {
  color: #fff;
}

.header-search-results h3 {
  margin-bottom: 8px;
}

.header-search-results a {
  text-decoration: none;
}

.header-search-results a:hover,
.header-search-results a:focus {
  text-decoration: underline;
}

.header-search-form {
  position: relative;
  flex: 1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

#header-search-input {
  margin: 0;
  height: 45px;
  border: 0 none;
  font-size: 1.3rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

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

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

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

input::placeholder {
  color: #fff;
}

.header-search button {
  padding: 0 20px;
  height: 45px;
  white-space: pre;
}

.header-search-submit {
  margin: 0 1%;
}

#header-search-open {
  font-size: 1.1rem;
  display: inline-block;
  line-height: 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  margin: 0 0 5px 30px;
}

/*******************************************************************************************
MENUS - Main navigation, dropdowns and mobile menu
*******************************************************************************************/
.main-navigation-menu {
  margin: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-navigation-menu li {
  display: block;
  position: relative;
  padding: 0;
}

.main-navigation-menu > li {
  padding: 0 0 20px 0;
  margin-right: 35px;
}

.main-navigation-menu > li:last-of-type {
  margin-right: 0;
}

.main-navigation-menu > li > a {
  position: relative;
}

.main-navigation-menu > li:last-of-type > a {
  margin-right: 0;
}

.main-navigation-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  width: 300px;
  margin: 0;
}

.main-navigation-menu > li.menu-item-1259 .sub-menu {
  columns: 2;
  width: 593px;
  left: -200px;
  background: #6dbe5a;
}

.main-navigation-menu > li:last-of-type .sub-menu {
  left: -176px;
}
.main-navigation-menu > a:hover + .mega-menu,
.main-navigation-menu > a:focus + .mega-menu,
.main-navigation-menu > li.active > .mega-menu,
.main-navigation-menu > a:hover + .sub-menu,
.main-navigation-menu > a:focus + .sub-menu,
.main-navigation-menu > li.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideDown 200ms both;
  animation: menuSlideDown 200ms both;
}

.main-navigation-menu a:focus,
.main-navigation-menu a:hover,
.main-navigation-menu li:hover > a {
  color: #e80924;
  text-decoration: underline;
}

.main-navigation-menu > li > a {
  display: block;
  height: 100%;
  color: #14172f;
  line-height: 1;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 20px 10px;
}

/* MENUS > Main Nav Dropdowns (Level 2) */
#desktop-navigation .sub-menu li,
.mega-menu li {
  background: #6dbe5a;
  padding-left: 0;
  -webkit-transition: background 200ms ease-out;
  -moz-transition: background 200ms ease-out;
  -ms-transition: background 200ms ease-out;
  -o-transition: background 200ms ease-out;
  transition: background 200ms ease-out;
}

#desktop-navigation .sub-menu li {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #1b3a63;
}
/*#desktop-navigation .sub-menu li:last-child {
	border: none;
}*/
#mega-menu li a,
#desktop-navigation .sub-menu li a {
  color: #1b3a63;
  font-size: 16px;
  display: block;
  padding: 12px 15px 12px 25px;
  line-height: 1;
  text-decoration: none;
  font-weight: bold;
}
#desktop-navigation .sub-menu li:hover,
#desktop-navigation .sub-menu li:focus {
  background: #1b3a63;
}
#desktop-navigation .sub-menu li a:hover,
#desktop-navigation .sub-menu li a:focus {
  color: #fff;
  background: transparent;
}
.mega-menu li.active,
#desktop-navigation .sub-menu li.active {
  background: #1b3a63;
}

.mega-menu li::before,
#desktop-navigation .sub-menu li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  left: 7px;
  top: 7px;
  color: #fff;
  pointer-events: none;
  -webkit-transition: color 200ms ease-out;
  -moz-transition: color 200ms ease-out;
  -ms-transition: color 200ms ease-out;
  -o-transition: color 200ms ease-out;
  transition: color 200ms ease-out;
  font-weight: 300 !important;
  font-size: 16px;
  font-style: normal;
  text-rendering: auto;
}

#desktop-navigation .sub-menu li:hover::before,
#desktop-navigation .sub-menu li:focus::before {
  color: #6dbe5a;
}

.mega-menu li.active:before,
#desktop-navigation .sub-menu li.active:before {
  color: #6dbe5a;
}

#desktop-navigation .sub-menu .menu-item-has-children > a:after {
  content: '\f101';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 10px;
  color: #0f8577;
}

#desktop-navigation .sub-menu .menu-item-has-children.active > a:after {
  color: #fff;
}

#desktop-navigation .sub-menu .menu-item-has-children ul {
  position: absolute;
  left: 100%;
  top: 0;
}

#desktop-navigation .sub-menu .sub-menu .sub-menu {
  display: none !important;
}

#desktop-navigation .sub-menu .menu-item-has-children:hover ul,
.menu-item-has-children.active > .sub-menu {
  display: block;
  -webkit-animation: menuSlideRight 200ms both;
  animation: menuSlideRight 200ms both;
}

/* MENUS > Mobile Menu */
#container {
  position: relative;
  right: 0;
  top: 0;
  overflow: hidden;
}

#container:before {
  z-index: 99;
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  -webkit-transition: opacity 200ms ease-out;
  -moz-transition: opacity 200ms ease-out;
  -ms-transition: opacity 200ms ease-out;
  -o-transition: opacity 200ms ease-out;
  transition: opacity 200ms ease-out;
}

#container.active {
  cursor: pointer;
}

#container.active:before {
  opacity: 1;
}

#mobile-menu:not(.active) {
  display: none;
}

#mobile-navigation {
  z-index: 100;
  position: fixed;
  background-color: #1b3a63;
  opacity: 0;
}

#mobile-navigation,
#mobile-navigation .sub-menu {
  display: block;
  height: 100vh;
  transform: translateY(-100%);
  width: 100%;
  animation-fill-mode: both;
  -webkit-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
  -o-transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
  transition: all 500ms cubic-bezier(0.87, 0, 0.13, 1);
}

.mobile-navigation-top-inner {
  align-items: center;
  padding: 15px 0 8px 20px;
  padding-right: 0;
  background: transparent;
}

#mobile-navigation.active .mobile-navigation-top-inner {
  display: flex !important;
  justify-content: flex-end;
}

.mobile-navigation-close {
  background: none;
}

#mobile-navigation a {
  padding-left: 40px;
}

#mobile-navigation.active {
  transform: translateY(0);
  opacity: 1;
}

#mobile-navigation a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  text-transform: uppercase;
  font-weight: bold;
  padding-right: 60px;
  line-height: 1.5;
}

#mobile-navigation a:hover,
#mobile-navigation a:active,
#mobile-navigation a:focus {
  color: #6dbe5a !important;
}

#mobile-navigation ul {
  margin: 0;
}
#mobile-navigation .fas.fa-arrow-right {
  font-weight: bold;
}

#mobile-navigation ul li {
  padding: 0;
  position: relative;
  display: block;
  width: 100%;
  border-bottom: 0px solid #e9f5f7;
}

#mobile-navigation ul li:last-of-type {
  border: none;
}

#mobile-navigation ul li:before {
  display: none;
}

#mobile-navigation ul li.sub-menu-open > .sub-menu {
  top: 0;
  transform: translateY(0);
  display: block;
  -webkit-animation: fadeInRight 300ms ease-out;
  animation: fadeInRight 300ms ease-out;
  animation-fill-mode: both;
}

#mobile-navigation .sub-menu {
  margin: 0;
  position: fixed;
  background-color: #1b3a63;
  z-index: 1;
  overflow: auto;
  display: none;
}

.mobile-navigation-next,
.mobile-navigation-close {
  padding: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 60px;
  height: 100%;
}

.mobile-navigation-close {
  margin-left: auto;
  color: #14172f;
  font-size: 1.6rem;
  height: 60px;
}

.mobile-navigation-close:focus,
.mobile-navigation-close:hover {
  color: #0f8577;
}

.mobile-navigation-next {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  color: #fff;
}

.mobile-navigation-next:hover,
.mobile-navigation-next:focus {
  background: #5e93aa;
  color: #fff;
}

.mobile-navigation-previous button:hover,
.mobile-navigation-previous button:focus {
  background: #5e93aa;
  color: #fff;
}

.mobile-navigation-previous {
  margin-bottom: 10px;
  border: none !important;
}
.mobile-navigation-close.no-background.mobile-menu-toggle {
  background: #1b3a63 !important;
  font-size: 22px;
  height: 50px;
  max-height: 50px;
}

#mobile-navigation.active .mobile-navigation-top-inner img {
  max-width: 200px;
  height: auto !important;
  width: 100%;
  display: none;
}

.mobile-menu-toggle {
  margin-left: 8px;
  margin-right: 5px;
  background: #1b3a63 !important;
  color: #fff;
  font-weight: bold;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #5e93aa;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  #mobile-navigation {
    display: none;
  }

  .mobile-navigation-top-inner {
    display: none;
  }
}

/* MENUS > Mega Menu */
.mega-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  display: none;
  background: #14172f;
  padding: 25px 75px;
}

.mega-navigation-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 15px;
  margin: 0;
}

.mega-menu li {
  border-right: 1px solid #fff;
}

.mega-menu li:nth-child(4n) {
  border-right: none;
  margin: 0;
  padding-right: 0;
}

.mega-menu .sub-menu {
  display: none;
}

/* HOME HERO AND/OR SLIDER Start */

.home-hero {
  position: relative;
  margin-top: 172px;
}
.slick-autoplay-toggle-button {
  display: none;
}
/* .home-slider {
	position: absolute;
	top: 0;
	left: 0;
} */

.home-slider,
.home-slider-single {
  height: 670px;
}

.home-slider-single {
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 60%;
}

.home-slider-single.book-slide {
  background-position-x: center;
}

.home-slider-single.book-slide .tag-one {
  color: #6dbe5a;
}

.home-slider .slick-dots li button:before {
  color: #fff;
}

.home-hero-form-container {
  display: none;
}

.home-hero .slick-dots {
  z-index: 1;
}
.home-slider-single .columns,
.home-slider-single .row {
  height: 100%;
}

.home-slider-tagline-inner {
  height: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 0;
  justify-content: center;
}

.home-slider-single-tagline {
  width: 100%;
  max-width: 840px;
  background: rgba(27, 58, 99, 0.9);
  text-align: center;
  padding: 50px 80px;
}

.tag-one {
  font-size: 55px;
  font-weight: bold;
  line-height: 60px;
  color: #fff;
  font-family: var(--heading-font-family);
}

.tag-two {
  font-family: var(--heading-font-family);
  font-size: 32px;
  color: #fff;
  line-height: 40px;
  margin-bottom: 25px;
}

.home-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0 25px 0;
}

.home-slider-single-tagline button:hover,
.home-slider-single-tagline button:focus,
.home-slider-single-tagline .button:hover,
.home-slider-single-tagline .button:focus {
  color: #6dbe5a;
  background-color: #fff;
  text-decoration: none;
}

.home-hero .slick-dots li.slick-active button .slick-dot-icon {
  color: #6dbe5a;
  opacity: 1;
}
.home-hero .slick-dots li button .slick-dot-icon {
  color: #fff;
  opacity: 1;
}
.home-hero .slick-dots li.slick-active button:focus .slick-dot-icon {
  color: #6dbe5a;
  opacity: 1;
}
.home-hero .slick-dots li.slick-active button:focus .slick-dot-icon {
  color: #6dbe5a;
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .home-hero,
  .home-slider,
  .home-slider-single {
    height: 70vh;
    min-height: 670px;
    width: 100%;
  }

  .home-slider-single.book-slide {
    background-position-x: left;
  }

  .home-hero-form-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  .home-hero-form .contact-form-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .home-hero-form form button {
    width: 100%;
  }

  .home-hero-form {
    margin-top: 80px;
    min-width: 375px;
    padding: 0;
    background: #e9f5f7;
  }
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
  .home-hero-form {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
  }

  .home-hero-form .contact-form-heading {
    display: none;
  }
}

/* HOME HERO AND/OR SLIDER */
.home-hero-height-sync {
  height: 400px;
}

.home-hero,
.home-hero-inner {
  position: relative;
}

.home-hero-image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.home-hero-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: 50%;
}

.home-hero-form-container {
  display: none;
}

.home-hero-form-row {
  display: flex;
  justify-content: flex-end;
}

@media screen and (min-width: 1025px) {
  .home-hero-inner {
    display: block;
  }

  .home-hero-height-sync {
    height: 750px;
  }

  .home-hero-form-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block !important;
  }

  .home-hero-form-container,
  .home-hero-form-inner,
  .home-hero-form-container .row,
  .home-hero-form-container .columns {
    height: 100%;
  }

  .home-hero-form-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .home-hero-form .contact-form-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .home-hero-form form button {
    width: 100%;
  }

  .home-hero-form {
    margin-top: 80px;
    min-width: 375px;
    padding: 0;
    background: #e9f5f7;
  }
}

@media screen and (max-height: 700px) and (min-width: 1025px) {
  .home-hero-form {
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 30px;
  }

  .home-hero-form .contact-form-heading {
    display: none;
  }
}

/* HOME HERO AND/OR SLIDER END */

/* Header & Slider Media CSS */

@media screen and (min-width: 280px) and (max-width: 767px) {
  .header-mobile-inner {
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
  }
  .mob-header-cta {
    display: inline-block;
    width: 100%;
    background: #1b3a63;
    color: #fff;
    font-size: 15px;
    padding: 2px 0;
    margin-bottom: 4px;
  }
  .header-logo {
    padding: 5px 0 5px 6px;
    width: 60%;
  }

  .header-logo img {
    max-width: 220px;
  }
  .header-mobile-buttons {
    margin-left: 2%;
  }

  #header-mobile .header-mobile-buttons .button {
    background: transparent;
    color: #fff;
    font-weight: bold;
    border: 1px solid #1b3a63;
  }
  #header-mobile .header-mobile-buttons .button:hover,
  #header-mobile .header-mobile-buttons .button:focus {
    background: #1b3a63;
    color: #fff;
    font-weight: bold;
    border: 1px solid #1b3a63;
  }
  #header-mobile .header-mobile-buttons .button .fas.fa-phone {
    color: #1b3a63;
    font-weight: bold;
  }

  #header-mobile .header-mobile-buttons .button:hover .fas.fa-phone,
  #header-mobile .header-mobile-buttons .button:focus .fas.fa-phone {
    color: #fff !important;
    font-weight: bold;
  }
  .home-hero {
    margin-top: 109px;
  }
  .home-slider,
  .home-slider-single {
    height: 400px;
  }

  .tag-one {
    font-size: 28px;
    line-height: 34px;
  }
  .tag-two {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .single-logo img {
    max-width: 55px;
  }
  .home-slider-single-tagline {
    width: 85%;
    max-width: 840px;
    background: rgba(27, 58, 99, 0.9);
    text-align: center;
    padding: 20px 18px;
  }

  #home-slider .slick-dots li {
    margin: 0 0;
  }
  #home-slider .slick-dots li button {
    height: 15px;
    width: 15px;
  }

  #home-slider .slick-dots li.slick-active button .slick-dot-icon::before {
    font-size: 2rem;
  }
  #home-slider .slick-dots li button .slick-dot-icon::before {
    font-size: 2rem;
  }
  .home-slider-tagline-inner {
    margin-top: 0;
  }
  .home-slider-single-tagline-lower.hp-cta .button {
    padding: 12px 15px;
  }
  .module-header-b-upper-side {
    display: none;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .mob-header-cta {
    display: none;
  }
  .home-hero {
    margin-top: 80px;
  }
  .header-mobile-buttons .button.alt-01 {
    display: none;
  }

  .header-logo {
    padding: 10px 0 8px 10px;
    width: 35%;
  }
  .module-header-b-upper-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
    width: 54%;
  }
  .header-mobile-buttons {
    display: flex;
    margin-left: 1%;
    flex: 1;
    justify-content: flex-end;
    width: 10%;
    vertical-align: top;
  }
  .header-mobile-inner {
    padding-top: 10px;
  }

  .header-badge-lefft img {
    display: block;
    max-width: 60px;
  }
  .module-header-b-phone {
    font-size: 22px;
    line-height: 23px;
    font-weight: bold;
  }

  .header-cta-right {
    margin-left: 15px;
    text-align: right;
    color: #1b3a63;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
  }

  .header-cta-right.med-cta .header-cta p,
  .header-cta-right.med-cta .header-cta p a {
    font-size: 12px;
    color: #1b3a63;
    letter-spacing: 0;
    margin: 0;
    line-height: normal;
    margin-bottom: 1px;
  }

  .header-cta-right.med-cta .header-cta p a:hover,
  .header-cta-right.med-cta .header-cta p a:focus {
    font-size: 12px;
    color: #6dbe5a;
    letter-spacing: 0;
  }

  .module-header-b-phone i {
    font-size: 17px;
    font-weight: bold;
  }
  .home-slider-single-tagline {
    width: 75%;
    max-width: 450px;
    background: rgba(27, 58, 99, 0.9);
    text-align: center;
    padding: 20px 40px;
  }

  .tag-one {
    font-size: 35px;
    line-height: 36px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
  .mob-header-cta {
    display: none;
  }
  .home-hero {
    margin-top: 80px;
  }
  .header-mobile-buttons .button.alt-01 {
    display: none;
  }

  .header-logo {
    padding: 10px 0 8px 10px;
    width: 35%;
  }
  .module-header-b-upper-side {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
    width: 57%;
  }
  .header-mobile-buttons {
    display: flex;
    margin-left: 1%;
    flex: 1;
    justify-content: flex-end;
    width: 60px;
    vertical-align: top;
    align-items: center;
  }

  .header-badge-lefft img {
    display: block;
    max-width: 60px;
  }
  .module-header-b-phone {
    font-size: 24px;
    line-height: 25px;
    font-weight: bold;
  }

  .header-cta-right {
    margin-left: 25px;
    text-align: right;
    color: #1b3a63;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
  }

  .module-header-b-phone i {
    font-size: 17px;
    font-weight: bold;
  }
  .home-slider-single-tagline {
    width: 75%;
    max-width: 550px;
    background: rgba(27, 58, 99, 0.9);
    text-align: center;
    padding: 50px 40px;
  }

  .tag-one {
    font-size: 45px;
    line-height: 45px;
  }
  .tag-two {
    font-family: var(--heading-font-family);
    font-size: 35px;
    color: #fff;
    line-height: 53px;
    margin-bottom: 25px;
  }
  .home-logo .single-logo img {
    max-width: 80px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .main-navigation-menu > li > a {
    font-size: 12px;
    padding: 20px 5px;
  }

  #mega-menu li a,
  #desktop-navigation .sub-menu li a {
    font-size: 14px;
  }
}

@media screen and (min-width: 1900px) and (max-width: 12000px) {
  .header-desktop .row {
    max-width: 1360px;
  }
  .header-logo img {
    max-width: 350px;
    width: 100%;
  }

  .module-header-b-phone {
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
  }

  .home-hero,
  .home-slider,
  .home-slider-single {
    height: 70vh;
    min-height: 710px;
    width: 100%;
  }

  .home-hero {
    margin-top: 188px;
  }
  .tag-one {
    font-size: 68px;
    line-height: 66px;
    margin-bottom: 8px;
  }
  .tag-two {
    font-size: 42px;
  }

  .module-header-b .columns.no-float {
    padding: 0;
  }
  .row,
  .row-wide,
  .row-narrow {
    max-width: 1360px;
    margin-right: auto;
    margin-left: auto;
  }

  .home .module-intro-content {
    max-width: 1280px !important;
    margin: 0 auto;
  }
}

@media screen and (min-width: 2560px) and (max-width: 12000px) {
  .home-hero,
  .home-slider,
  .home-slider-single {
    height: 100vh;
    min-height: 710px;
    width: 100%;
  }
}

/* Header & Slider Media CSS */

.header-book-banner {
  background: #6dbe5a;
  padding: 10px;
}

.header-book-banner .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 15px 40px;
  gap: 15px 40px;
}

.header-book-banner h2 {
  color: #fff;
  font-family: Lora;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0;
  flex: 1;
}

.header-book-banner h2 strong {
  font-weight: 700;
}

.header-book-banner .button {
  display: inline-flex;
  padding: 11px 14px 11px 13px;
  justify-content: center;
  align-items: center;
  background: #1b3a63;
  font-family: 'Oxygen', sans-serif;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22.4px;
  text-transform: uppercase;
}

.header-book-banner.mobile {
  display: block;
}

.header-book-banner.mobile .inner {
  flex-direction: row;
}

@media screen and (min-width: 768px) {
  .header-book-banner h2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1025px) {
  .header-book-banner h2 {
    font-size: 20px;
  }

  .header-book-banner .inner {
    flex-direction: row;
  }
}

@media screen and (min-width: 1281px) {
  .header-book-banner h2 {
    font-size: 27px;
  }
}

@media screen and (min-width: 1921px) {
  .header-book-banner h2 {
    font-size: 30px;
  }
}
