@charset "UTF-8";
@media (min-width: 1200px) {
  .container {
    max-width: 1285px;
  }
}
:root {
  --app-height: 100%;
}

html {
  scroll-behavior: smooth;
}
html.js-menu-showing {
  overflow: hidden;
  height: 100%;
}

a {
  text-decoration: none;
}

html, body {
  overflow-x: hidden;
}

.vc_column-inner {
  padding-top: 0 !important;
}

.vc_row {
  clear: both;
}

body {
  padding-top: 200px;
  font-family: var(--base-font-name), sans-serif;
  background-color: var(--main-bg-color);
  position: relative;
  color: var(--main-bg-text-color);
}
body.js-menu-showing:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  top: 0;
  left: 0;
}

.video_player_img {
  display: inline-block;
  position: relative;
}
.video_player_img::after {
  content: url("../static/img/play-icon.svg");
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72px;
  height: 72px;
}

.mw-800 {
  max-width: 800px;
}

.mw-700 {
  max-width: 700px;
}

.svg-styled-list {
  padding: 0;
  list-style-type: none;
  font-family: var(--secondary-font-name);
}
.svg-styled-list li {
  margin-bottom: 10px;
  text-decoration: none !important;
  position: relative;
  padding-left: 35px;
}
.svg-styled-list li span {
  margin: 0 !important;
}
.svg-styled-list li:last-child {
  margin-bottom: 0;
}
.svg-styled-list li svg {
  position: absolute;
  color: var(--button-2-text-color);
  top: 5px;
  left: 0;
}

.svg-styled-list-2 {
  padding: 0;
  list-style-type: none;
}
.svg-styled-list-2 li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none !important;
  font-weight: 500;
}
.svg-styled-list-2 li:last-child {
  margin-bottom: 0;
}
.svg-styled-list-2 li::before {
  content: url("../static/img/check_icon.svg");
  margin-right: 15px;
  width: 30px;
  height: 31px;
}

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

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

.largeform .iti,
.fullwidth_form .iti,
.enrolform .iti {
  width: 100%;
  margin-bottom: 15px;
}

.fullwidth_form .iti {
  margin-bottom: 0;
}

span.wcipi-label.valid-msg, span.wcipi-label.error-msg {
  width: auto;
}

.secondary-color {
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  div[class*=vc_custom_] {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
  }
}
.button {
  border-radius: 50px;
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  border: 2px solid var(--button-1-border-color);
  background-color: var(--button-1-bg-color);
  color: var(--button-1-text-color);
  min-width: 225px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}
.button:hover, .button:focus {
  background-color: var(--button-1-bg-hover-color);
  border-color: var(--button-1-border-hover-color);
  color: var(--button-1-text-hover-color);
  text-decoration: none;
}
.button--secondary {
  border: 2px solid var(--button-2-border-color);
  background-color: var(--button-2-bg-color);
  color: var(--button-2-text-color);
}
.button--secondary:hover, .button--secondary:focus {
  background-color: var(--button-2-bg-hover-color);
  border-color: var(--button-2-border-hover-color);
  color: var(--button-2-text-hover-color);
  text-decoration: none;
}
.button--secondary.white {
  color: white;
  border-color: white;
}
.button--third {
  border: 2px solid var(--button-3-border-color);
  background-color: var(--button-3-bg-color);
  color: var(--button-3-text-color);
}
.button--third:hover, .button--third:focus {
  background-color: var(--button-3-bg-color);
  color: var(--button-3-text-color);
  border-color: var(--button-3-border-color);
}

.primary-menu {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .primary-menu {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.primary-menu__toggle {
  display: none;
  width: 37px;
  height: 30px;
  padding-top: 5px;
  position: absolute;
  right: 0;
  margin: auto 0;
  z-index: 15;
}
.primary-menu__toggle::before {
  content: "Menu";
  position: absolute;
  left: -55px;
  top: 4px;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 991px) {
  .primary-menu__toggle {
    display: block;
  }
}
header.header--transparent .primary-menu__toggle {
  display: block;
}
@media (min-width: 992px) {
  body.scrolled-down .primary-menu__toggle {
    display: none;
  }
}
body.js-menu-showing .primary-menu__toggle::before {
  color: var(--secondary-color);
  content: "Close";
}
.primary-menu__toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  display: block;
  margin-top: 5px;
}
.primary-menu__toggle span:first-child {
  margin-top: 0;
}
body.js-menu-showing .primary-menu__toggle span {
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 40px;
  background-color: var(--secondary-color);
}
body.js-menu-showing .primary-menu__toggle span::before {
  color: var(--secondary-color);
}
body.js-menu-showing .primary-menu__toggle span:first-child {
  transform: rotate(40deg);
}
body.js-menu-showing .primary-menu__toggle span:nth-child(2) {
  transform: rotate(140deg);
}
body.js-menu-showing .primary-menu__toggle span:last-child {
  display: none;
}
.primary-menu__mobilecta.button {
  display: none;
  color: var(--button-1-text-color);
}
@media (max-width: 991px) {
  .primary-menu__mobilecta.button {
    display: block;
    min-width: auto;
  }
}
@media (max-width: 575px) {
  .primary-menu__mobilecta.button {
    padding: 10px 13px;
  }
}
.primary-menu__brand {
  display: block;
  margin-right: 74px;
  z-index: 1;
  background-color: var(--primary-menu-color);
}
@media (max-width: 991px) {
  .primary-menu__brand {
    margin-right: 0;
    max-width: 100px;
  }
}
@media (max-width: 575px) {
  .primary-menu__brand {
    margin-right: 0;
    max-width: 58px;
  }
}
@media (min-width: 992px) {
  body.scrolled-down .primary-menu__brand, body.js-menu-showing .primary-menu__brand, .header:not(.header--transparent) .primary-menu__brand {
    padding-bottom: 10px;
  }
}
.primary-menu__brand img {
  width: 100%;
  height: auto;
}
.primary-menu__items {
  display: none;
  padding: 0;
  list-style-type: none;
  margin: 0;
  width: 100%;
  align-items: stretch;
  justify-content: right;
  flex-wrap: wrap;
}
body.js-menu-showing .primary-menu__items {
  padding: 0 15px;
}
@media (max-width: 991px) {
  .primary-menu__items {
    background-color: white;
    padding: 20px;
    display: none;
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  body.scrolled-down .primary-menu__items {
    display: flex;
  }
}
.header:not(.header--transparent) .primary-menu__items {
  display: flex;
}
@media (max-width: 991px) {
  .header:not(.header--transparent) .primary-menu__items {
    display: none;
  }
}
body.js-menu-showing .header:not(.header--transparent) .primary-menu__items {
  display: flex;
}
body.js-menu-showing .primary-menu__items {
  display: flex;
  position: absolute;
  z-index: 15;
  width: 100%;
  background-color: white;
  left: 0;
  top: 100%;
  padding-top: 87px;
  padding-bottom: 87px;
}
@media (max-height: 850px) {
  body.js-menu-showing .primary-menu__items {
    max-height: 500px;
    overflow-y: scroll;
  }
  body.js-menu-showing .primary-menu__items::-webkit-scrollbar {
    width: 5px;
  }
  body.js-menu-showing .primary-menu__items::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu__items {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
body.js-menu-showing .primary-menu__items.primary {
  display: none !important;
}
body.scrolled-down .primary-menu__items.full, header.header:not(.header--transparent) .primary-menu__items.full {
  display: none;
}
body.scrolled-down.js-menu-showing .primary-menu__items.full, body.js-menu-showing header.header:not(.header--transparent) .primary-menu__items.full {
  display: flex;
}
.primary-menu__submenu {
  display: none;
  min-width: 450px;
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 100%;
  left: -130px;
  background-color: white;
  padding: 30px 55px;
  z-index: 2;
}
.primary-menu__submenu li {
  padding: 15px 0;
}
.primary-menu__submenu li a {
  font-size: 20px;
  text-transform: initial;
}
@media (max-width: 991px) {
  .primary-menu__submenu {
    display: none !important;
  }
}
.primary-menu__item {
  position: relative;
  display: flex;
  align-items: center;
}
.primary-menu__item a.active {
  color: var(--secondary-color) !important;
}
body.js-menu-showing .primary-menu__item {
  width: 100%;
  padding: 0;
  margin-bottom: 33px;
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu__item {
    margin-bottom: 15px;
  }
}
.primary-menu__item:hover .primary-menu__submenu {
  display: block;
}
@media (max-width: 991px) {
  .primary-menu__item {
    padding: 16px 10px;
    width: 100%;
    display: list-item;
  }
}
.primary-menu__item a:not(.button) {
  color: var(--primary-menu-label-color);
  background-color: var(--primary-menu-item-color);
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  body.scrolled-down header.header.v2 .primary-menu__item a:not(.button), header.v2.header:not(.header--transparent) .primary-menu__item a:not(.button) {
    padding: 20px 30px;
    border-right: 1px solid #C7BFB4;
    max-width: 200px;
    text-align: center;
  }
  body.scrolled-down header.header.v2 .primary-menu__item a:not(.button):hover, body.scrolled-down header.header.v2 .primary-menu__item a:not(.button):focus, header.v2.header:not(.header--transparent) .primary-menu__item a:not(.button):hover, header.v2.header:not(.header--transparent) .primary-menu__item a:not(.button):focus {
    color: var(--primary-menu-hover-label-color);
    background-color: var(--primary-menu-hover-item-color);
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  body.scrolled-down header.header:not(.v2) .primary-menu__item a:not(.button), header.header:not(.header--transparent):not(.v2) .primary-menu__item a:not(.button) {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .primary-menu__item a:not(.button) {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
  }
}
body.js-menu-showing .primary-menu__item a:not(.button) {
  color: var(--secondary-color);
}
body.js-menu-showing .primary-menu__item a:not(.button):hover, body.js-menu-showing .primary-menu__item a:not(.button):focus {
  color: var(--primary-menu-hover-label-color);
  text-decoration: none;
}
body.js-menu-showing .primary-menu__item a:not(.button) {
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  position: relative;
  padding-right: 20px;
  display: inline-block;
  background-color: transparent;
}
body.js-menu-showing .primary-menu__item a:not(.button):hover {
  color: #557de9;
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu__item a:not(.button) {
    font-size: 19px;
  }
}
body.js-menu-showing .primary-menu__item a:not(.button)::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: -15px;
  bottom: 0;
  margin: auto 0;
  font-size: 40px;
}
.primary-menu__cta {
  padding-right: 0 !important;
}
.primary-menu__cta .button {
  min-width: 180px;
}
@media (max-width: 991px) {
  .primary-menu__cta .button {
    min-width: none;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .primary-menu__cta {
    width: 100%;
    margin-top: 15px;
  }
}
body.js-menu-showing .primary-menu {
  margin: -15px 0 0 0;
  background-color: var(--primary-menu-color);
  z-index: 12;
}
@media (min-width: 1200px) {
  body.js-menu-showing .primary-menu {
    margin: -15px -8px 0 -8px;
  }
}
body.js-menu-showing .primary-menu .primary-menu__toggle {
  margin-left: 15px;
  margin-top: 15px;
}
body.js-menu-showing .primary-menu .primary-menu__brand {
  margin-top: 15px;
}
body.js-menu-showing .primary-menu .primary-menu__mobilecta {
  margin-right: 15px;
  margin-top: 15px;
}

.primary-menu_3 {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 991px) {
  .primary-menu_3 {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.primary-menu_3__toggle {
  display: none;
  width: 45px;
  height: 30px;
  padding-top: 5px;
  position: absolute;
  right: 0;
  margin: auto 0;
  z-index: 15;
}
.primary-menu_3__toggle::before {
  content: "MENU";
  position: absolute;
  left: -65px;
  top: 2px;
  color: white;
  font-weight: 200;
}
@media (max-width: 991px) {
  body.scrolled-down .primary-menu_3__toggle::before, header:not(.header_3--transparent) .primary-menu_3__toggle::before {
    color: white;
  }
}
@media (max-width: 991px) {
  .primary-menu_3__toggle {
    display: block;
  }
}
header.header_3--transparent .primary-menu_3__toggle {
  display: block;
}
@media (min-width: 992px) {
  body.scrolled-down .primary-menu_3__toggle {
    display: none;
  }
}
body.js-menu-showing .primary-menu_3__toggle::before {
  color: var(--secondary-color);
  content: "Close";
}
.primary-menu_3__toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  display: block;
  margin-top: 5px;
}
header.header_3--transparent .primary-menu_3__toggle span {
  background-color: white;
}
@media (max-width: 991px) {
  body.scrolled-down .primary-menu_3__toggle span, header:not(.header_3--transparent) .primary-menu_3__toggle span {
    background-color: white;
  }
}
.primary-menu_3__toggle span:first-child {
  margin-top: 0;
}
body.js-menu-showing .primary-menu_3__toggle span {
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 40px;
  background-color: var(--secondary-color);
}
body.js-menu-showing .primary-menu_3__toggle span::before {
  color: var(--secondary-color);
}
body.js-menu-showing .primary-menu_3__toggle span:first-child {
  transform: rotate(40deg);
}
body.js-menu-showing .primary-menu_3__toggle span:nth-child(2) {
  transform: rotate(140deg);
}
body.js-menu-showing .primary-menu_3__toggle span:last-child {
  display: none;
}
.primary-menu_3__mobilecta.button {
  display: none;
  color: var(--button-1-text-color);
}
@media (max-width: 991px) {
  .primary-menu_3__mobilecta.button {
    display: block;
    min-width: auto;
  }
}
@media (max-width: 575px) {
  .primary-menu_3__mobilecta.button {
    padding: 10px 13px;
  }
}
.primary-menu_3__brand_badge {
  display: none;
  background: white;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
  padding: 18px 7px;
  position: absolute;
  top: -44px;
  left: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  body:not(.scrolled-down):not(js-menu-showing) .header_3:not(.header_3--transparent) .primary-menu_3__brand_badge {
    display: block;
  }
}
.primary-menu_3__brand {
  z-index: 1;
  display: block;
  padding: 13px 2px;
  margin-right: 74px;
  background-color: var(--primary-menu-color);
}
@media (min-width: 992px) {
  body:not(.scrolled-down):not(js-menu-showing) .header_3:not(.header_3--transparent) .primary-menu_3__brand {
    display: none;
  }
}
@media (max-width: 991px) {
  .primary-menu_3__brand {
    margin-right: 0;
    max-width: 100px;
  }
}
@media (max-width: 575px) {
  .primary-menu_3__brand {
    margin-right: 0;
    max-width: 58px;
  }
}
.primary-menu_3__brand img {
  width: 100%;
  height: auto;
}
.primary-menu_3__items {
  display: none;
  padding: 0;
  list-style-type: none;
  margin: 0;
  width: 100%;
  align-items: stretch;
  justify-content: right;
  flex-wrap: wrap;
}
body.js-menu-showing .primary-menu_3__items {
  padding: 0 15px;
}
@media (max-width: 991px) {
  .primary-menu_3__items {
    background-color: white;
    padding: 20px;
    display: none;
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  body.scrolled-down .primary-menu_3__items {
    display: flex;
  }
}
.header_3:not(.header_3--transparent) .primary-menu_3__items {
  display: flex;
}
@media (max-width: 991px) {
  .header_3:not(.header_3--transparent) .primary-menu_3__items {
    display: none;
  }
}
body.js-menu-showing .header_3:not(.header_3--transparent) .primary-menu_3__items {
  display: flex;
}
body.js-menu-showing .primary-menu_3__items {
  display: flex;
}
body.js-menu-showing .primary-menu_3__items {
  position: absolute;
  z-index: 15;
  width: 100%;
  background-color: #335233;
  left: 0;
  top: 100%;
  padding-top: 87px;
  padding-bottom: 87px;
}
@media (max-height: 850px) {
  body.js-menu-showing .primary-menu_3__items {
    max-height: 500px;
    overflow-y: scroll;
  }
  body.js-menu-showing .primary-menu_3__items::-webkit-scrollbar {
    width: 5px;
  }
  body.js-menu-showing .primary-menu_3__items::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu_3__items {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
body.js-menu-showing .primary-menu_3__items.primary {
  display: none !important;
}
body.scrolled-down .primary-menu_3__items.full, header.header_3:not(.header_3--transparent) .primary-menu_3__items.full {
  display: none;
}
body.scrolled-down.js-menu-showing .primary-menu_3__items.full, body.js-menu-showing header.header_3:not(.header_3--transparent) .primary-menu_3__items.full {
  display: flex;
}
.primary-menu_3__submenu {
  display: none;
  min-width: 450px;
  list-style-type: none;
  padding: 0;
  position: absolute;
  top: 100%;
  left: -130px;
  background-color: white;
  padding: 30px 55px;
  z-index: 2;
}
.primary-menu_3__submenu li {
  padding: 15px 0;
}
.primary-menu_3__submenu li a {
  font-size: 20px;
  text-transform: initial;
}
@media (max-width: 991px) {
  .primary-menu_3__submenu {
    display: none !important;
  }
}
.primary-menu_3__item {
  position: relative;
  display: flex;
  align-items: center;
}
body.js-menu-showing .primary-menu_3__item {
  width: 100%;
  padding: 0;
  margin-bottom: 33px;
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu_3__item {
    margin-bottom: 15px;
  }
}
.primary-menu_3__item:hover .primary-menu_3__submenu {
  display: block;
}
@media (max-width: 991px) {
  .primary-menu_3__item {
    padding: 16px 10px;
    width: 100%;
    display: list-item;
  }
}
.primary-menu_3__item a:not(.button) {
  color: var(--primary-menu-label-color);
  background-color: var(--primary-menu-item-color);
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  body.scrolled-down header.header_3.v2 .primary-menu_3__item a:not(.button), header.v2.header_3:not(.header_3--transparent) .primary-menu_3__item a:not(.button) {
    padding: 20px 30px;
    border-right: 1px solid #C7BFB4;
    max-width: 200px;
    text-align: center;
    min-height: 85px;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  body.scrolled-down header.header_3.v2 .primary-menu_3__item a:not(.button):hover, body.scrolled-down header.header_3.v2 .primary-menu_3__item a:not(.button):focus, header.v2.header_3:not(.header_3--transparent) .primary-menu_3__item a:not(.button):hover, header.v2.header_3:not(.header_3--transparent) .primary-menu_3__item a:not(.button):focus {
    color: var(--primary-menu-hover-label-color);
    background-color: var(--primary-menu-hover-item-color);
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  body.scrolled-down header.header_3:not(.v2) .primary-menu_3__item a:not(.button), header.header_3:not(.header_3--transparent):not(.v2) .primary-menu_3__item a:not(.button) {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .primary-menu_3__item a:not(.button) {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
  }
}
body.js-menu-showing .primary-menu_3__item a:not(.button) {
  color: var(--secondary-label-color);
}
body.js-menu-showing .primary-menu_3__item a:not(.button):hover, body.js-menu-showing .primary-menu_3__item a:not(.button):focus {
  color: var(--primary-menu-hover-label-color);
  text-decoration: none;
}
body.js-menu-showing .primary-menu_3__item a:not(.button) {
  font-size: 24px;
  font-weight: 300;
  width: 100%;
  position: relative;
  padding-right: 20px;
  display: inline-block;
  background-color: transparent;
}
body.js-menu-showing .primary-menu_3__item a:not(.button):hover {
  color: white;
}
@media (max-width: 991px) {
  body.js-menu-showing .primary-menu_3__item a:not(.button) {
    font-size: 19px;
  }
}
body.js-menu-showing .primary-menu_3__item a:not(.button)::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: -15px;
  bottom: 0;
  margin: auto 0;
  font-size: 40px;
}
.primary-menu_3__cta {
  padding-right: 0 !important;
}
.primary-menu_3__cta .button {
  min-width: 180px;
}
@media (max-width: 991px) {
  .primary-menu_3__cta .button {
    min-width: none;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .primary-menu_3__cta {
    width: 100%;
    margin-top: 15px;
  }
}
body.js-menu-showing .primary-menu_3 {
  margin: -15px 0 0 0;
  background-color: var(--primary-menu-color);
  z-index: 12;
}
@media (min-width: 1200px) {
  body.js-menu-showing .primary-menu_3 {
    margin: -15px -8px 0 -8px;
  }
}
body.js-menu-showing .primary-menu_3 .primary-menu_3__toggle {
  margin-left: 15px;
  margin-top: 15px;
}
body.js-menu-showing .primary-menu_3 .primary-menu_3__brand {
  margin-top: 15px;
}
body.js-menu-showing .primary-menu_3 .primary-menu_3__mobilecta {
  margin-right: 15px;
  margin-top: 15px;
}

.largeform {
  margin: 20px 0;
  background-color: white;
  padding: 25px 54px 45px 48px;
}
@media (max-width: 767px) {
  .largeform {
    padding: 50px 20px;
  }
}
.largeform__top_msg {
  font-weight: 500;
  font-size: 16px;
  color: white;
  background-color: var(--secondary-color);
}
.largeform__title {
  font-size: 26px;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 767px) {
  .largeform__title {
    font-size: 30px;
  }
}
.largeform__row {
  display: flex;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .largeform__row {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .largeform__row > * {
    width: 100%;
    margin-right: 0;
  }
}
.largeform__input {
  border: 1px solid #D9D9D9;
  width: 380px;
  margin-right: 22px;
  padding: 13px 20px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .largeform__input {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.largeform__input:last-child {
  margin-right: 0;
}
.largeform select.largeform__input {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("../static/img/down-arrow.svg");
  background-size: 39px 25px;
  background-repeat: no-repeat;
  background-position: 95%;
}
.largeform__cta {
  margin-top: 5px;
}

.welcome_v1 {
  background-color: #f6b4b4;
  background-size: cover;
  background-position: center;
  padding: 280px 0 250px 0;
  color: white;
}
@media (max-width: 767px) {
  .welcome_v1 {
    background-image: none !important;
  }
}
.welcome_v1 .mobile-hero {
  margin: 0 -15px;
}
.welcome_v1 .mobile-hero img {
  width: 100%;
}
@media (max-width: 767px) {
  .welcome_v1__left .button {
    width: 100%;
    margin-right: 0 !important;
  }
}
@media (min-height: 800px) {
  .welcome_v1 {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .welcome_v1 {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    height: auto;
  }
  .welcome_v1 > .container {
    margin-top: 130px;
  }
}
.welcome_v1__cta {
  min-width: 260px;
}
.welcome_v1__heading {
  max-width: 635px;
}
.welcome_v1__title1 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: black;
}
@media (max-width: 767px) {
  .welcome_v1__title1 {
    font-size: 15px;
  }
}
.welcome_v1__title2 {
  font-weight: 700;
  font-size: 80px;
  color: var(--secondary-color);
  line-height: 80px;
}
@media (max-width: 767px) {
  .welcome_v1__title2 {
    font-size: 28px;
    line-height: normal;
    margin-bottom: 0.5rem;
  }
}
.welcome_v1__title3 {
  max-width: 500px;
  color: black;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 5px;
  font-family: var(--secondary-font-name);
}
.welcome_v1__title3 small {
  font-family: var(--base-font-name);
  padding-top: 20px;
  font-size: 16px;
  display: block;
  font-weight: 100;
}

.welcome_v2 {
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  margin-top: -200px;
  color: white;
}
.welcome_v2__wrap {
  padding: 90px 0 56px 0;
}
@media (max-width: 767px) {
  .welcome_v2__wrap {
    padding-top: 0;
  }
}
.welcome_v2__title1 {
  font-weight: 700;
  font-size: 60px;
  margin: 70px 0 40px 0;
  color: var(--secondary-color);
  display: inline-block;
}
.welcome_v2--blog .welcome_v2__title1 {
  font-size: 30px !important;
  margin: 20px 0 !important;
}
@media (max-width: 767px) {
  .welcome_v2__title1 {
    font-size: 30px;
    margin: 20px 0;
  }
}

.welcome_v3 {
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  padding: 280px 0 250px 0;
  color: white;
}
@media (max-width: 767px) {
  .welcome_v3__left {
    padding-bottom: 20px;
  }
}
@media (min-height: 800px) {
  .welcome_v3 {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .welcome_v3 {
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    height: var(--app-height);
  }
  .welcome_v3 > .container {
    margin-top: auto;
  }
}
.welcome_v3__cta {
  min-width: 260px;
}
.welcome_v3__heading {
  max-width: 600px;
}
.welcome_v3__title1 {
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .welcome_v3__title1 {
    font-size: 16px;
  }
}
.welcome_v3__title2 {
  font-weight: 400;
  font-size: 80px;
  margin-bottom: 30px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .welcome_v3__title2 {
    font-size: 50px;
  }
}
.welcome_v3__title3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  font-family: var(--secondary-font-name);
}
.welcome_v3__title3 small {
  font-family: var(--base-font-name);
  padding-top: 20px;
  font-size: 14px;
  display: block;
  font-weight: 100;
}

.approach {
  padding: 50px 0;
  background-color: white;
}
.approach__title {
  margin-bottom: 31px;
  font-weight: 400;
  font-size: 48px;
}
@media (max-width: 767px) {
  .approach__title {
    font-size: 35px;
  }
}
.approach__top_title {
  margin-bottom: 18px;
  color: var(--secondary-color);
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 28px;
}
.approach__subtitle {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
}
.approach__text {
  margin-bottom: 54px;
  font-weight: 400;
  font-size: 16px;
}
.approach__wrapper {
  max-width: 870px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  body.js-menu-showing .header > .container {
    background-color: var(--primary-menu-color);
    padding-bottom: 15px;
  }
}
.header {
  background-color: var(--primary-menu-color);
  color: var(--primary-menu-label-color);
}
@media (max-width: 991px) {
  .header {
    position: relative;
    z-index: 999;
  }
}
@media (max-width: 991px) {
  .header {
    padding: 14px 0;
    background-color: var(--secondary-color);
  }
}
@media (max-width: 991px) {
  body.js-menu-showing .header {
    background-color: white;
    height: 100vh;
  }
}
.header--transparent {
  position: absolute;
  width: 100%;
  top: 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .header--transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}
body.scrolled-down .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  body.scrolled-down .header {
    background-color: var(--primary-menu-color);
  }
}
@media (max-width: 991px) {
  body.scrolled-down .header {
    background-color: var(--primary-color);
  }
}
body.js-menu-showing .header {
  background-color: var(--primary-menu-color);
  z-index: 12;
}
@media (max-width: 991px) {
  body.js-menu-showing .header {
    background-color: white;
    overflow-y: scroll;
  }
}

.header_3 {
  background-color: var(--primary-menu-color);
  color: var(--primary-menu-label-color);
}
@media (max-width: 991px) {
  .header_3 {
    position: relative;
    z-index: 999;
  }
}
@media (max-width: 991px) {
  .header_3 {
    padding: 14px 0;
    background-color: var(--secondary-color);
  }
}
@media (max-width: 991px) {
  body.js-menu-showing .header_3 {
    background-color: white;
    height: 100vh;
  }
}
.header_3--transparent {
  position: absolute;
  width: 100%;
  top: 0;
  background-color: transparent;
}
@media (max-width: 991px) {
  .header_3--transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}
body.scrolled-down .header_3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  body.scrolled-down .header_3 {
    background-color: var(--primary-menu-color);
  }
}
@media (max-width: 991px) {
  body.scrolled-down .header_3 {
    background-color: var(--secondary-color);
  }
}
body.js-menu-showing .header_3 {
  background-color: var(--primary-menu-color);
  z-index: 12;
}
@media (max-width: 991px) {
  body.js-menu-showing .header_3 {
    overflow-y: scroll;
  }
}

.top-message {
  background-color: var(--secondary-color);
  padding: 17px 0;
  text-align: center;
  font-size: 16px;
  color: var(--secondary-label-color);
}
.top-message strong, .top-message a {
  color: var(--secondary-label-color);
  text-decoration: none;
}

.environments {
  background-color: var(--secondary-color);
  color: var(--secondary-label-color);
  position: relative;
  min-height: calc(300px * 3);
}
.environments__top_title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 28px;
}
.environments__title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .environments__title {
    font-size: 35px;
  }
}
.environments__caption {
  font-size: 22px;
  margin-bottom: 15px;
}
.environments__text {
  font-size: 16px;
  margin-bottom: 45px;
  font-weight: 300;
}
@media (max-width: 767px) {
  .environments__text {
    max-width: none;
  }
}
.environments__left {
  padding-top: 100px;
  padding-bottom: 100px;
  width: 50%;
}
@media (max-width: 767px) {
  .environments__left {
    width: 100%;
    padding-top: 100px;
  }
}
.environments__right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 47%;
}
@media (max-width: 767px) {
  .environments__right {
    width: 100%;
    position: relative;
  }
}
.environments__slides {
  display: flex;
  flex-wrap: wrap;
}
.environments__slide {
  width: 50%;
  height: 300px;
  overflow: hidden;
  position: relative;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .environments__slide {
    height: 150px;
  }
}
.environments__slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.environments__slide:hover:after {
  content: "View Gallery →";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(70, 70, 70, 0.7411764706);
  top: 0;
  left: 0;
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.environments__slides--col3 .environments__slide {
  width: 33.333%;
}

@media (max-width: 767px) {
  .environments__slides--col3 .environments__slide {
    width: 50%;
    height: 150px;
  }
}
.footer {
  padding: 52px 0 58px 0;
  color: var(--footer-label-color);
  background-color: var(--footer-color);
}
.footer__bottom-nav {
  margin-bottom: 50px;
}
.footer__bottom-nav nav, .footer__bottom-nav ul {
  padding: 0;
  list-style-type: none;
}
.footer__bottom-nav nav li, .footer__bottom-nav ul li {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .footer__bottom-nav nav li, .footer__bottom-nav ul li {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-bottom: 15px;
  }
}
.footer__bottom-nav nav li:last-child, .footer__bottom-nav ul li:last-child {
  margin-right: 0;
}
.footer__bottom-nav nav li a, .footer__bottom-nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--footer-label-color);
}
.footer__logos {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__logos > a {
    margin-right: 0 !important;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}
.footer__copy {
  font-size: 14px;
  text-align: center;
  display: block;
}

.footer-bottom {
  background: #2d2c28;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.footer-bottom span {
  color: white;
  padding-right: 10px;
  font-size: 13px;
}
@media (max-width: 575px) {
  .footer-bottom span {
    padding-right: 0;
    padding-bottom: 10px;
    flex: 100%;
  }
}

.footer-whatsapp {
  width: 100%;
  height: auto;
}

.hero2 {
  color: black;
}
.hero2__top_title {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 20px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .hero2__img {
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .hero2__img img {
    max-width: 100%;
    height: auto;
  }
}
.hero2__left {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .hero2__left {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.hero2__title {
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .hero2__title {
    font-size: 35px;
  }
}
.hero2__description {
  font-size: 16px;
  margin-bottom: 42px;
}
.hero2__tick-items {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 42px;
}
.hero2__tick-items li {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  font-family: var(--secondary-font-name);
}
.hero2__tick-items li svg {
  color: var(--secondary-color);
}

.large_img_section__heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
.large_img_section__title {
  font-weight: 700;
  font-size: 50px;
  font-family: var(--secondary-font-name);
  margin-bottom: 24px;
  color: var(--secondary-color);
}
@media (max-width: 767px) {
  .large_img_section__title {
    font-size: 35px;
  }
}
.large_img_section__top_title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 28px;
  color: var(--secondary-color);
}
.large_img_section__text {
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto;
}
.large_img_section img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.fullgallery__heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.fullgallery__title {
  font-weight: 400;
  font-size: 48px;
  font-family: var(--secondary-font-name);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .fullgallery__title {
    font-size: 35px;
  }
}
.fullgallery__text {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 40px;
}
.fullgallery__imgs {
  display: flex;
  flex-wrap: wrap;
}
.fullgallery__imgs a {
  display: block;
  flex: 1 0 21%;
}
@media (max-width: 767px) {
  .fullgallery__imgs a {
    flex: 1 0 41%;
  }
}
.fullgallery__imgs a img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .fullgallery__imgs a img {
    height: 250px;
  }
}

.infotabs {
  padding: 40px 0;
}
.infotabs__title {
  margin-bottom: 25px;
  font-size: 48px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .infotabs__title {
    font-size: 35px;
  }
}
.infotabs__text {
  margin-bottom: 35px;
  font-size: 16px;
}
.infotabs__heading {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.infotab {
  padding: 35px 70px 35px 40px;
  text-align: left;
  outline: none !important;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--secondary-label-color);
  margin-top: 15px;
  border: 0;
}
@media (max-width: 767px) {
  .infotab {
    padding: 20px 40px;
  }
}
.infotab:not(.collapsed) .infotab__title .down-icon {
  top: -10px;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .infotab:not(.collapsed) .infotab__title .down-icon {
    right: -30px;
  }
}
.infotab__title {
  font-size: 22px;
  font-family: var(--secondary-font-name);
  position: relative;
  align-items: center;
  display: flex;
}
.infotab__title:after {
  content: url("../static/img/down-arrow.svg");
  position: absolute;
  top: 5px;
  right: -50px;
}
@media (max-width: 767px) {
  .infotab__title:after {
    right: -35px;
  }
}
.infotab__body {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  border: 1px solid var(--secondary-color);
  border-top: none;
}
@media (max-width: 767px) {
  .infotab__body {
    padding: 30px;
  }
}
.infotab__body ul {
  margin-top: 10px;
}
.infotab__hr {
  width: 100%;
  margin: 40px 0 50px 0;
  background-color: var(--secondary-color);
  height: 1px;
}
.infotab__subtitle {
  font-size: 22px;
  margin-bottom: 32px;
}
.infotab__subtitle-2 {
  font-size: 16px;
  margin-top: -32px;
  margin-bottom: 28px;
}
.infotab__text {
  font-size: 16px;
}
.infotab__text p {
  margin-bottom: 26px;
}
.infotab__text a {
  color: var(--secondary-color);
}
.infotab__left {
  width: 55%;
  margin-right: 5%;
}
@media (max-width: 767px) {
  .infotab__left {
    margin-right: 0;
    width: 100%;
    margin-bottom: 50px;
  }
}
.infotab__right {
  width: 40%;
}
@media (max-width: 767px) {
  .infotab__right {
    width: 100%;
  }
}

.fullwidth_form {
  padding: 80px 0;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
}
.fullwidth_form__content {
  color: var(--primary-label-color);
}
.fullwidth_form__top_msg {
  padding: 13px 0;
  background-color: var(--primary-color);
  font-family: var(--secondary-font-name);
  color: var(--primary-label-color);
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.fullwidth_form__wrap {
  max-width: 575px;
  margin: 0 auto;
  padding: 50px 44px;
  text-align: center;
}
@media (max-width: 767px) {
  .fullwidth_form__wrap {
    padding: 50px 20px;
  }
}
.fullwidth_form__title {
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 26px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .fullwidth_form__title {
    font-size: 35px;
  }
}
.fullwidth_form__text {
  font-size: 16px;
  margin-bottom: 25px;
}
.fullwidth_form .largeform__row {
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .fullwidth_form .largeform__row {
    margin: 0 15px;
  }
}
.fullwidth_form .largeform__row > span {
  margin-bottom: 15px;
  width: 100%;
}
.fullwidth_form .largeform__row .largeform__input {
  border: 0;
  width: 100%;
}
.fullwidth_form .largeform__row select.largeform__input {
  height: 50px;
  width: 100%;
}
.fullwidth_form .largeform__cta {
  margin-top: 24px;
}

.events {
  padding: 120px 0;
  color: var(--main-bg-text-color);
}
@media (max-width: 767px) {
  .events {
    padding: 80px 0;
  }
}
.events__item_tick_list {
  list-style-type: none;
  padding-left: 0;
}
.events__item_tick_list li {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  font-family: var(--secondary-font-name);
}
.events__item_tick_list li svg {
  color: var(--secondary-color);
}
.events__item_title {
  margin-bottom: 22px;
  font-size: 36px;
  font-family: var(--secondary-font-name);
}
.events__item_subtitle {
  font-size: 20px;
  margin-bottom: 22px;
  font-family: var(--secondary-font-name);
  margin-bottom: 12px;
  color: var(--secondary-color);
}
.events__item_text {
  margin-bottom: 22px;
}
.events__item_text ul {
  padding-left: 1em;
}
.events__item_img {
  margin-bottom: 36px;
}
.events__item_img img {
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.events__heading {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 45px;
  text-align: center;
}
.events__top_title {
  font-weight: 400;
  font-size: 28px;
  font-family: var(--secondary-font-name);
  margin-bottom: 30px;
  color: var(--secondary-color);
}
.events__title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .events__title {
    font-size: 35px;
  }
}
.events__text {
  font-size: 16px;
}

.half_info_block {
  background-color: var(--primary-menu-color);
  padding: 200px 0 190px 0;
  position: relative;
}
@media (max-width: 767px) {
  .half_info_block {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
.half_info_block__body {
  color: white;
  width: 42%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .half_info_block__body {
    width: 100%;
  }
}
.half_info_block--reverse .half_info_block__body {
  margin-left: 0;
}
.half_info_block__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .half_info_block__image {
    width: 100%;
    position: relative;
    height: 400px;
    margin-top: 50px;
  }
}
.half_info_block--reverse .half_info_block__image {
  left: auto;
  right: 0;
}
.half_info_block__title {
  font-size: 36px;
  margin-bottom: 55px;
}
.half_info_block__text {
  font-size: 20px;
  margin-bottom: 45px;
}
.half_info_block__text small {
  font-size: 16px;
}

.ages {
  padding: 106px 0 71px 0;
}
.ages__title, .ages__subtitle {
  text-align: center;
}
.ages .collapsing {
  transition: none;
  display: none;
}
.ages__title {
  display: block;
  font-size: 48px;
  margin-bottom: 20px;
}
.ages__subtitle {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.tabs {
  background-color: var(--primary-color);
  margin: 57px 0;
}
.tabs--fullwidth {
  margin-left: -50px;
  margin-right: -50px;
  width: calc(100% + 100px);
}
@media (max-width: 767px) {
  .tabs--fullwidth {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }
}
.tabs--small {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tabs--small .tabs__item {
  padding: 20px 15px;
}
.tabs__icon {
  margin-bottom: 5px;
}
.tabs--large .tabs__icon {
  border-radius: 50%;
  margin-bottom: 24px;
}
.tabs__items {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .tabs__items {
    overflow-x: scroll;
    justify-content: unset;
  }
}
.tabs__item {
  color: black;
  text-decoration: none;
  text-align: center;
  padding: 33px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 285px;
  position: relative;
}
@media (max-width: 767px) {
  .tabs__item {
    width: 100%;
  }
}
.tabs--large .tabs__item {
  width: 350px;
}
.tabs--small .tabs__item {
  width: 230px;
  padding: 33px 15px;
}
.tabs__item[aria-expanded=true], .tabs__item:hover {
  background-color: white;
  box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.75);
  -webkit-clip-path: inset(-5px -15px 0px -15px);
          clip-path: inset(-5px -15px 0px -15px);
  color: #000;
  text-decoration: none;
}
.tabs__item[aria-expanded=true] .tabs__subtitle, .tabs__item:hover .tabs__subtitle {
  color: var(--secondary-color);
}
.tabs__item[aria-expanded=true]::after, .tabs__item:hover::after {
  content: "";
  top: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--secondary-color);
  position: absolute;
}
.tabs__title {
  display: block;
  margin: 1px 0 0px 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .tabs__title {
    font-size: 15px;
  }
}
.tabs--small .tabs__title {
  font-size: 17px;
}
@media (max-width: 767px) {
  .tabs--small .tabs__title {
    font-size: 14px;
  }
}
.tabs__subtitle {
  font-size: 20px;
  display: block;
}
@media (max-width: 767px) {
  .tabs__subtitle {
    font-size: 15px;
  }
}
.tabs--small .tabs__subtitle {
  font-size: 20px;
}
@media (max-width: 767px) {
  .tabs--small .tabs__subtitle {
    font-size: 15px;
  }
}

.infosection {
  display: flex;
  flex-wrap: wrap;
}
.infosection--reversed {
  flex-direction: row-reverse;
}
.infosection__caption {
  font-size: 22px;
  margin-bottom: 20px;
}
.infosection__top_title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--secondary-font-name);
  color: black;
}
.infosection__title {
  color: var(--secondary-color);
  font-family: var(--secondary-font-name);
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .infosection__title {
    font-size: 33px;
  }
}
.infosection__text {
  font-size: 16px;
  margin-bottom: 40px;
}
.infosection__text a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.infosection__text ul li {
  font-family: var(--secondary-font-name);
  font-size: 16px;
  margin-bottom: 10px;
}
.infosection__text ul li a {
  color: var(--secondary-color);
}
.infosection__body {
  flex: 1;
  padding-right: 60px;
}
@media (max-width: 767px) {
  .infosection__body {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 0;
    padding-left: 0;
  }
}
.infosection--reversed .infosection__body {
  padding-right: 0;
  padding-left: 60px;
}
@media (max-width: 767px) {
  .infosection--reversed .infosection__body {
    padding-right: 0;
    padding-left: 0;
  }
}
.infosection__image {
  width: 605px;
  margin-top: 10px;
}
.infosection__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.infosection__image img.img-fluid {
  width: auto;
  height: auto;
}

.locations {
  padding: 106px 0 71px 0;
}
.locations__title, .locations__subtitle {
  text-align: center;
}
.locations__title {
  display: block;
  font-size: 48px;
  margin-bottom: 20px;
}
.locations__subtitle {
  font-size: 16px;
}
.locations .collapsing {
  transition: none;
  display: none;
}

.locationtab {
  display: flex;
  flex-wrap: wrap;
}
.locationtab__info {
  width: 300px;
  margin-right: 120px;
}
@media (max-width: 767px) {
  .locationtab__info {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}
.locationtab__info.part {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}
.locationtab__body {
  flex: 1;
  padding-top: 27px;
}
.locationtab__image {
  width: 271px;
  height: 271px;
  margin-bottom: 45px;
}
.locationtab__info.part .locationtab__image {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .locationtab__image {
    margin: 0 auto 45px auto;
  }
}
.locationtab__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.locationtab__name {
  font-size: 28px;
  margin-bottom: 35px;
  font-family: var(--secondary-font-name);
}
.locationtab__contacts {
  margin-bottom: 23px;
}
.locationtab__cta {
  margin-bottom: 25px;
}
.locationtab__social {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .locationtab__social {
    justify-content: center;
  }
}
.locationtab__social span {
  font-size: 16px;
  margin-right: 12px;
}
.locationtab__social ul {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}

.small_info {
  background-color: var(--primary-menu-color);
  padding: 54px 0 50px 0;
}
.small_info__wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .small_info__wrap {
    flex-wrap: wrap;
  }
}
.small_info__subwrap {
  max-width: 700px;
}
.small_info__img {
  padding-right: 65px;
}
@media (max-width: 767px) {
  .small_info__img {
    padding-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.small_info__title {
  width: 100%;
  font-weight: 400;
  font-size: 28px;
  font-family: var(--secondary-font-name);
  margin-bottom: 10px;
}
.small_info__desc {
  font-size: 16px;
  margin-bottom: 0;
}

.short_banner {
  padding: 160px 0 190px 0;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 490px;
}
@media (max-width: 767px) {
  .short_banner {
    padding: 100px 0;
    min-height: auto;
  }
}
.short_banner__wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.short_banner__text {
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 767px) {
  .short_banner__text {
    font-size: 25px;
  }
}
.short_banner__subtitle {
  margin-top: 39px;
  font-size: 22px;
  font-weight: 300;
}

.ages_module {
  background-color: #EDE5DA;
  padding: 111px 0;
}
.ages_module__title {
  display: block;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--secondary-font-name);
  color: var(--secondary-color);
}
.ages_module__subtitle {
  font-size: 48px;
  margin-bottom: 34px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .ages_module__subtitle {
    font-size: 35px;
  }
}
.ages_module__desc {
  font-size: 16px;
}
.ages_module__heading {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.image_holder__items {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.image_holder__item {
  padding: 5px 0;
}
.image_holder__item::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background-color: #CFB0A0;
  margin: 0 7px;
}
.image_holder__item.active::after {
  background-color: #357D34;
}

.text_section_v2 {
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .text_section_v2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.text_section_v2__title {
  margin-bottom: 31px;
  font-weight: 700;
  font-size: 50px;
  color: var(--secondary-color);
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .text_section_v2__title {
    font-size: 30px;
  }
}
.text_section_v2__top_title {
  margin-bottom: 27px;
  color: black;
  font-family: var(--secondary-font-name);
  font-weight: 700;
  font-size: 20px;
}
.text_section_v2__subtitle {
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 22px;
  line-height: 140%;
}
.text_section_v2__text {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
}
.text_section_v2__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.list_section__heading {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: center;
}
.list_section__title {
  font-size: 48px;
  font-family: var(--secondary-font-name);
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .list_section__title {
    font-size: 35px;
  }
}
.list_section__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.list_section__item_title {
  font-family: var(--secondary-font-name);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 42px;
  margin: 35px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .list_section__item_title {
    font-size: 25px;
    margin: 40px 0 20px 0;
  }
}
.list_section__item_text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.location_list {
  padding: 66px 0;
  border-bottom: 1px solid #D9D9D9;
}
.location_list__heading {
  text-align: center;
  margin-bottom: 22px;
}
.location_list__item {
  text-align: center;
}
.location_list__title {
  font-family: var(--secondary-font-name);
  font-weight: 400;
  font-size: 48px;
}
.location_list__item_img {
  width: 100%;
  height: 236px;
  margin-bottom: 33px;
}
.location_list__item_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.location_list__item_title {
  font-weight: 400;
  font-size: 20px;
  font-family: var(--secondary-font-name);
  margin-bottom: 24px;
}

.blog_section {
  padding-top: 50px;
}
.blog_section__img {
  height: 235px;
  width: 100%;
  margin-bottom: 19px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.blog_section__img:hover::after {
  content: "Read Article";
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.blog_section__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.blog_section__top_title {
  font-weight: 500;
  font-size: 16px;
  font-family: var(--secondary-font-name);
  color: black;
}
.blog_section__date {
  color: #545454;
  font-size: 16px;
  font-weight: 500;
}
.blog_section__link {
  color: #223A82;
  font-size: 16px;
  font-weight: 500;
}
.blog_section__title {
  font-weight: 500;
  font-size: 24px;
  font-family: var(--secondary-font-name);
  margin-bottom: 18px;
  color: #2B2B2B;
}
.blog_section__desc {
  font-size: 16px;
}
.blog_section__item {
  color: black;
  display: block;
}
.blog_section__item, .blog_section__item * {
  text-decoration: none !important;
}
.blog_section__item:hover * {
  color: var(--secondary-color);
}

.about-author {
  padding-left: 40px;
  padding-top: 50px;
}
@media screen and (max-width: 991px) {
  .about-author {
    padding-left: 0;
    padding-top: 0;
  }
}
.about-author__avatar {
  display: inline-block;
}
.about-author__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 15px;
}
.about-author__description {
  font-size: 14px;
  font-weight: 400;
  margin-top: 14px;
}
.about-author__socials {
  display: flex;
  gap: 10px;
}
.about-author__socials a {
  text-decoration: none;
}
.about-author__share_list {
  display: flex;
  gap: 15px;
}
.about-author__share_list a {
  text-decoration: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-author__share_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.blog_subscribe_form {
  margin-top: 45px;
  margin-bottom: 50px;
}
.blog_subscribe_form__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}
.blog_subscribe_form input[type=email] {
  background: transparent;
  border: 0;
  outline: none;
  color: white;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #3B56A4;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.blog_subscribe_form input[type=submit] {
  padding: 15px;
  width: 100%;
  border: 1px solid #FFF;
  text-align: center;
  font-size: 16px;
  background: transparent;
  color: white;
  transition: all 0.2s ease-in-out;
}
.blog_subscribe_form input[type=submit]:hover {
  background: #FFF;
  color: black;
}

.blog-articles__post .column-right {
  top: 0;
  position: sticky;
}
.blog-articles__post .content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.blog_single {
  padding-bottom: 130px;
  max-width: 885px;
  margin: 0 auto;
}
.blog_single__author a {
  color: var(--secondary-color);
}
.blog_single__img {
  margin-bottom: 37px;
}
.blog_single__actions {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .blog_single__actions > *:first-child {
    margin-bottom: 10px;
  }
}
.blog_single__text img {
  max-width: 100%;
}
.blog_single__text a {
  color: var(--secondary-color);
}

.thankyou {
  background-color: black;
  color: white;
  padding: 200px 0;
  background-size: cover;
}
.thankyou__wrap {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.thankyou__title {
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 36px;
  font-family: var(--secondary-font-name);
}
@media (max-width: 767px) {
  .thankyou__title {
    font-size: 45px;
  }
}
.thankyou__body {
  font-size: 16px;
  margin-bottom: 25px;
}
.thankyou__cta {
  border-color: white;
  color: white;
}

.contact_us_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact_us_items__icon {
  color: var(--primary-color);
  height: 66px;
  margin-bottom: 16.7px;
}
.contact_us_items__icon svg {
  height: 100%;
}
.contact_us_items__link {
  max-width: 375px;
  display: block;
  margin: 0 20px;
  font-size: 20px;
  flex: 1;
  text-align: center;
  color: black;
}
.contact_us_items__link:hover {
  color: black;
}
@media (max-width: 767px) {
  .contact_us_items__link {
    flex: 100%;
    max-width: none;
    margin-bottom: 50px;
  }
}
.contact_us_items__title {
  font-weight: 500;
}

.video_section {
  padding-bottom: 130px;
}
.video_section__title {
  font-size: 24px;
  color: black;
}
.video_section__title:hover, .video_section__item:hover .video_section__title {
  color: var(--secondary-color);
  text-decoration: underline;
}
.video_section__item {
  padding: 0 25px;
}
.video_section__preview {
  position: relative;
  text-align: center;
}
.video_section__play_icon {
  color: var(--secondary-color);
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.whatsapp_badge {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.whatsapp_badge a, .whatsapp_badge a:hover, .whatsapp_badge a:focus {
  text-decoration: none;
}
.whatsapp_badge__body {
  background: linear-gradient(115.99deg, var(--secondary-color) 2.36%, var(--secondary-color) 98.01%);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 19px 0;
  color: white;
  max-width: 263px;
  position: relative;
  margin-right: 25px;
}
.whatsapp_badge__body::after {
  content: url("../static/img/whatsapp-icon-notification.svg");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
}
.whatsapp_badge__body_bottom {
  padding: 19px 24px 0 27px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.whatsapp_badge__body_top {
  padding: 0 28px 19px 28px;
  font-size: 14px;
  font-weight: 300;
  border-bottom: 1px solid black;
}

.upsell-popup {
  background-color: rgba(27, 27, 27, 0.72);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
  overflow: auto;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .upsell-right {
    margin-top: 50px;
  }
  .upsell-left {
    margin-bottom: 0 !important;
  }
}
.upsell-popup__wrap {
  margin: 0 auto;
  margin-top: 96px;
  padding: 100px;
  background-color: #f5f5f5;
  width: 100%;
  max-width: 1289px;
  display: flex;
  position: relative;
}

.upsell-left {
  margin-right: 92px;
  flex: 1;
}

.upsell-title {
  color: black;
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 32px;
  margin-top: 20px;
}

.upsell-title span {
  color: var(--secondary-color);
  display: block;
}

.upsell-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upsell-text {
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: 0.51px;
  color: black;
  margin-bottom: 39px;
}

.upsell-subtext {
  font-size: 20px;
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 40px;
}

.upsell-subtext strong {
  display: block;
  color: black;
}

.upsell-cta__wrap {
  display: inline-block;
}

.upsell-close {
  position: absolute;
  top: 40px;
  right: 35px;
  font-size: 16px;
  letter-spacing: 0.51px;
  color: black;
  line-height: 1.38;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.upsell-close:hover {
  color: black;
}

.upsell-close svg {
  margin-left: 10px;
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

.upsell-popup .upsell-title {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  .upsell-popup__wrap {
    flex-wrap: wrap;
  }
  .upsell-right, .upsell-left {
    flex: 100%;
  }
  .upsell-popup__wrap {
    padding: 40px 20px;
  }
  .upsell-left {
    margin: 0;
    margin-bottom: 50px;
  }
  .upsell-title {
    font-size: 37px;
  }
}
.top-menu {
  background-color: var(--secondary-color);
  padding: 10px 0;
  height: 44px;
}
.header_3.header_3--transparent .top-menu, body.scrolled-down .top-menu {
  display: none;
}
@media (max-width: 991px) {
  .top-menu {
    display: none;
  }
}
.top-menu__items {
  padding: 0;
  list-style-type: none;
  display: flex;
  margin: 0 -25px;
  justify-content: end;
}
.top-menu__item {
  margin: 0 25px;
}
.top-menu__item a {
  color: var(--secondary-label-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}

.split_text_image {
  padding: 72px 0;
  background-color: #EDE5DA;
}
@media (max-width: 767px) {
  .split_text_image {
    padding: 35px 0;
  }
}
.split_text_image__leftheading {
  font-size: 44px;
  font-family: var(--secondary-font-name);
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .split_text_image__leftheading {
    font-size: 31px;
  }
  .split_text_image__leftheading br {
    display: none;
  }
}
.split_text_image__leftbody {
  font-size: 18px;
  font-weight: 300;
}
.split_text_image__left {
  max-width: 598px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .split_text_image__left {
    padding-top: 0;
  }
}
.split_text_image__right {
  max-width: 499px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .split_text_image__right {
    margin-top: 60px;
  }
}
.split_text_image__right::after {
  content: url("../static/img/coe/quotes-symbol.svg");
  position: absolute;
  top: -25px;
  left: -20px;
}
.split_text_image__right::before {
  content: url("../static/img/coe/quotes-symbol.svg");
  position: absolute;
  top: -30px;
  right: -20px;
  transform: rotate(180deg);
}
.split_text_image__rightbody {
  padding: 50px;
  background-color: var(--footer-color);
  font-size: 18px;
  color: white;
  font-weight: 300;
}
@media (max-width: 767px) {
  .split_text_image__rightbody {
    padding: 25px;
  }
}
.split_text_image__rightbody span {
  margin-top: 27px;
  font-size: 22px;
  font-family: var(--secondary-font-name);
  display: block;
}

.centered_text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 26px;
}

.filter {
  padding: 64px 0;
}
.filter ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  gap: 60px;
}
@media (max-width: 767px) {
  .filter ul {
    flex-wrap: wrap;
  }
}
.filter li a {
  font-size: 20px;
  font-weight: 500;
  color: black;
  opacity: 0.6;
}
.filter li a.active {
  opacity: 1;
  position: relative;
}
.filter li a.active::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -20px;
  height: 6px;
  width: 100%;
  background-color: var(--secondary-color);
}

.featured_list__items {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style-type: none;
}
.featured_list__items li {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--secondary-color);
}
@media screen and (max-width: 767px) {
  .featured_list__items li {
    font-size: 30px;
    flex: 0 0 50%;
  }
}
.featured_list__items li span {
  font-size: 20px;
  color: black;
  display: block;
}
@media screen and (max-width: 767px) {
  .featured_list__items li span {
    font-size: 16px;
  }
}

.review__right {
  background-color: var(--secondary-color);
  color: white;
}
.review__right_content {
  padding: 120px 0 54px 130px;
  max-width: 850px;
}
@media (max-width: 767px) {
  .review__right_content {
    padding: 40px 30px;
  }
}
.review__author {
  margin-top: 150px;
}
@media (max-width: 767px) {
  .review__author {
    margin-top: 50px;
  }
}
.review__left {
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 767px) {
  .review__left {
    min-height: 400px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }
}
.review__left_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease 0.3s;
}
.review__left_link:hover {
  color: white;
  opacity: 0.9;
}
.review__text {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .review__text {
    font-size: 20px;
  }
}
.review__author_name {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
.review__author_position {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.location_info__title {
  color: var(--secondary-color);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .location_info__title {
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 20px;
  }
}
.location_info__details {
  display: flex;
  margin-bottom: 60px;
}
.location_info__details ul {
  margin-left: 44px;
}
.location_info__details li {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}
.location_info__details li img {
  margin-right: 14px;
}

.nursery_list {
  display: flex;
  align-items: center;
  padding: 56px 0;
}
@media (max-width: 1199px) {
  .nursery_list {
    overflow-x: scroll;
    padding: 20px 0;
  }
}
.nursery_list__title {
  font-size: 20px;
  font-weight: 700;
  margin-right: 100px;
  white-space: nowrap;
}
@media screen and (max-width: 1700px) {
  .nursery_list__title {
    margin-right: 40px;
  }
}
.nursery_list__item {
  margin-right: 65px;
  position: relative;
}
@media screen and (max-width: 1700px) {
  .nursery_list__item {
    margin-right: 45px;
  }
}
.nursery_list__item:hover::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #4E77E7;
}

.pagination--kfg .page-link {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: transparent !important;
  border: 0;
}
.pagination--kfg .page-link.disabled {
  font-weight: 500;
  color: #979797;
}
.pagination--kfg .page-item {
  align-items: center;
  display: flex;
}

.fullwidth_form_v2 {
  background-color: var(--primary-color);
  padding: 92px 0;
}
@media (max-width: 767px) {
  .fullwidth_form_v2 {
    padding: 50px 0;
  }
}
.fullwidth_form_v2__title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--secondary-color);
}
@media (max-width: 767px) {
  .fullwidth_form_v2__title {
    font-size: 35px;
  }
}
.fullwidth_form_v2__body {
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 42px;
}
.fullwidth_form_v2__form {
  max-width: 750px;
  margin: 0 auto;
}
.fullwidth_form_v2__form .row {
  margin-bottom: 16px !important;
}
@media (max-width: 767px) {
  .fullwidth_form_v2__form .row {
    margin-bottom: 0 !important;
  }
}
.fullwidth_form_v2__form .row > * {
  padding-right: 8px;
  padding-left: 8px;
}
@media (max-width: 767px) {
  .fullwidth_form_v2__form .row > * {
    margin-bottom: 5px;
  }
}
.fullwidth_form_v2__form select.form-control {
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("../static/img/down-arrow.svg");
  background-size: 39px 25px;
  background-repeat: no-repeat;
  background-position: 98%;
}
.fullwidth_form_v2__form .form-control {
  padding: 14px 20px;
  height: auto;
  border: 1px solid var(--primary-color);
  border-radius: 0;
}
.fullwidth_form_v2__cta {
  min-width: 390px;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .fullwidth_form_v2__cta {
    min-width: auto;
    width: 100%;
  }
}

/* custom checkbox styling for contact form 7 checkbox */
span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}

.wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}

.wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}

.wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  height: 30px;
  width: 30px;
  top: 0px;
  left: 0px;
  border: 1px solid rgb(255, 221, 212);
  background-color: white;
}

.wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "✓";
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  background-color: rgb(78, 119, 231);
  color: white;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}

.wpcf7-list-item-label {
  margin-left: 40px;
  display: inline-block;
  margin-top: 4px;
}

.location_module__body {
  padding: 110px 185px 70px 0;
  font-size: 25px;
  padding-left: 20%;
}
@media (max-width: 767px) {
  .location_module__body {
    padding: 0;
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.location_module__body a {
  color: black;
}
.location_module__title {
  font-size: 30px;
  color: var(--secondary-color);
  font-weight: 700;
}
@media (max-width: 767px) {
  .location_module__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .location_module__image {
    margin-bottom: 20px;
  }
}

.container1 {
  max-width: 1500px;
  width: 1500px;
  min-width: 320px !important;
  margin: auto;
}

.container2 {
  max-width: 1920px;
  width: 1920px;
  min-width: 320px !important;
  margin: auto !important;
}

.container3 {
  max-width: 1400px;
  width: 1400px;
  min-width: 320px !important;
  margin: auto !important;
}

.container4 {
  max-width: 1430px;
  width: 1430px;
  min-width: 320px !important;
  margin: auto !important;
}

.container5 {
  max-width: 1563px;
  width: 1563px;
  min-width: 320px !important;
  margin: 0 auto !important;
}
@media (max-width: 767px) {
  .container5 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

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

/* BUTTONS */
.first-button-var {
  white-space: nowrap !important;
  padding: 15px 28px 15px 28px;
  background: rgb(34, 60, 131);
  color: white;
  transition: 0.3s;
  border: 2px solid transparent;
}

.first-button-var:hover {
  color: white;
  background: rgb(38, 68, 148);
  border: 2px solid #223C83;
}

.second-button-var {
  white-space: nowrap !important;
  padding: 15px 60px 15px 60px;
  background: rgb(78, 119, 231);
  color: white;
  transition: 0.3s;
  border: 2px solid transparent;
}

.second-button-var:hover {
  color: white;
  background: rgb(84, 129, 250);
  border: 2px solid rgb(78, 119, 231);
}

/* PARAGRAPHS */
.first-text-var {
  font-size: 14px;
}

.second-text-var {
  font-size: 16px;
}

.third-text-var {
  font-size: 20px;
}

.fourth-text-var {
  font-size: 80px;
}

.fifth-text-var {
  font-size: 24px;
}

.sixth-text-var {
  font-size: 50px;
}

.seventh-text-var {
  font-size: 36px;
}

.eighth-text-var {
  font-size: 28px;
}

.ninth-text-var {
  font-size: 42px;
}

/* LINE HEIGHT */
.first-lh-var {
  line-height: 18.2px;
}

.second-lh-var {
  line-height: 20px;
}

.third-lh-var {
  line-height: 22px;
}

.fourth-lh-var {
  line-height: 80px;
}

.fifth-lh-var {
  line-height: 60px;
}

.sixth-lh-var {
  line-height: 34px;
}

.seventh-lh-var {
  line-height: 17.5px;
}

.eighth-lh-var {
  line-height: 48px;
}

/* colors */
.dark-blue {
  color: rgb(34, 60, 131);
}

.orange {
  color: rgb(189, 91, 49);
}

.pink {
  color: rgb(158, 75, 157);
}

.green {
  color: rgb(82, 164, 81);
}

.red {
  color: rgb(211, 96, 107);
}

.blue {
  color: rgb(78, 119, 231);
}

.purple {
  color: rgb(136, 94, 169);
}

.black {
  color: #000000;
}

.off-white {
  color: #FFFFFF;
}

/* background */
.light-pink {
  background-color: rgb(255, 244, 241);
}

.orange-bg {
  background-color: rgb(255, 220, 174);
}

.pink-bg {
  background-color: rgb(252, 217, 251);
}

.green-bg {
  background-color: rgb(194, 245, 209);
}

.red-bg {
  background-color: rgb(255, 221, 212);
}

.blue-bg {
  background-color: rgb(223, 242, 255) !important;
}

.purple-bg {
  background-color: rgb(222, 217, 253);
}

.dark-blue-bg {
  background-color: rgb(34, 60, 131);
}

.blue-bg {
  background-color: rgb(78, 119, 231);
}

.black-bg {
  background-color: #000000;
}

.light-pink-bg {
  background-color: #FFF4F1;
}

.bg-gray {
  background: #EFEFEF;
}

.blue-bg {
  background-color: rgb(223, 242, 255) !important;
}

.light-gray {
  background-color: #F9FAFF;
}

/* INPUT TYPES */
.first-input {
  width: 60%;
}

/* BORDERS */
.first-border-var {
  border: 1px solid rgb(255, 221, 212) !important;
}

.second-border-var {
  border: 1px solid rgb(230, 230, 230) !important;
}

/* border-radius */
.first-rounded-variation {
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
  border-top-left-radius: 0px !important;
}

.banner-img {
  background-image: url("../static/img/banner-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  margin-top: -133px;
}

.banner-text ul li {
  margin-bottom: 28px;
}

.founder-video {
  background-image: url("../static/img/video-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 299px;
  border-radius: 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
  margin: 0;
  padding-bottom: 7px;
  position: relative;
  color: rgb(0, 0, 0);
}

.accordion-button {
  border-bottom: 2px solid rgb(216, 216, 216) !important;
  padding-bottom: 31px !important;
  padding-top: 41px;
}

.mega-menu-second-section {
  height: auto !important;
}

.accordion-button:not(.collapsed):before {
  position: absolute;
  background: rgb(78, 119, 231);
  height: 1px;
  content: "";
  width: 126px;
  bottom: -1px;
  left: 0;
}

.faqs .accordion-button {
  border-bottom: 2px solid rgb(78, 119, 231) !important;
}

.faqs .accordion-button:not(.collapsed) {
  margin: 0;
  padding-bottom: 7px;
  position: relative;
  color: rgb(0, 0, 0);
}

.faqs .accordion-button:not(.collapsed):before {
  position: absolute;
  background: rgb(255, 255, 255);
  height: 1px;
  content: "";
  width: 161px;
  bottom: -1px;
  left: 0;
}

.faqs .accordion-button.collapsed::after, .faqs .accordion-button:not(.collapsed)::after {
  background-image: url("../static/img/faqs-icon.svg");
}

.overflow-left .accordion-button.collapsed::after, .overflow-left .accordion-button:not(.collapsed)::after {
  background-image: url("../static/img/focus-tabs.svg");
  position: relative;
  top: 7px;
}

.faqs-section .cta button {
  padding: 15px 100px 15px 100px;
}

.offcanvas-logo {
  position: relative;
  margin-bottom: -30px !important;
  margin-left: 6px !important;
}

.close-button-wrapper {
  min-height: 93px !important;
}

.step-1 .btn-img {
  margin-top: -30px;
}

.paragraph {
  width: 63%;
  padding-top: 30px;
}

.paragraph2 {
  width: 65%;
  padding-top: 10px;
}

.heading-width {
  width: 60%;
}

.subs-form .form-control:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid rgb(84, 129, 250) !important;
}

.blog-cards {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.blog-cards .card-body h5 {
  font-size: 22px;
}

#offcanvas-links-wrapper {
  margin-top: -20px !important;
}

.meeting-button-wrapper {
  margin-top: -86px !important;
  margin-bottom: -72px !important;
}

.main-btn {
  min-width: 326px;
}

.customer-help {
  right: 32px;
  bottom: 50px;
}

.margin-minus {
  margin-top: -100px;
}

.testimonial {
  background-image: url("../static/img/testimonial-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.lower-container span {
  padding-top: 10px;
  padding-bottom: 6px;
  margin-right: 12px;
}

.lower-container span:nth-child(1) {
  padding-left: 36px;
  padding-right: 36px;
}

.lower-container span:nth-child(2) {
  padding-left: 30px;
  padding-right: 30px;
}

.lower-container span:nth-child(4) {
  padding-left: 30px;
  padding-right: 30px;
  margin-right: 0px;
}

.step-card:hover {
  transition: 0.5s;
  background-color: rgb(34, 60, 131);
  /* width: 700px; */
  transform: scale(1.03);
}

.step-card:hover .alphabetic p {
  color: white;
}

.step-1-cards:nth-child(3) {
  /* border: 2px solid red !important; */
  margin-top: 40px !important;
}

.owl-dots span {
  border-radius: 0px !important;
  width: 43px !important;
  height: 3px !important;
  /* border: 2px solid red !important; */
  margin: 3px !important;
  background-color: rgb(217, 217, 217);
  transition: 0.5s;
}

.owl-dots .active span {
  width: 43px !important;
  border-radius: 0px !important;
  background: rgb(34, 60, 131) !important;
}

.owl-dots span:hover {
  background-color: rgb(34, 60, 131) !important;
}

.margin-top {
  margin-top: 40px !important;
}

.alphabet-wrapper {
  background: #4E77E7 !important;
  max-height: 58px !important;
  max-width: 58px !important;
  min-height: 58px !important;
  min-width: 58px !important;
  border-radius: 100px !important;
  font-size: 36px !important;
  color: white !important;
}

.alphabet-wrapper span {
  height: 44px;
  display: table-cell;
  vertical-align: middle;
}

#focus-slider .owl-nav {
  /* border: 2px solid red !important; */
  display: flex;
  justify-content: end;
  margin-right: 20px;
  width: 72%;
  margin-top: 25px;
}

#focus-slider .owl-dots {
  /* border: 2px solid red !important; */
  display: inline-block;
  position: relative;
  top: -35px;
}

.focus-item-1,
.focus-item-2,
.focus-item-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 553px !important;
  border-radius: 8px !important;
}

.focus-item-1 {
  background-image: url(../static/img/focus-baby-1.jpg);
}

.focus-item-2 {
  background-image: url(../static/img/focus-toddler-2.jpg);
}

.focus-item-3 {
  background-image: url(../static/img/focus-child-3.jpg);
}

.overflow-left {
  position: relative;
  right: 0;
  width: calc(100% - 85px);
}

@media only screen and (min-width: 1816px) {
  .testimonial-img {
    justify-content: end !important;
  }
}
@media only screen and (max-width: 1371px) {
  .overflow-left {
    margin-left: 50px !important;
  }
  .lower-container span {
    padding-top: 10px;
    padding-bottom: 6px;
    margin-right: 8px;
  }
  .lower-container span:nth-child(1) {
    padding-left: 25px;
    padding-right: 25px;
  }
  .lower-container span:nth-child(2) {
    padding-left: 22px;
    padding-right: 22px;
  }
  .lower-container span:nth-child(4) {
    padding-left: 22px;
    padding-right: 22px;
    margin-right: 0px;
  }
  .step-1-cards .cards-main {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .text, .text p, .step-4 h4, .faqs, .faqs-section .row, .step-1 h3, .step-1 p, .heading, .paragraph, .paragraph2, .heading-width, .subs-form, .subs-form button, .first-input {
    width: 100% !important;
  }
  .step-4 h4 {
    font-size: 22px !important;
  }
  .step-1 .btn-img {
    margin-top: 0px;
    justify-content: center !important;
    margin-bottom: 30px;
  }
  .paragraph {
    padding-top: 5px;
  }
  .heading {
    font-size: 26px;
    padding-top: 0px !important;
    line-height: 30px;
  }
  .footer-para {
    font-size: 14px;
  }
  .meeting-button-wrapper .meeting-button {
    margin-top: -128px !important;
    z-index: 100 !important;
    margin-right: -32px !important;
  }
  .meeting-button-wrapper {
    margin-right: -3px !important;
  }
  .footer1-para {
    font-size: 13px !important;
  }
}
@media only screen and (max-width: 991px) {
  .mega-menu-second-section {
    background-color: rgb(34, 60, 131) !important;
  }
  .mega-menu-second-section p {
    color: white !important;
  }
  .close-button-wrapper {
    min-height: 70px !important;
  }
  #offcanvas-links-wrapper {
    margin-top: 50px !important;
  }
  .testimonial-img img {
    width: 100% !important;
    height: auto !important;
  }
  .toggle-button-container {
    padding-right: 40px !important;
  }
  .testimonial {
    min-height: 500px;
  }
  .step-1-cards:nth-child(3) {
    margin-top: 20px !important;
  }
  .font-responsive {
    font-size: 28px !important;
    line-height: 34px !important;
  }
  .second-responsive {
    font-size: 16px !important;
  }
  .second-fs-responsive {
    font-size: 36px !important;
  }
  #focus-slider .owl-dots {
    display: none !important;
  }
  #focus-slider .owl-nav {
    width: 100% !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    margin-right: 0px !important;
  }
  .overflow-left {
    margin-left: 0px !important;
  }
}
@media only screen and (max-width: 577px) {
  .second-text-var {
    font-size: 14px;
  }
  .third-text-var {
    font-size: 15px;
  }
  .fourth-text-var {
    font-size: 29px;
  }
  .sixth-text-var {
    font-size: 26px;
  }
  .seventh-text-var {
    font-size: 22px;
  }
  .fourth-lh-var {
    line-height: 34px;
  }
  .fifth-lh-var {
    line-height: 34px;
  }
  .fifth-text-var {
    font-size: 18px;
  }
  .ninth-text-var {
    font-size: 26px;
  }
  .toggle-button-container {
    max-height: 70px !important;
  }
  .offcanvas-logo, .cursor-pointer div.container div.row div.col-6 img.logo-image {
    height: 88px !important;
    width: 85px !important;
  }
  .offcanvas-logo {
    margin-left: 20px !important;
  }
  .banner-img {
    background-image: url("../static/img/banner-img-responsive.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto !important;
    margin-top: -133px;
  }
  .founder-video {
    background-image: url("../static/img/video-img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 201px;
  }
  .second-button-var {
    padding-left: 50px;
    padding-right: 50px;
  }
  .mega-menu-second-section button.second-button-var {
    width: 100% !important;
  }
  #offcanvas-links-wrapper {
    margin-top: 34px !important;
  }
  .main-upper-heading {
    margin-top: 60px !important;
  }
  .step-1-btn {
    min-width: 100% !important;
    margin-right: 0px !important;
  }
  .main-btn {
    min-width: 100%;
  }
  .meeting-button-wrapper .meeting-button {
    margin-top: -128px !important;
    z-index: 100 !important;
    margin-right: -32px !important;
  }
  .meeting-button-wrapper {
    margin-right: -10px !important;
  }
  .blog-cards {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .toggle-button-container {
    padding-right: 10px !important;
  }
  .hamburger-bottom, .hamburger-middle, .hamburger-top {
    width: 29px;
  }
  .customer-help {
    right: 33px;
    bottom: 45px;
  }
  .margin-minus {
    margin-top: -160px;
  }
  .testimonial {
    min-height: 206px;
  }
  .testimonial a img {
    width: 40px;
  }
  .image-responsive {
    width: 121px;
  }
  .accordion-button {
    border-bottom: 2px solid rgb(216, 216, 216) !important;
    padding-bottom: 15px !important;
    padding-top: 18px;
  }
  .lower-container span {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 10px;
  }
  .alphabetic p {
    font-size: 22px;
  }
  .lower-container span:nth-child(1) {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lower-container span:nth-child(2) {
    padding-left: 25px;
    padding-right: 25px;
  }
  .lower-container span:nth-child(4) {
    padding-left: 25px;
    padding-right: 25px;
    margin-right: 0px;
  }
  .alphabet-hide {
    display: none !important;
  }
  .alphabet-wrapper {
    background: #4E77E7 !important;
    max-height: 58px !important;
    max-width: 58px !important;
    min-height: 34.06px !important;
    min-width: 34.02px !important;
    border-radius: 100px !important;
    font-size: 20px !important;
    color: white !important;
    margin-top: 10px;
  }
  .alphabet-wrapper span {
    width: 13px !important;
    height: 13px !important;
    display: table-cell;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .responsive-lh {
    line-height: 22px !important;
  }
  .responsive-fs {
    font-size: 20px;
  }
  .faqs .accordion-button:not(.collapsed):before {
    width: 113px;
  }
  .accordion-button:not(.collapsed):before {
    width: 78px;
  }
  .overflow-left .accordion-item .accordion-button {
    /* border: 2px solid red !important; */
    font-size: 16px;
  }
  .blog-cards .card-body h5 {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 600px) {
  .banner-text h1 {
    font-size: 30px;
    line-height: 45px;
  }
}
.link_list {
  display: flex;
  align-items: center;
  padding: 24px 0;
  justify-content: center;
}
@media (max-width: 991px) {
  .link_list {
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.link_list a {
  margin-right: 30px;
  position: relative;
  color: black;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .link_list a {
    margin-right: 0;
    width: 100%;
  }
}
.link_list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.link_list a:hover {
  opacity: 1;
}
.link_list a:hover::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #4E77E7;
}

.wrapper {
  width: 100%;
}

.menu .col-lg,
.menu .wrapper {
  height: 100vh;
}

.menu-btn ul,
.wrapper {
  margin: 0;
  padding: 0;
}

.menu-btn ul .menu-btn ul li:nth-child(2):hover::before,
.menu-btn ul .menu-btn ul li:nth-child(3):hover::before,
.menu-btn ul li:first-child:hover::before,
.menu-btn ul li:nth-child(4):hover::before {
  content: "";
  z-index: -1;
  width: 300px;
  height: 400px;
  display: block;
  top: -180px;
  left: -30px;
  transition: 1s;
  animation: 2s ease-in-out fade-in;
}

.overlay:before {
  animation: 1s steps(10) infinite grain;
  content: "";
  height: auto;
  left: -50%;
  opacity: 0.48;
  position: fixed;
  top: -110%;
  width: 100%;
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 15%);
  }
  80% {
    transform: translate(3%, 35%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}
.menu-btn {
  position: relative;
  margin: 1.2em;
  right: 0;
  z-index: 13;
}

button {
  border: none;
  background: 0 0;
}

button:focus {
  outline: 0 !important;
}

i {
  outline: 0;
  padding: 0.8em;
  color: #fff;
  border: 1px solid #000;
  background: #000;
  border-radius: 50%;
}

.col-lg,
.row {
  margin: 0 !important;
  padding: 0 !important;
}

.col-lg.overlay {
  overflow-x: hidden !important;
  background: #fff;
  position: absolute;
  top: -100%;
}

.menu-btn ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
}

.menu-btn ul li {
  font-family: Poppins;
  display: inline-block;
}

.menu-btn ul li:not(:last-child) {
  margin-right: 120px;
}

.menu-btn ul li:first-child:hover::before {
  position: absolute;
  background: url(hover_one.jpg);
}

.menu-btn ul li:nth-child(2):hover::before {
  position: absolute;
  background: url(hover_two.jpg);
}

.menu-btn ul li:nth-child(3):hover::before {
  position: absolute;
  background: url(hover_three.jpg);
}

.menu-btn ul li:nth-child(4):hover::before {
  position: absolute;
  background: url(hover_four.jpg);
}

@keyframes fade-in {
  0% {
    opacity: 0;
    top: -160px;
  }
  100%, 50% {
    opacity: 1;
    top: -180px;
  }
}
@media (max-width: 992px) {
  .menu-btn ul li {
    text-align: center;
    display: block !important;
    padding: 20px 0;
  }
  .menu-btn ul li:hover::before {
    width: 0 !important;
  }
}
.open {
  transform: rotate(90deg);
  transform: translateY(0);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translate(6px);
  background: #223a82;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translate(-6px);
  background: #223a82;
}

.open .hamburger-middle {
  display: none;
  background: #000;
}

.hamburger-bottom,
.hamburger-middle,
.hamburger-top {
  position: absolute;
  top: 1px;
  left: 80px;
  width: 37px;
  height: 3px;
  background: #223a82;
  transform: rotate(0);
  transition: 0.5s;
}

.hamburger-middle {
  transform: translateY(8px);
}

.hamburger-bottom {
  transform: translateY(16px);
}

#main-menu-button h4 {
  letter-spacing: 0.5px !important;
  margin-top: 1px !important;
}

.overlay::-webkit-scrollbar {
  width: 5px !important;
  background: #fff !important;
}

.hamburger-top::after,
.hamburger-top::before {
  content: "";
  width: 100% !important;
  display: inline-block;
  height: 20px !important;
  position: relative !important;
}

.overlay::-webkit-scrollbar-thumb {
  background: #d6d6d6 !important;
  border-radius: 100px !important;
}

#offcanvas-links-wrapper .banner-text li {
  cursor: pointer !important;
}

.hamburger-top::before {
  top: -18px !important;
}

.hamburger-top::after {
  top: -26px !important;
}

.menu .col-lg.overlay.open {
  top: 0;
  z-index: 12;
}

.navbar-main {
  position: absolute;
  top: 0;
  background-color: transparent;
}

.logo-image {
  position: relative;
  z-index: 1;
}

.menu .col-lg.overlay.open .nav {
  height: 100%;
}

@media (max-width: 767px) {
  .our-nurseries-module {
    overflow-x: scroll;
    zoom: 0.8;
  }
}/*# sourceMappingURL=main.css.map */