@import url(https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap);/*

// Body
$body-bg: #f5f8fa;

// Borders
$laravel-border-color: darken($body-bg, 10%);
$list-group-border: $laravel-border-color;
$navbar-default-border: $laravel-border-color;
$panel-default-border: $laravel-border-color;
$panel-inner-border: $laravel-border-color;

// Brands
$brand-primary: #3097D1;
$brand-info: #8eb4cb;
$brand-success: #2ab27b;
$brand-warning: #cbb956;
$brand-danger: #bf5329;

// Typography
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/";
$font-family-sans-serif: "Raleway", sans-serif;
$font-size-base: 14px;
$line-height-base: 1.6;
$text-color: #636b6f;

// Navbar
$navbar-default-bg: #fff;

// Buttons
$btn-default-color: $text-color;

// Inputs
$input-border: lighten($text-color, 40%);
$input-border-focus: lighten($brand-primary, 25%);
$input-color-placeholder: lighten($text-color, 30%);

// Panels
$panel-default-heading-bg: #fff;
*/

.fw-sticky-top {
  position: sticky;
  top: 70px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 770px) {
  .fw-sticky-top {
    margin-bottom: 0;
  }
}

.fw-scroll-title {
  position: absolute;
  top: -50px;
  left: 0;
}

@media only screen and (max-width: 770px) {
  .fw-scroll-title {
    top: -100px;
  }
}

.fw-vertical-center {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-family: 'Public Sans', sans-serif !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
ul {
  padding: 0;
  margin: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 576px) {
  html {
    font-size: 14px;
  }
}

.featherwebs {
  color: #1D9577;
  font-weight: 600;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.featherwebs:hover {
  text-decoration: none;
  color: #24b792;
}

.fw-navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
}

.fw-navigation .navbar-brand {
  height: auto;
  padding: 0.9rem 0;
}

.fw-navigation .navbar-brand img {
  height: 3.7rem;
}

.fw-navigation .navbar-toggler {
  border: none;
  outline: none !important;
  height: 23px;
  padding: 0.25rem 0;
}

.fw-navigation .navbar-toggler .fw-menu-icon {
  width: 25px;
  height: 2px;
  background: #484848;
  display: block;
}

.fw-navigation .navbar-toggler .fw-menu-icon--two {
  margin: 5px 0;
}

.fw-navigation .navbar-nav .nav-item {
  margin-right: 35px;
}

.fw-navigation .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.fw-navigation .navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  position: relative;
  padding: 0.8rem 0;
  font-weight: 500;
  color: #212121;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

.fw-navigation .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #6DB230;
  bottom: 0.6rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.fw-navigation .navbar-nav .nav-item:hover:not(.active) .nav-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.fw-navigation .navbar-nav .nav-item.active .nav-link {
  color: #6DB230;
}

.fw-navigation .navbar-nav .nav-item.active .nav-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.fw-navigation.fw-navigation--light {
  background-color: transparent;
}

.fw-navigation.fw-navigation--light .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.fw-navigation.fw-navigation--light .navbar-nav .nav-item .nav-link::after {
  background: #ffffff;
}

.nav-call-button {
  margin-left: 35px;
  color: #fff;
  text-align: center;
  font-family: Public Sans;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}

@media only screen and (max-width: 770px) {
  .fw-navigation {
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }

  .fw-navigation .navbar-brand {
    padding: 0;
  }

  .fw-navigation .navbar-brand img {
    height: 2.6rem;
  }

  .fw-navigation .navbar-collapse .full-nav {
    height: calc(100vh - 58.7969px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .fw-navigation .navbar-collapse .full-nav .navbar-nav {
    margin: 0 auto;
  }

  .fw-navigation .navbar-collapse .full-nav .navbar-nav .nav-item {
    margin-right: 0;
    text-align: center;
    padding: 0.5rem 0;
  }

  .fw-navigation .navbar-collapse .full-nav .navbar-nav .nav-item .nav-link {
    font-size: 1.6rem;
    margin: 0 auto;
  }

  .fw-navigation .navbar-collapse .full-nav .navbar-nav .nav-item .nav-link::after {
    content: unset;
  }

  .headroom {
    will-change: transform;
    -webkit-transition: -webkit-transform 200ms linear;
    transition: -webkit-transform 200ms linear;
    transition: transform 200ms linear;
    transition: transform 200ms linear, -webkit-transform 200ms linear;
  }

  .headroom--pinned {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }

  .headroom--unpinned {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.fw-megamenu {
  position: fixed !important;
  left: 0 !important;
  z-index: 100;
  top: 4.8rem !important;
  right: 0 !important;
  margin: 0 auto;
  background-color: transparent !important;
  border: 0px !important;
  background-color: #fff !important;
  border-radius: 20px !important;
  overflow: hidden;
  padding: 20px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.fw-megamenu--card {
  padding: 28px 32px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.fw-megamenu--card h3 {
  color: #000;
  font-size: 26px;
  font-weight: 700;
}

.fw-megamenu--card p {
  font-size: 14px;
  margin-top: 24px;
}

.fw-megamenu--card--items {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fw-megamenu--card--items a {
  font-size: 14px;
  padding: 10px 6px;
  border-top: 1px solid #eae1f2;
  font-weight: 500;
  color: #000;
}

.fw-megamenu--card--items a:first {
  border-top: 0px solid #eae1f2;
}

.fw-megamenu--card--items a:hover {
  background-color: #eae1f2;
  color: #2e540c;
  border-radius: 10px;
}

.fw-megamenu--card figure {
  aspect-ratio: 1.6;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 24px;
  margin-bottom: 0;
}

.fw-megamenu--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-megamenu--card--ipd {
  background: #f4fbef;
}

.fw-megamenu--card--opd {
  background: #d3e8c1;
}

.fw-megamenu--card--room {
  background: #efeef0;
}

.fw-footer {
  position: relative;
  background: #ffffff;
  z-index: 110;
}

.fw-footer .fw-footer__top {
  border-top: 1px solid #dddddd;
  padding: 4rem 0 5rem;
}

.fw-footer__logo {
  max-width: 14rem;
  margin-bottom: 2rem;
}

.fw-footer__about {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #484848;
  padding-right: 2rem;
}

.fw-footer__list {
  list-style: none;
}

.fw-footer__list__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #212121;
}

.fw-footer__item {
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.fw-footer__link {
  color: #757575;
  text-decoration: none !important;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-footer__link:hover:not(.fw-footer__link--no-hover) {
  color: #212121;
}

.fw-footer__link.fw-footer__link--no-hover:hover {
  cursor: unset;
  color: #757575;
}

.fw-footer__social {
  font-size: 1.25rem;
  color: #484848;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-footer__social:hover {
  color: #6DB230;
}

.fw-footer__bot {
  padding: 1.5rem 0;
  border-top: 1px solid #dddddd;
  width: 100%;
  color: #757575;
}

.fw-title--big {
  font-weight: 600;
  font-size: 4.6rem;
}

@media only screen and (max-width: 770px) {
  .fw-title--big {
    font-size: 3.9rem;
  }
}

@media only screen and (max-width: 576px) {
  .fw-title--big {
    font-size: 3rem;
  }
}

.fw-title--one {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.fw-title--two {
  position: relative;
  margin-top: 0;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 0.6em;
}

.fw-title--three {
  position: relative;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 0.6em;
  color: #212121;
}

.fw-title--four {
  color: #212121;
  font-size: 1.125rem;
  margin-bottom: 0.7em;
  font-weight: bold;
}

.fw-title--five {
  color: #484848;
  font-size: 1.125rem;
  margin-bottom: 0.7em;
}

@media only screen and (max-width: 576px) {
  .fw-title--one {
    font-size: 2.5rem;
  }

  .fw-title--two {
    font-size: 2rem;
  }

  .fw-title--three {
    font-size: 1.3rem;
  }

  .fw-title--five {
    font-size: 1rem;
  }
}

.fw-text--green {
  color: #6DB230 !important;
}

.fw-text--light-gray {
  color: #aaaaaa !important;
}

.fw-text--light-green {
  color: #6DB230 !important;
}

.fw-text--dark-gray {
  color: #484848 !important;
}

.fw-text--white {
  color: #ffffff !important;
}

.fw-text--semi-bold {
  font-weight: 600;
}

.fw-text--big {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}

.fw-text--secondary {
  font-size: 14px;
  color: #757575;
  font-weight: 600;
}

.fw-text--link-big {
  font-size: 1rem;
  color: #6DB230;
  font-weight: 600;
}

.fw-text--link-big:hover {
  text-decoration: none;
  color: #599227;
}

.fw-text--overview {
  font-size: 1rem;
  color: #484848;
  text-transform: capitalize;
}

.fw-text--social {
  font-size: 1.5rem;
  color: #757575;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out;
}

.fw-text--social:hover {
  color: #6DB230;
}

.fw-paragraph {
  font-size: 1rem;
  line-height: 1.5;
}

.fw-text-gray {
  color: #757575;
}

.fw-h1 {
  font-weight: 600;
  font-size: 3.6rem;
  color: #6DB230;
}

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

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

@media (max-width: 576px) {
  .fw-h1 {
    font-size: 2.6rem;
  }
}

.fw-section {
  margin-bottom: 7rem;
}

.fw-section--full {
  min-height: 100vmin;
  padding: 40px 0;
}

@media only screen and (max-width: 770px) {
  .fw-section {
    margin-bottom: 5rem;
  }
}

@media only screen and (max-width: 576px) {
  .fw-section {
    margin-bottom: 4rem;
  }
}

.fw-mt--2x {
  margin-top: 2rem;
}

.fw-mt--3x {
  margin-top: 3rem;
}

.fw-mt--4x {
  margin-top: 4rem;
}

.fw-mt--5x {
  margin-top: 5rem;
}

.fw-mt--6x {
  margin-top: 6rem;
}

.fw-mt--nav {
  margin-top: 150px;
}

@media only screen and (max-width: 770px) {
  .fw-mt--nav {
    margin-top: 40px;
  }
}

.fw-mt--nav-small {
  margin-top: 175px;
}

@media only screen and (max-width: 770px) {
  .fw-mt--nav-small {
    margin-top: 40px;
  }
}

.fw-box {
  padding: 6.25rem 0;
  position: relative;
}

.fw-box__image {
  position: relative;
  height: 100%;
}

.fw-box__image__item {
  position: absolute;
  bottom: -6.25rem;
  right: 0;
  max-height: 680px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.fw-box__image__item--home {
  right: 0;
  max-height: 680px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.fw-box.fw-box--large {
  padding: 9rem 0;
}

.fw-box.fw-box--top {
  padding: 13rem 0 9rem;
}

.fw-box.fw-box--top .fw-box__image {
  position: relative;
  height: 100%;
}

.fw-box.fw-box--top .fw-box__image__item {
  position: absolute;
  bottom: -9rem;
  max-height: 780px;
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .fw-box.fw-box--top {
    padding: 8rem 0;
  }
}

.fw-box.fw-box--off-green {
  background-color: #F8FFF2;
  padding: 0;
  padding: 6.25rem;
}

.fw-box.fw-box--off-green--home {
  background-color: #F8FFF2;
  padding: 0;
  padding-top: 6.25rem;
}

.fw-box.fw-box--green {
  background-color: #6DB230;
}

.fw-box.fw-box--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 770px) {
  .fw-box.fw-box--bg {
    background-image: none !important;
    background: #F8FFF2;
  }
}

.modal-header,
.modal-body {
  padding: 1.6rem;
}

.fw-text-size--500 {
  max-width: 500px;
}

.fw-mt--100 {
  margin-top: 100px;
}

@media (max-width: 576px) {
  .fw-box.fw-box--off-green--home {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }

  .fw-box.fw-box--off-green {
    padding: 6.25rem 1rem;
  }

  .fw-mt--100 {
    margin-top: 40px;
  }
}

@media (max-width: 770px) {
  .fw-box.fw-box--off-green--home {
    padding: 4rem 0;
  }
}

.home {
  background-color: transparent;
}

.fw-btn {
  position: relative;
  font-size: 1rem;
  padding: 1em 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: max-content;
  width: -moz-max-content;
  font-weight: 600;
  border-radius: 3px;
}

.fw-btn.fw-btn--small {
  font-size: 0.875rem;
}

.fw-btn.fw-btn--cta {
  background: #6DB230;
  color: #ffffff;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
  margin-top: 2.3rem;
}

.fw-btn.fw-btn--cta:hover {
  text-decoration: none;
  color: #ffffff;
  background: #599227;
}

.fw-btn.fw-btn--cta.fw-btn--cta-inverted {
  background: #ffffff;
  color: #6DB230;
}

.fw-btn.fw-btn--cta.fw-btn--cta-inverted:hover {
  text-decoration: none;
  background: #fafafa;
}

.fw-btn.fw-btn--cta-white {
  background: #ffffff;
  color: #212121;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.fw-btn.fw-btn--cta-white:hover {
  text-decoration: none;
  background: #ebebeb;
}

.fw-btn.fw-btn--cta-outline {
  border: 2px solid #6db230;
  color: #6db230;
  padding: 8px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.fw-btn.fw-btn--cta-secondary {
  background: transparent;
  border: 1.5px solid #6DB230;
  color: #6DB230;
  -webkit-transition: border 0.15s ease, color 0.15s ease;
  transition: border 0.15s ease, color 0.15s ease;
  margin-top: 2.3rem;
}

.fw-btn.fw-btn--cta-secondary:hover {
  text-decoration: none;
  color: #ffffff;
  background: #6DB230;
}

.fw-btn.fw-btn--cta-secondary.fw-btn--cta-secondary-inverted {
  border-color: #ffffff;
  color: #ffffff;
}

.fw-btn.fw-btn--cta-secondary.fw-btn--cta-secondary-inverted:hover {
  text-decoration: none;
  color: #F8FFF2;
  border-color: #F8FFF2;
}

.fw-btn--close {
  font-weight: 400;
  float: unset;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

.fw-btn--top {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  position: fixed;
  background: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(101, 101, 101, 0.2);
          box-shadow: 0 5px 15px rgba(101, 101, 101, 0.2);
  z-index: 100;
}

@media only screen and (max-width: 770px) {
  .fw-btn--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 30px;
    left: 30px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-btn--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 15px;
    left: 15px;
  }
}

.fw-image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: #6DB230;
  z-index: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.fw-icon--plus {
  font-size: 12px;
  color: #fff;
}

.fw-circle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.fw-image-container:hover .fw-image-overlay {
  opacity: 0.6;
}

.fw-image-container:hover .fw-image-container__item--hover {
  -webkit-transform: scale(1.05) rotate(0.5deg);
          transform: scale(1.05) rotate(0.5deg);
  -webkit-transition: -webkit-transform 0.9s ease-out;
  transition: -webkit-transform 0.9s ease-out;
  transition: transform 0.9s ease-out;
  transition: transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
  opacity: 0.5;
}

.fw-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

@media only screen and (max-width: 576px) {
  .fw-image-container {
    border-radius: 5px;
  }
}

.fw-image-container__item {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fw-image-container__item--hover {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.fw-image-container__item--hover:hover {
  -webkit-transform: scale(1.05) rotate(0.5deg);
          transform: scale(1.05) rotate(0.5deg);
  -webkit-transition: -webkit-transform 0.9s ease-out;
  transition: -webkit-transform 0.9s ease-out;
  transition: transform 0.9s ease-out;
  transition: transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
  opacity: 0.5;
}

.fw-image-container .fw-image-container:hover ~ .fw-image-container--overlay {
  opacity: 0.5;
}

.fw-image-container.fw-image-container--1-1 {
  padding-top: 100%;
}

.fw-image-container.fw-image-container--4-3 {
  padding-top: 75%;
}

.fw-image-container.fw-image-container--3-2 {
  padding-top: 66.66%;
}

.fw-image-container.fw-image-container--16-9 {
  padding-top: 56.25%;
}

.fw-image-container.fw-image-container--full-w {
  height: 70vmin;
  border-radius: 0;
}

.fw-bg-full {
  position: relative;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 770px) {
  .fw-bg-full {
    height: 70vh;
  }
}

.fw-image--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}

.fw-image--icon__item {
  width: 50px;
  height: 50px;
}

.fw-image--icon__title {
  margin-top: 5px;
  font-size: 1rem;
  color: #212121;
  font-weight: 600;
  text-align: center;
}

.fw-image--icon:hover {
  text-decoration: none;
}

.fw-image--icon:hover .fw-image--icon__title {
  color: #6DB230;
}

.fw-img-fig {
  padding-top: 66%;
  position: relative;
  width: 100%;
}

.fw-img-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 5px;
}

.fw-form-group--reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.fw-form-group .fw-label {
  margin: 0;
  font-size: 14px;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity .1s ease-out, -webkit-transform .2s ease-out;
  transition: opacity .1s ease-out, -webkit-transform .2s ease-out;
  transition: transform .2s ease-out, opacity .1s ease-out;
  transition: transform .2s ease-out, opacity .1s ease-out, -webkit-transform .2s ease-out;
}

.fw-form-group .fw-label.fw-label-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fw-form-group .fw-form-control {
  min-height: 3rem;
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #dddddd;
  background: transparent;
}

.fw-form-group .fw-form-control::-webkit-input-placeholder {
  color: #757575;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-form-group .fw-form-control::-moz-placeholder {
  color: #757575;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-form-group .fw-form-control::-ms-input-placeholder {
  color: #757575;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-form-group .fw-form-control::placeholder {
  color: #757575;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-form-group .fw-form-control:not(:placeholder-shown) + .fw-label {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fw-form-group .fw-form-control:focus + .fw-label {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  color: #6DB230;
}

.fw-form-group .fw-form-control:focus {
  color: #212121;
  border-bottom-color: #6DB230;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fw-form-group .fw-form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.fw-form-group .fw-form-control:focus::-moz-placeholder {
  color: transparent;
}

.fw-form-group .fw-form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.fw-form-group .fw-form-control:focus::placeholder {
  color: transparent;
}

.fw-form-group .fw-form-control.fw-form-control--textarea {
  padding: 0.8rem 0;
}

.fw-form-group .fw-form-control-file {
  height: 3rem;
  padding: 0.5rem 0;
}

.fw-form-group .fw-form-control-file::-webkit-file-upload-button {
  visibility: hidden;
}

.fw-form-group .fw-form-control-file::before {
  content: 'Browse';
  display: inline-block;
  background: #ffffff;
  color: #212121;
  border: 1px solid #757575;
  border-radius: 3px;
  padding: 0.5em 1.8em;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-size: 14px;
}

.fw-form-group .fw-form-control-file:hover::before {
  border-color: #212121;
}

@media only screen and (max-width: 576px) {
  .fw-form-group .fw-form-control-file::before {
    padding: 0.5em 1.5em;
  }
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 2px;
  border: 1px solid #ddd;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}

.fw-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.fw-checkbox {
  position: absolute;
  display: none;
}

.fw-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-left: 26px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  letter-spacing: -0.1px;
  font-size: 0.93rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #212121;
}

.fw-checkbox + label::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #dddddd;
  -webkit-transition: background .15s ease-out;
  transition: background .15s ease-out;
}

.fw-checkbox:hover + label::before {
  background: #dddddd;
}

.fw-checkbox:checked + label::before {
  background: #6DB230;
  border-color: #6DB230;
}

.fw-checkbox:disabled + label {
  color: #dddddd;
  cursor: auto;
}

.fw-checkbox:disabled + label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #dddddd;
}

.fw-checkbox:checked + label::after {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-size: 90%;
  background-image: url("/images/check-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.fw-select .fw-option {
  padding: 1rem;
}

.fw-banner-font {
  font-size: 4rem;
  font-weight: 700;
  color: white;
}

@media only screen and (max-width: 576px) {
  .fw-banner-font {
    font-size: 1.5rem;
  }
}

.about-gallery-swiper {
  width: 100%;
  height: auto;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-gallery-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-gallery-swiper .swiper-slide {
  height: auto;
  width: 300px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-gallery-swiper .swiper-slide .fw-image-container {
  margin: 15px 0;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 1) .fw-image-container:nth-of-type(1) {
  padding-top: 75%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 1) .fw-image-container:nth-of-type(2) {
  padding-top: 120%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 2) .fw-image-container:nth-of-type(1) {
  padding-top: 75%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 2) .fw-image-container:nth-of-type(2) {
  padding-top: 66.66%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 3) .fw-image-container:nth-of-type(1) {
  padding-top: 120%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 3) .fw-image-container:nth-of-type(2) {
  padding-top: 75%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 4) .fw-image-container:nth-of-type(1) {
  padding-top: 66.66%;
}

.about-gallery-swiper .swiper-slide:nth-of-type(4n + 4) .fw-image-container:nth-of-type(2) {
  padding-top: 75%;
}

@media only screen and (max-width: 576px) {
  .about-gallery-swiper .swiper-slide {
    width: 170px;
  }
}

.fw-testimonial-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fw-testimonial-pagination .fw-testimonial-bullet {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(33, 33, 33, 0.3);
  border-radius: 50%;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}

.fw-testimonial-pagination .fw-testimonial-bullet:nth-of-type(n + 2) {
  margin-left: 8px;
}

.fw-testimonial-pagination .fw-testimonial-bullet:hover:not(.fw-testimonial-bullet--active) {
  cursor: pointer;
  background: rgba(33, 33, 33, 0.4);
}

.fw-testimonial-pagination .fw-testimonial-bullet--active {
  width: 15px;
  height: 15px;
  background: #6DB230;
}

@media only screen and (max-width: 576px) {
  .fw-testimonial-pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .fw-testimonial-pagination .fw-testimonial-bullet {
    width: 8px;
    height: 8px;
  }

  .fw-testimonial-pagination .fw-testimonial-bullet:nth-of-type(n + 2) {
    margin-left: 6px;
  }

  .fw-testimonial-pagination .fw-testimonial-bullet--active {
    width: 13px;
    height: 13px;
  }
}

.home-slider-content {
  position: absolute;
  z-index: 10;
  width: 60%;
  margin: 0 auto;
  bottom: 3rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  pointer-events: all;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

@media only screen and (max-width: 768px) {
  .home-slider-content {
    width: 91%;
    padding: 1rem 1.5rem;
  }
}

.home-slider-content--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 576px) {
  .home-slider-content--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.home-slider-content--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.home-slider-content--contact p {
  color: white;
}

.home-slider-content h1 {
  padding-left: 2px;
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

@media only screen and (max-width: 576px) {
  .home-slider-content h1 {
    font-size: 2rem;
  }
}

.fw-editor p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.fw-editor ul {
  padding-left: 1.3rem;
  list-style: none;
}

.fw-editor ul li {
  margin-bottom: 0.7rem;
  position: relative;
}

.fw-editor ul li::before {
  content: "\2022";
  position: absolute;
  top: 0;
  left: -1.3rem;
  line-height: 1rem;
  color: #6DB230;
  font-size: 1.8rem;
  font-weight: bold;
}

.fw-card {
  position: relative;
  margin-bottom: 1.87rem;
  min-height: 10px;
}

.fw-card__image {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.fw-card__image__item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 6px;
}

.fw-card__link {
  height: 100%;
  display: block;
}

.fw-card__link:hover {
  text-decoration: none;
}

.fw-card__body {
  margin-top: 0.95rem;
}

.fw-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 0.2em;
  line-height: 1.3;
}

.fw-card__sub-title {
  font-size: 0.875rem;
  color: #757575;
}

.fw-card.fw-card--album {
  margin-bottom: 5rem;
}

.fw-card.fw-card--album .fw-card__image {
  padding-top: 75%;
  overflow: hidden;
  border-radius: 6px;
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--album .fw-card__image {
    border-radius: 5px;
  }
}

.fw-card.fw-card--album .fw-card__image__item {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.fw-card.fw-card--album .fw-card__image__item:hover {
  -webkit-transform: scale(1.05) rotate(0.5deg);
          transform: scale(1.05) rotate(0.5deg);
  -webkit-transition: -webkit-transform 0.9s ease-out;
  transition: -webkit-transform 0.9s ease-out;
  transition: transform 0.9s ease-out;
  transition: transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.fw-card.fw-card--album .fw-card__title {
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 0.6em;
  color: #212121;
}

.fw-card.fw-card--album .fw-card__sub-title {
  font-size: 14px;
  color: #757575;
  font-weight: 600;
}

@media only screen and (max-width: 770px) {
  .fw-card.fw-card--album {
    margin-bottom: 1rem;
  }

  .fw-card.fw-card--album .fw-card__image {
    padding-top: 56.25%;
  }

  .fw-card.fw-card--album .fw-card__title {
    font-size: 20px;
  }

  .fw-card.fw-card--album .fw-card__sub-title {
    font-size: 12px;
  }
}

.fw-card.fw-card--blog-featured .fw-card__image {
  display: block;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 6px;
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog-featured .fw-card__image {
    border-radius: 5px;
  }
}

.fw-card.fw-card--blog-featured .fw-card__image__item {
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.fw-card.fw-card--blog-featured .fw-card__image:hover .fw-card__image__item {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.fw-card.fw-card--blog-featured .fw-card__body {
  margin-top: 2rem;
}

.fw-card.fw-card--blog-featured .fw-card__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #212121;
  margin-bottom: 0.5em;
  display: block;
}

.fw-card.fw-card--blog-featured .fw-card__sub-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #212121;
  margin-bottom: 0.5em;
}

.fw-card.fw-card--blog-featured .fw-card__description {
  font-size: 1rem;
  line-height: 1.5;
  color: #757575;
}

.fw-card.fw-card--blog-featured .fw-card__action {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6DB230;
  margin-top: 2.5rem;
  -webkit-transition: color .15s ease;
  transition: color .15s ease;
}

.fw-card.fw-card--blog-featured .fw-card__action:hover {
  text-decoration: none;
  color: #599227;
}

@media only screen and (max-width: 770px) {
  .fw-card.fw-card--blog-featured .fw-card__action {
    margin-top: 1.5rem;
  }
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog-featured .fw-card__title {
    font-size: 1.6rem;
  }

  .fw-card.fw-card--blog-featured .fw-card__sub-title {
    font-size: 11px;
  }
}

.fw-card.fw-card--blog-horizontal .fw-card__image {
  display: block;
  padding-top: 75%;
  overflow: hidden;
  border-radius: 6px;
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog-horizontal .fw-card__image {
    border-radius: 5px;
  }
}

.fw-card.fw-card--blog-horizontal .fw-card__image__item {
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.fw-card.fw-card--blog-horizontal .fw-card__image:hover .fw-card__image__item {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.fw-card.fw-card--blog-horizontal .fw-card__body {
  margin-top: 0;
}

.fw-card.fw-card--blog-horizontal .fw-card__title {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #212121;
}

.fw-card.fw-card--blog-horizontal .fw-card__sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog-horizontal .fw-card__image {
    padding-top: 100%;
  }

  .fw-card.fw-card--blog-horizontal .fw-card__title {
    font-size: 1.2rem;
  }

  .fw-card.fw-card--blog-horizontal .fw-card__sub-title {
    font-size: 10px;
    margin-bottom: 0.4em;
  }
}

.fw-card.fw-card--blog {
  margin-bottom: 2.5rem;
}

.fw-card.fw-card--blog .fw-card__image {
  padding-top: 75%;
  overflow: hidden;
  border-radius: 6px;
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog .fw-card__image {
    border-radius: 5px;
  }
}

.fw-card.fw-card--blog .fw-card__image__item {
  -webkit-transition: -webkit-transform .25s ease-out;
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.fw-card.fw-card--blog .fw-card__title {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #212121;
}

.fw-card.fw-card--blog .fw-card__sub-title {
  font-size: 13px;
  font-weight: 600;
  color: #757575;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.fw-card.fw-card--blog .fw-card__link:hover .fw-card__image__item {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media only screen and (max-width: 576px) {
  .fw-card.fw-card--blog .fw-card__image {
    padding-top: 100%;
  }

  .fw-card.fw-card--blog .fw-card__title {
    font-size: 1.2rem;
  }

  .fw-card.fw-card--blog .fw-card__sub-title {
    font-size: 10px;
    margin-bottom: 0.4em;
  }
}

.fw-card.fw-card--nav .fw-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fw-card.fw-card--nav .fw-card__link .fw-card__image__item {
  position: relative;
  height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fw-card.fw-card--nav .fw-card__link .fw-card__title {
  margin-top: 1rem;
  color: #212121;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-card.fw-card--nav .fw-card__link:hover .fw-card__title {
  color: #6DB230;
}

.fw-card.fw-card--small {
  margin-bottom: 3.7rem;
}

.fw-card.fw-card--small .fw-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fw-card.fw-card--small .fw-card__link .fw-card__image__item {
  position: relative;
  height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fw-card.fw-card--small .fw-card__link .fw-card__title {
  margin-top: 1.6rem;
  color: #212121;
  -webkit-transition: color .15s ease-out;
  transition: color .15s ease-out;
}

.fw-card.fw-card--small .fw-card__link:hover .fw-card__title {
  color: #6DB230;
}

.fw-card-shadow {
  -webkit-box-shadow: 0 2px 4px 0 rgba(161, 161, 161, 0.5);
          box-shadow: 0 2px 4px 0 rgba(161, 161, 161, 0.5);
  border-radius: 15px;
  height: calc(100% - 46px);
}

.fw-card__title--featured {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #2e2f2f;
  margin-bottom: 14px;
  display: block;
  position: relative;
  padding-left: 22px;
}

.fw-card__title--featured::before {
  background-color: #6db230;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 0 5px 0 5px;
  position: absolute;
  top: 7px;
  left: 0;
}

.fw-18 {
  padding: 18px;
  padding-right: 22px;
}

.fw-card__body {
  margin-top: 0.95rem;
}

.fw-gallery__image {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin-top: 2rem;
  overflow: hidden;
  display: block;
  background: #6DB230;
  border-radius: 6px;
}

.fw-gallery__image__item {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.fw-gallery__image__item:hover {
  -webkit-transform: scale(1.05) rotate(0.5deg);
          transform: scale(1.05) rotate(0.5deg);
  -webkit-transition: -webkit-transform 0.9s ease-out;
  transition: -webkit-transform 0.9s ease-out;
  transition: transform 0.9s ease-out;
  transition: transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.fw-pagination__item {
  border-radius: 0;
  outline: none !important;
  display: inline-block;
}

.fw-pagination__item:not(.fw-pagination__item--active):not(.fw-pagination__item--disabled):hover .fw-pagination__link {
  color: #212121;
}

.fw-pagination__item .fw-pagination__link {
  background-color: #ffffff;
  font-size: 1rem;
  border: 0;
  color: #aaaaaa;
  margin: 0 4px;
  font-weight: 600;
  padding: 0.6rem 1rem;
  text-decoration: none;
  display: inline-block;
}

.fw-pagination__item.fw-pagination__item--active .fw-pagination__link {
  color: #6DB230;
}

.fw-pagination__item.fw-pagination__item--disabled .fw-pagination__link {
  color: #cccccc;
  cursor: auto;
}

.fw-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 350px;
  border-right: 1px solid #dddddd;
}

.fw-list-group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
}

.fw-list-group__item:hover {
  text-decoration: none;
}

.fw-list-group__item:hover:not(.active) .fw-list-group__title {
  color: #212121;
  font-weight: bold;
}

.fw-list-group__item.active .fw-list-group__title {
  font-weight: bold;
  color: #212121;
}

.fw-list-group__title {
  font-size: 1.125rem;
  color: #484848;
  position: relative;
  margin-bottom: 0.2em;
  -webkit-transition: color .15s ease-in;
  transition: color .15s ease-in;
}

.fw-list-group__date {
  font-size: 0.875rem;
  color: #aaaaaa;
}

@media only screen and (max-width: 576px) {
  .fw-list-group {
    border-right: 0;
  }

  .fw-list-group__item {
    margin-bottom: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid #dddddd;
  }
}

.fw-specs-list {
  list-style: square;
  padding-left: 18px;
}

.fw-specs-list__item {
  color: #484848;
}

.fw-specs-list__item:nth-of-type(n + 2) {
  margin-top: 20px;
}

@media only screen and (max-width: 576px) {
  .fw-tab-content .fw-tab-pane {
    background: #ffffff;
    padding: 70px 15px 50px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: scroll;
    display: none;
    z-index: 999;
  }

  .fw-tab-content .fw-tab-pane.active {
    display: block;
  }
}

.fw-side-nav {
  list-style: none;
  padding-left: 30px;
  border-left: 1px solid #dddddd;
}

.fw-side-nav__item {
  padding: 5px 0;
}

.fw-side-nav__item:nth-of-type(n+2) {
  margin-top: 10px;
}

.fw-side-nav__link {
  color: #484848;
  -webkit-transition: font-weight .15s ease-out, color .15s ease-out;
  transition: font-weight .15s ease-out, color .15s ease-out;
}

.fw-side-nav__link:hover {
  color: #212121;
  font-weight: bold;
  text-decoration: none;
}

.fw-accordion__heading {
  font-size: 1.6rem;
  font-weight: bold;
}

.fw-accordion__heading:nth-of-type(n+2) {
  margin-top: 60px;
}

@media only screen and (max-width: 576px) {
  .fw-accordion__heading {
    font-size: 1.5rem;
  }
}

.fw-accordion__group {
  padding: 25px 0;
}

.fw-accordion__group__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fw-accordion__group__header .fw-accordion__icon {
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.fw-accordion__group__header:not(.collapsed) .fw-accordion__icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.fw-accordion__group__header:hover {
  cursor: pointer;
}

.fw-accordion__group__body {
  margin-top: 20px;
}

@media only screen and (max-width: 576px) {
  .fw-accordion__group {
    padding: 17px 0;
  }

  .fw-accordion__group__body {
    margin-top: 20px;
  }
}

.fw-accordion__title {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #212121;
}

@media only screen and (max-width: 576px) {
  .fw-accordion__title {
    font-size: 16px;
  }
}

.fw-hero-background-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-hero-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fw-hero-pagination .swiper-pagination-bullet-active {
  background-color: #6db230;
}

.fw-hero-pagination .swiper-pagination-bullet {
  margin-right: 10px;
}

.fw-facilities {
  background-color: #8ac159;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .fw-facilities {
    padding: 4rem 0;
  }
}

.fw-facilities-wrapper ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media only screen and (max-width: 768px) {
  .fw-facilities-wrapper ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}

.fw-facilities-wrapper li {
  border-radius: 12px;
  background: var(--White, #fcfffa);
  padding: 12px 16px 12px 42px;
  margin-bottom: 8px;
  position: relative;
  list-style: none;
}

.fw-facilities-wrapper li:before {
  position: absolute;
  left: 8px;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="24" viewBox="0 0 25 24" fill="none"><path d="M21.501 10V19.5C21.501 19.8978 21.3429 20.2794 21.0616 20.5607C20.7803 20.842 20.3988 21 20.001 21H5.00098C4.60315 21 4.22162 20.842 3.94032 20.5607C3.65901 20.2794 3.50098 19.8978 3.50098 19.5V4.5C3.50098 4.10218 3.65901 3.72064 3.94032 3.43934C4.22162 3.15804 4.60315 3 5.00098 3H15.501" stroke="%234ECB71" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M8.50098 10L13.501 14L21.001 3.5" stroke="%234ECB71" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fw-facilities--figure {
  width: 300px;
  position: absolute;
  bottom: -0.4rem;
  margin-bottom: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  z-index: 1;
  right: -2rem;
  display: block;
}

@media only screen and (max-width: 768px) {
  .fw-facilities--figure {
    display: none;
  }
}

.fw-facilities--figure img {
  width: 100%;
}

.fw-facilities--logo-skeleton {
  display: block;
  position: absolute;
  right: 0rem;
  top: 0;
}

@media only screen and (max-width: 768px) {
  .fw-facilities--logo-skeleton {
    display: none;
  }
}

.fw-facilities--logo-skeleton-half {
  display: block;
  position: absolute;
  left: 0rem;
  top: 20%;
}

@media only screen and (max-width: 768px) {
  .fw-facilities--logo-skeleton-half {
    display: none;
  }
}

.fw-difference {
  position: relative;
  overflow: hidden;
}

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

.fw-difference--logo-skeleton-green {
  position: absolute;
  opacity: 0.2;
  top: -3rem;
  right: 16rem;
}

.fw-branches--card:first-child {
  margin-top: 0px !important;
}

.fw-branches--card {
  position: relative;
  text-decoration: none;
}

.fw-branches--card:hover {
  text-decoration: none;
}

.fw-branches--card figure {
  aspect-ratio: 1.7;
  border-radius: 10px;
  overflow: hidden;
}

.fw-branches--card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branches--card--details {
  margin-top: -4rem;
  margin-left: 18px;
  margin-right: 18px;
  border-radius: 6px;
  padding: 28px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 24px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 24px 2px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

@media only screen and (max-width: 576px) {
  .fw-branches--card--details {
    margin-top: -3rem;
    margin-bottom: 2rem;
    padding: 16px 14px;
  }
}

.fw-branches--card--details--figure {
  width: 30%;
  aspect-ratio: 1.2;
  border-radius: 8px;
  overflow: hidden;
}

@media only screen and (max-width: 576px) {
  .fw-branches--card--details--figure {
    aspect-ratio: 0.8;
  }
}

.fw-branches--card--details--figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branches--card--info {
  width: 100%;
  color: black;
}

.fw-branches--card--badge {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3.209px;
  background: #6db230;
  color: #6b7280;
  padding: 6px 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-left: 1rem;
}

@media only screen and (max-width: 576px) {
  .fw-branches--card--badge {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 0rem;
  }
}

.fw-home-yt--video {
  aspect-ratio: 1.9;
  border-radius: 6px;
  overflow: hidden;
}

.fw-home-yt--video iframe {
  width: 100%;
  height: 100%;
}

.form-group .form-check {
  position: relative;
  padding-left: 30px;
}

.form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.65rem !important;
  z-index: 10;
}

.form-check-label {
  position: relative;
  cursor: pointer;
  padding-left: 5px;
  display: inline-block;
}

.form-check-label::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  background-color: transparent;
  border-radius: 3px;
}

.form-check-input:checked + .form-check-label::before {
  background-color: #ffffff;
}

.form-check-input:checked + .form-check-label::after {
  content: "\2713";
  position: absolute;
  left: -26px;
  top: 2px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}

.form-check-label.text-white {
  color: #ffffff;
}

.fw-btn-outline--green {
  border: 2px solid #6db230;
  color: #6db230;
  background-color: white;
  padding: 8px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  border-radius: 3px;
}

.fw-btn-outline--green:hover {
  text-decoration: none;
  background-color: #6db230;
  color: white;
}

.fw-training-section .container {
  overflow: hidden;
}

.fw-training-py {
  padding: 3.5rem 0;
}

.fw-training-mb--6 {
  margin-bottom: 6rem;
}

.fw-training-mb--4 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 770px) {
  .fw-training-mb--4 {
    margin-bottom: 3rem;
  }
}

.fw-training-content--mt {
  margin-top: 40px;
}

@media only screen and (max-width: 770px) {
  .fw-training-content--mt {
    margin-top: 28px;
  }
}

.fw-trainings--banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.fw-trainings--banner--content {
  margin-top: 12rem;
  padding: 4rem 0;
}

@media only screen and (max-width: 576px) {
  .fw-trainings--banner--content {
    padding: 3rem 0;
  }
}

.fw-trainings--banner--content p {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 70px;
}

@media only screen and (max-width: 576px) {
  .fw-trainings--banner--content p {
    font-size: 18px;
    line-height: 28px;
  }
}

.fw-trainings--banner--overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}

.fw-trainings--video {
  background-color: #f8fff2;
}

.fw-trainings--video iframe {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.fw-trainings--video--text-small {
  color: #4f4f4e;
  font-size: 31px;
  font-weight: 400;
  line-height: 38px;
}

@media only screen and (max-width: 992px) {
  .fw-trainings--video--text-small {
    font-size: 22px;
    line-height: 28px;
  }
}

.fw-trainings--course {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 992px) {
  .fw-trainings--course {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 576px) {
  .fw-trainings--course {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-trainings--course--card {
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(161, 161, 161, 0.5);
          box-shadow: 0px 2px 4px 0px rgba(161, 161, 161, 0.5);
  color: #2e2f2f;
}

.fw-trainings--course--card:hover {
  text-decoration: none;
}

.fw-trainings--course--card:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.fw-trainings--course--card:hover h4 {
  color: #2e2f2f;
}

.fw-trainings--course--card:hover span {
  color: #2e2f2f;
}

.fw-trainings--course--card figure {
  aspect-ratio: 1.5;
  overflow: hidden;
  width: 100%;
}

@media only screen and (max-width: 770px) {
  .fw-trainings--course--card figure {
    aspect-ratio: 1.4;
  }
}

.fw-trainings--course--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.fw-trainings--course--card--content {
  padding: 10px 14px;
}

.fw-trainings--course--card--content h4 {
  font-size: 22px;
  font-weight: 600;
}

.fw-trainings--course--card--content li {
  padding-left: 30px;
  margin-bottom: 4px;
  position: relative;
  list-style: none;
  color: #757575;
}

.fw-trainings--course--card--content li:before {
  position: absolute;
  left: -2px;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_1032_811" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_1032_811)"><path d="M13.8461 17.6534L12.7923 16.5688L16.6116 12.7495H4.5V11.2496H16.6116L12.7923 7.4303L13.8461 6.3457L19.5 11.9995L13.8461 17.6534Z" fill="green"/></g></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fw-training-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}

@media only screen and (max-width: 922px) {
  .fw-training-gallery {
    gap: 12px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-training-gallery {
    gap: 10px;
  }
}

.fw-training-gallery figure {
  background-size: cover;
  background-position: center;
  height: 280px;
  width: 33%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .fw-training-gallery figure {
    height: 180px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-training-gallery figure {
    height: 160px;
  }
}

.fw-training-gallery figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-training-gallery figure:nth-child(2n) {
  width: 40%;
}

.fw-training-gallery figure:nth-child(2n) {
  width: 30%;
}

.fw-training-gallery figure:nth-child(4n) {
  width: 20%;
}

.fw-training-gallery figure:nth-child(5n) {
  width: 60%;
}

.fw-training-gallery figure:nth-child(6n) {
  width: 45%;
}

.fw-review--video {
  overflow: hidden;
  border-radius: 15px;
  background: #f8fff2;
}

@media only screen and (max-width: 768px) {
  .fw-review--video {
    border-radius: 8px;
  }
}

.fw-review--video figure {
  aspect-ratio: 2;
  overflow: hidden;
}

.fw-review--video figure iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-review--video--profile {
  padding: 14px 36px 20px 36px;
}

@media only screen and (max-width: 576px) {
  .fw-review--video--profile {
    padding: 10px 20px 20px 20px;
  }
}

.fw-review--video--profile h5 {
  color: #212529;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%;
}

.fw-review--video--profile p {
  font-size: 16px;
}

.fw-review--message {
  border-radius: 8px;
  background: #f8fff2;
  padding: 24px 32px;
}

@media only screen and (max-width: 576px) {
  .fw-review--message {
    padding: 14px 18px;
  }
}

.fw-review--message--profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2px;
}

@media only screen and (max-width: 576px) {
  .fw-review--message--profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.fw-review--message--profile figure {
  overflow: hidden;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.fw-review--message--profile figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-review--message--profile h5 {
  color: #212529;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%;
}

.fw-review--message--profile span {
  color: #757575;
  font-size: 14px;
  font-weight: 400;
  line-height: 30.8px;
}

.fw-client-reviews .swiper-pagination-bullet-active {
  background: #6db230;
}

.fw-reach {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 6rem 0;
}

@media only screen and (max-width: 576px) {
  .fw-reach {
    padding: 4rem 0;
  }
}

.fw-reach h2 {
  color: #fff;
  font-family: "Public Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}

@media only screen and (max-width: 576px) {
  .fw-reach h2 {
    font-size: 32px;
  }
}

.fw-reach p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
}

@media only screen and (max-width: 576px) {
  .fw-reach p {
    font-size: 16px;
    line-height: 98%;
  }
}

.fw-reach--overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(109, 178, 48, 0.7);
}

.fw-reach--form {
  background: #fff;
  -webkit-box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.1), 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.1), 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  border-radius: 6px;
}

@media only screen and (max-width: 922px) {
  .fw-reach--form {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-reach--form {
    padding: 28px 18px;
  }
}

.fw-reach--form h4 {
  color: #212121;
  font-size: 28px;
  font-weight: 700;
  line-height: 33.6px;
}

@media only screen and (max-width: 576px) {
  .fw-reach--form h4 {
    font-size: 20px;
  }
}

.fw-reach--form form input {
  border-bottom: 1px solid #ddd;
  padding: 10px 0.5px 10px 0px;
  color: #757575;
  font-size: 16px;
}

.fw-reach--form form textarea {
  border-bottom: 1px solid #ddd;
  padding: 10px 0.5px 10px 0px;
  color: #757575;
  font-size: 16px;
}

.fw-form {
  margin-top: -8rem;
}

@media only screen and (max-width: 576px) {
  .fw-form {
    margin-top: 0rem;
  }
}

.fw-input-half {
  width: 48%;
}

@media only screen and (max-width: 922px) {
  .fw-input-half {
    width: 100%;
  }
}

body {
  scroll-behavior: smooth;
}

.fw-branch {
  padding-top: 7rem;
  padding-bottom: 3rem;
}

@media only screen and (max-width: 992px) {
  .fw-branch {
    padding-bottom: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .fw-branch {
    padding-top: 6rem;
  }
}

.fw-branch p {
  color: #525252;
}

.fw-branch-sidebar {
  position: sticky;
  top: 8rem;
}

.fw-branch-sidebar a {
  color: #2e2f2f;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.fw-branch-sidebar a:hover {
  text-decoration: none;
  color: #6db230 !important;
}

.fw-branch-sidebar--active {
  color: #6db230 !important;
}

.fw-branch-tabs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  border-top: 1px solid #9fd570;
  padding-top: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-bottom: 16px;
  background-color: white;
}

.fw-branch-tabs {
  border-radius: 4px;
  background: #f8fff2;
  padding: 10px 20px;
  color: black;
}

@media only screen and (max-width: 768px) {
  .fw-branch-tabs {
    padding: 8px 5px;
  }
}

.fw-branch-tabs h4 {
  color: #2e2f2f;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .fw-branch-tabs h4 {
    font-size: 14px;
    line-height: 18px;
  }
}

.fw-branch-tabs p {
  margin-top: 2px;
  color: #2e2f2f;
  font-size: 14px;
  line-height: 24px;
}

.fw-branch-tabs:hover {
  background: #6db230;
}

.fw-branch-tabs:hover h4 {
  text-decoration: none;
  color: white;
}

.fw-branch-tabs:hover p {
  text-decoration: none;
  color: white;
}

.fw-branch-main {
  aspect-ratio: 1.7;
  border-radius: 6px;
  overflow: hidden;
}

.fw-branch-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branch-content .wp-block-media-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .fw-branch-content .wp-block-media-text {
    display: block;
  }
}

.fw-branch-content .wp-block-media-text figure {
  aspect-ratio: 1.4;
  overflow: hidden;
  margin-bottom: 0;
}

.fw-branch-content .wp-block-media-text figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branch-content .wp-block-media-text p {
  color: #525252;
}

.fw-branch-content .gutenberg__content {
  padding: 0 0rem !important;
}

.fw-branch-content .gutenberg__content p {
  margin-bottom: 0 !important;
}

.fw-branch-content .wp-block-media-text:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fw-branch-content .wp-block-media-text__media {
  width: 45%;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .fw-branch-content .wp-block-media-text__media {
    width: 100%;
  }
}

.fw-branch-content .wp-block-media-text__content {
  width: 52%;
}

@media only screen and (max-width: 768px) {
  .fw-branch-content .wp-block-media-text__content {
    width: 100%;
    margin-top: 14px;
  }
}

.fw-offers {
  margin: 5rem 0;
}

@media only screen and (max-width: 768px) {
  .fw-offers {
    margin: 3rem 0;
  }
}

.fw-offers--list ul {
  list-style: outside;
  padding-left: 20px;
}

.fw-offers--list li {
  color: #212121;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 7px;
}

@media only screen and (max-width: 768px) {
  .fw-offers--list li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
  }
}

.fw-offers--list li::marker {
  color: green;
}

.fw-branch-gallery {
  margin: 5rem 0;
}

@media only screen and (max-width: 768px) {
  .fw-branch-gallery {
    margin: 3rem 0;
  }
}

.fw-branch-gallery--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media only screen and (max-width: 992px) {
  .fw-branch-gallery--wrapper {
    gap: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .fw-branch-gallery--wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fw-branch-gallery--wrapper figure {
  aspect-ratio: 1.2;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 8px;
}

.fw-branch-gallery--wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branch-video {
  margin: 5rem 0;
}

@media only screen and (max-width: 768px) {
  .fw-branch-video {
    margin: 3rem 0;
  }
}

.fw-branch-video--wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media only screen and (max-width: 992px) {
  .fw-branch-video--wrapper {
    gap: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .fw-branch-video--wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-branch-video--wrapper figure {
  aspect-ratio: 1.7;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 8px;
}

.fw-branch-video--wrapper figure iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-branch-loaction-w--50 {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .fw-branch-loaction-w--50 {
    width: 100%;
  }
}

.fw-branch-contact {
  margin: 5rem 0;
  border-radius: 6px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .fw-branch-contact {
    margin: 3rem 0;
    display: block;
  }
}

.fw-branch-contact--details {
  background-color: #212529;
  padding: 40px 48px;
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .fw-branch-contact--details {
    padding: 44px 28px;
  }
}

@media only screen and (max-width: 768px) {
  .fw-branch-contact--details {
    width: 100%;
  }
}

.fw-branch-contact--details strong {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
}

@media only screen and (max-width: 768px) {
  .fw-branch-contact--details strong {
    font-size: 14px;
  }
}

.fw-branch-contact--details h2 {
  color: white;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  .fw-branch-contact--details h2 {
    margin-top: 0px;
  }
}

.fw-branch-contact--details--maps {
  height: 380px;
  width: 50%;
}

@media only screen and (max-width: 992px) {
  .fw-branch-contact--details--maps {
    height: 386px;
  }
}

@media only screen and (max-width: 768px) {
  .fw-branch-contact--details--maps {
    width: 100%;
    height: 260px;
  }
}

.fw-branch-tabs {
  border: none !important;
  outline: none !important;
}

.tab-button-active {
  background: #6db230 !important;
  color: white;
}

.tab-button-active h4 {
  color: white;
}

.tab-button-active p {
  color: white;
}

.tabcontent {
  position: relative;
}

.fw-course-py-6 {
  padding: 5rem 0;
}

@media only screen and (max-width: 992px) {
  .fw-course-py-6 {
    padding: 4rem 0;
  }
}

.fw-course-mb--6 {
  margin-bottom: 6rem;
}

@media only screen and (max-width: 768px) {
  .fw-course-mb--6 {
    margin-bottom: 4rem;
  }
}

@media only screen and (max-width: 992px) {
  .fw-course-mb--6 {
    margin-bottom: 5rem;
  }
}

.fw-course-mb--4 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 992px) {
  .fw-course-mb--4 {
    margin-bottom: 3rem;
  }
}

.fw-course-content--mt {
  margin-top: 36px;
}

@media only screen and (max-width: 768px) {
  .fw-course-content--mt {
    margin-top: 28px;
  }
}

.fw-outcome-half {
  position: absolute;
  left: 0;
  top: 0;
}

.fw-outcome {
  position: absolute;
  right: 0;
  top: 0;
}

.fw-btn--green {
  border-radius: 4px;
  background: #6db230;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  border: 1px solid #6db230;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 768px) {
  .fw-btn--green {
    padding: 4px 14px;
  }
}

.fw-btn--green svg {
  fill: white;
}

.fw-btn--green:hover {
  text-decoration: none;
  background: white;
  color: #6db230;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}

.fw-btn--green:hover svg {
  fill: #6db230 !important;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}

.fw-programmes--banner {
  padding-top: 11rem;
  padding-bottom: 6rem;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.fw-programmes--highlight {
  padding: 8px 14px;
  border-radius: 50px;
  border: 0.6px solid #fff;
  background: rgba(72, 72, 72, 0.3);
}

@media only screen and (max-width: 768px) {
  .fw-programmes--highlight {
    padding: 6px 10px;
  }
}

.fw-reach figure {
  aspect-ratio: 0.6;
  overflow: hidden;
  border-radius: 15px;
}

.fw-reach figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-reach p {
  color: #212529;
  font-size: 16px;
  line-height: 150%;
}

.fw-reach--cta-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(161, 161, 161, 0.5);
          box-shadow: 0px 2px 4px 0px rgba(161, 161, 161, 0.5);
}

.fw-reach--cta-card figure {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
}

@media only screen and (max-width: 768px) {
  .fw-reach--cta-card figure {
    aspect-ratio: 1.5;
    overflow: hidden;
  }
}

.fw-reach--cta-card p {
  color: #212529;
}

.fw-course--overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .fw-course--overview {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .fw-course--overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fw-course--overview--card {
  background-color: #f0f7ea;
  padding: 20px 24px;
  border-radius: 10px;
}

.fw-course--overview--card h4 {
  color: #353c42;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.fw-course--overview--card p {
  color: #757575;
}

.fw-prospects {
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.fw-prospects--list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

@media only screen and (max-width: 768px) {
  .fw-prospects--list ul {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 6px;
  }
}

.fw-prospects--list li {
  padding-left: 30px;
  margin-bottom: 4px;
  position: relative;
  list-style: none;
  color: white;
}

.fw-prospects--list li:before {
  position: absolute;
  left: -2px;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_1032_811" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><rect width="24" height="24" fill="%23D9D9D9"/></mask><g mask="url(%23mask0_1032_811)"><path d="M13.8461 17.6534L12.7923 16.5688L16.6116 12.7495H4.5V11.2496H16.6116L12.7923 7.4303L13.8461 6.3457L19.5 11.9995L13.8461 17.6534Z" fill="white"/></g></svg>');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fw-prospect--girl {
  position: absolute;
  left: 0;
  bottom: -6rem;
}

.fw-prospect--girl img {
  height: 100%;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fw-key--features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  row-gap: 40px;
}

@media only screen and (max-width: 768px) {
  .fw-key--features {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 992px) {
  .fw-key--features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fw-key--features--card {
  border-radius: 20px;
  border: 1px solid var(--Light-Gray, #d6d6d6);
  background: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
  padding: 20px 16px;
}

.fw-key--features--card h4 {
  color: #6db230;
  font-size: 18px;
}

.fw-key--features--card p {
  color: #757575;
}

.fw-outcomes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media only screen and (max-width: 992px) {
  .fw-outcomes {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-outcomes {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.fw-outcomes--card {
  border-radius: 10px;
  background: #f9faf7;
  padding: 16px 14px;
}

.fw-outcomes--card span {
  color: #6db230;
  font-size: 27px;
  font-weight: 700;
  line-height: 30.8px;
}

.fw-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 576px) {
  .fw-resources {
    gap: 8px;
  }
}

.fw-resources figure {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 0.95;
  width: 100%;
}

.fw-resources figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-course-download--card {
  border-radius: 8px;
  background: #f8fff2;
  padding: 40px 32px;
}

@media only screen and (max-width: 576px) {
  .fw-course-download--card {
    padding: 12px 8px;
  }
}

.fw-course-download--size {
  color: #757575;
}

.fw-other-course {
  padding-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media only screen and (max-width: 768px) {
  .fw-other-course {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .fw-other-course {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fw-other-course--card {
  padding: 24px 18px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.09);
}

.fw-other-course--card:hover {
  text-decoration: none;
}

.fw-other-course--card:hover h3 {
  color: #2e2f2f;
}

@media only screen and (max-width: 768px) {
  .fw-other-course--card {
    padding: 16px 12px;
  }
}

.fw-other-course--card h3 {
  color: #2e2f2f;
  font-size: 22px;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .fw-other-course--card h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 992px) {
  .fw-other-course--card h3 {
    font-size: 20px;
  }
}

.fw-other-course p {
  color: #757575;
}

.fw-training-mb--4 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 770px) {
  .fw-training-mb--4 {
    margin-bottom: 3rem;
  }
}

.fw-arrow-rotate {
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.fw-service--banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.fw-service--card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 40px;
}

@media only screen and (max-width: 992px) {
  .fw-service--card_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-service--card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-service--card {
  padding: 26px 18px;
  border-radius: 10px;
  border: 1px solid #cdcdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
}

.fw-service--card:hover {
  text-decoration: none !important;
}

.fw-service--card:hover .fw-arrow-rotate {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

@media only screen and (max-width: 992px) {
  .fw-service--card {
    padding: 18px 14px;
  }
}

.fw-service--card--decor {
  height: 20px;
  width: 20px;
  border-radius: 0px 6.667px;
  background: #6db230;
}

.fw-service--card h2 {
  color: #2e2f2f;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.fw-service--card h2 span {
  color: #6db230;
}

@media only screen and (max-width: 992px) {
  .fw-service--card h2 {
    font-size: 20px;
  }
}

.fw-service--card figure {
  aspect-ratio: 1.5;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .fw-service--card figure {
    margin-top: 14px;
    aspect-ratio: 1.6;
  }
}

.fw-service--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-service--card--btn {
  margin-top: 20px;
  margin-left: 4px;
}

@media only screen and (max-width: 992px) {
  .fw-service--card--btn {
    margin-top: 16px;
  }
}

.fw-service--card--btn p {
  color: #2e540c;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

@media only screen and (max-width: 992px) {
  .fw-service--card--btn p {
    font-size: 16px;
  }
}

.fw-service--card:hover h2 {
  text-decoration: none;
}

.fw-service--card:hover--btn p {
  text-decoration: none;
}

.fw-service--additional h2 {
  font-weight: bold;
}

.fw-service--additional--card_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 28px;
}

@media only screen and (max-width: 992px) {
  .fw-service--additional--card_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-service--additional--card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-service--additional--card {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
}

.fw-service--additional--card:hover {
  text-decoration: none !important;
}

.fw-service--additional--card:hover .fw-arrow-rotate {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}

.fw-service--additional--card h3 {
  color: #6db230;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.fw-service--additional--card p {
  margin-top: 7px;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

@media only screen and (max-width: 992px) {
  .fw-service--additional--card p {
    margin-top: 7px;
  }
}

.fw-service--additional--card figure {
  aspect-ratio: 1.4;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}

@media only screen and (max-width: 992px) {
  .fw-service--additional--card figure {
    aspect-ratio: 1.6;
  }
}

.fw-service--additional--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-service--additional--card--btn p {
  color: #2e540c !important;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 150%;
  margin-top: 0;
  margin-left: 4px;
}

@media only screen and (max-width: 992px) {
  .fw-service--additional--card--btn p {
    margin-top: 16px;
    margin-left: 4px;
  }
}

.fw-service--whyus h2 {
  font-weight: bold;
}

.fw-service--whyus p {
  color: #757575;
  width: 75%;
}

@media only screen and (max-width: 992px) {
  .fw-service--whyus p {
    width: 100%;
  }
}

.fw-service--whyus figure {
  height: 50vh;
  width: 100%;
  margin-top: 28px;
}

@media only screen and (max-width: 992px) {
  .fw-service--whyus figure {
    height: 30vh;
  }
}

@media only screen and (max-width: 576px) {
  .fw-service--whyus figure {
    height: 20vh;
  }
}

.fw-service--whyus figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-service--aspect h2 {
  font-weight: bold;
}

.fw-service--aspect--card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 28px;
}

@media only screen and (max-width: 992px) {
  .fw-service--aspect--card_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    margin-top: 28px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-service--aspect--card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-service--aspect--card {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
}

.fw-service--aspect--card--decor {
  height: 40px;
  width: 40px;
}

.fw-service--aspect--card h3 {
  color: #6db230;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}

.fw-service--aspect--card p {
  margin-top: 12px;
  color: #757575;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.fw-service--aspect--card figure {
  aspect-ratio: 1.5;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 0;
}

.fw-service--aspect--card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-service--video iframe {
  width: 100%;
  aspect-ratio: 1.8;
  border-radius: 8px;
  overflow: hidden;
}

.fw-service--gallery h2 {
  font-weight: bold;
}

.fw-service--gallery--card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 28px;
}

@media only screen and (max-width: 992px) {
  .fw-service--gallery--card_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.fw-service--gallery--card_container figure {
  aspect-ratio: 1.8;
  gap: 28px;
  overflow: hidden;
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .fw-service--gallery--card_container figure {
    aspect-ratio: 1.5;
  }
}

.fw-service--gallery--card_container figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-opd-mb--4 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 770px) {
  .fw-opd-mb--4 {
    margin-bottom: 3rem;
  }
}

.fw-opd {
  position: relative;
}

.fw-opd--overview figure {
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: 10px;
}

.fw-opd--overview figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-opd--overview h2 {
  font-weight: bold;
  color: #212529;
}

.fw-opd--overview p {
  color: #757575;
}

.fw-opd--why {
  position: relative;
}

.fw-opd--why--bg {
  padding: 80px 0;
}

@media only screen and (max-width: 992px) {
  .fw-opd--why--bg {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 576px) {
  .fw-opd--why--bg {
    padding: 40px 0;
  }
}

.fw-opd--why h2 {
  font-weight: bold;
  color: #fcfffa;
}

.fw-opd--why--editor {
  margin-top: 28px;
  width: 75%;
}

@media only screen and (max-width: 992px) {
  .fw-opd--why--editor {
    width: 100%;
  }
}

.fw-opd--why--editor p {
  color: #fcfffa;
}

.fw-opd--why--editor ul {
  margin-top: 32px;
}

.fw-opd--why--editor ul li {
  color: #fcfffa;
  position: relative;
  list-style: none;
  padding-left: 24px;
  margin-top: 24px;
}

.fw-opd--why--editor ul li:before {
  position: absolute;
  left: -2px;
  top: 5px;
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 0px 3.91px;
  background-color: #fcfffa;
}

@media only screen and (max-width: 992px) {
  .fw-opd--why--editor ul {
    margin-top: 16px;
  }

  .fw-opd--why--editor ul li {
    padding-left: 24px;
    margin-top: 14px;
  }

  .fw-opd--why--editor ul li:before {
    left: -2px;
    top: 5px;
    height: 8px;
    width: 8px;
  }
}

.fw-opd--tools h2 {
  font-weight: bold;
  color: #2e2f2f;
}

.fw-opd--tools--card_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 24px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 40px;
}

@media only screen and (max-width: 992px) {
  .fw-opd--tools--card_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-top: 24px;
  }
}

@media only screen and (max-width: 576px) {
  .fw-opd--tools--card_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.fw-opd--tools--card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: 14px;
}

.fw-opd--tools--card h3 {
  color: #6db230;
  font-weight: 700;
  font-size: 24px;
}

.fw-opd--tools--card p {
  margin-top: 12px;
  color: #757575;
}

.fw-opd--sidemenu {
  margin-left: 24px;
  position: sticky;
  top: 32px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  background: #f6f6f6;
  padding: 18px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media only screen and (max-width: 1280px) {
  .fw-opd--sidemenu {
    margin-left: 22px;
  }
}

.fw-opd--sidemenu button {
  width: 100%;
  color: #757575;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  background-color: #f6f6f6;
  text-align: left;
  border: 1px solid #f6f6f6;
  outline: none;
}

.fw-opd--sidemenu button:hover {
  border: 1px solid #e3f5d4;
  background: #f4fbef;
}

.button-active {
  border: 1px solid #e3f5d4 !important;
  background: #f4fbef !important;
  color: #497d1b !important;
}

.form-select {
  border: 1px solid #63a54d;
  padding: 10px;
  border-radius: 10px;
  color: #63a54d;
  position: sticky;
  top: 10px;
  z-index: 10;
}

.bg-green {
  background: #63a54d;
}

.fw-opd-why-us-logo {
  position: absolute;
  right: 0;
  top: 0;
}

.fw-opd-why-us-logo img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 576px) {
  .fw-opd-why-us-logo {
    display: none;
  }
}

.fw-opd-mt {
  margin-top: 8rem;
}

.fw-ipd-mb--4 {
  margin-bottom: 4rem;
}

@media only screen and (max-width: 770px) {
  .fw-ipd-mb--4 {
    margin-bottom: 3rem;
  }
}

.fw-ipd {
  position: relative;
}

.fw-ipd h2 {
  font-weight: 700;
}

.fw-ipd--overview figure {
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: 10px;
}

.fw-ipd--overview figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-ipd--overview h2 {
  font-weight: bold;
  color: #212529;
}

.fw-ipd--overview h3 {
  font-size: 24px;
  font-weight: bold;
  color: #2e2f2f;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--overview h3 {
    font-size: 20px;
  }
}

.fw-ipd--overview p {
  color: #757575;
}

.fw-ipd--editor {
  margin-top: 14px;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor {
    margin-top: 6px;
  }
}

.fw-ipd--editor p {
  color: #757575;
}

.fw-ipd--editor figure {
  margin-top: 22px;
  aspect-ratio: 1.8;
  overflow: hidden;
  border-radius: 10px;
}

.fw-ipd--editor figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fw-ipd--editor ul {
  margin-top: 12px;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ul {
    margin-top: 6px;
  }
}

.fw-ipd--editor ul li {
  color: #757575;
  position: relative;
  list-style: none;
  padding-left: 24px;
  margin-top: 12px;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ul li {
    margin-top: 6px !important;
  }
}

.fw-ipd--editor ul li:before {
  position: absolute;
  left: 2px;
  top: 5px;
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 0px 3.91px;
  background-color: #6db230;
}

.fw-ipd--editor ol {
  margin-top: 22px;
  list-style-type: none;
  counter-reset: ordered;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ol {
    margin-top: 12px !important;
  }
}

.fw-ipd--editor ol li {
  padding: 28px 14px;
  padding-left: 68px !important;
  row-gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f9faf7;
  border-radius: 10px;
  color: #757575;
  position: relative;
  padding-left: 24px;
  margin-top: 12px;
}

.fw-ipd--editor ol li::before {
  margin-top: -5px;
  color: #6db230;
  content: "0" counter(ordered);
  counter-increment: ordered;
  display: inline-block;
  font-weight: 700;
  font-size: 26px;
  position: absolute;
  left: 16px;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ol li::before {
    margin-top: -1px;
    font-size: 16px !important;
    left: 8px;
  }
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ol li {
    padding: 14px 10px;
    padding-left: 36px !important;
  }
}

.fw-ipd--editor ol li span {
  font-weight: 700;
}

.fw-ipd--editor ol li.counter {
  color: #6db230;
  font-size: 27px;
  font-weight: 700;
}

@media only screen and (max-width: 770px) {
  .fw-ipd--editor ol li.counter {
    font-size: 18px !important;
  }
}

@media only screen and (max-width: 992px) {
  .fw-ipd--editor ul {
    margin-top: 16px;
  }

  .fw-ipd--editor ul li {
    padding-left: 24px;
    margin-top: 14px;
  }

  .fw-ipd--editor ul li:before {
    left: -2px;
    top: 5px;
    height: 8px;
    width: 8px;
  }
}

.fw-ipd--editor--objective {
  margin-top: 14px;
}

.fw-ipd--editor--objective p {
  color: #757575;
}

.fw-ipd--tools h2 {
  font-weight: bold;
  color: #2e2f2f;
}

.fw-ipd--tools--card_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 42px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 40px;
}

@media only screen and (max-width: 576px) {
  .fw-ipd--tools--card_container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-top: 24px;
  }
}

.fw-ipd--tools--card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: 14px;
}

.fw-ipd--tools--card h3 {
  color: #6db230;
  font-weight: 700;
  font-size: 24px;
}

.fw-ipd--tools--card p {
  margin-top: 12px;
  color: #757575;
}

.fw-ipd--sidemenu {
  margin-left: 24px;
  position: sticky;
  top: 32px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  background: #f6f6f6;
  padding: 18px 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media only screen and (max-width: 1280px) {
  .fw-ipd--sidemenu {
    margin-left: 22px;
  }
}

.fw-ipd--sidemenu button {
  width: 100%;
  color: #757575;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  background-color: #f6f6f6;
  text-align: left;
  border: 1px solid #f6f6f6;
  outline: none;
}

.fw-ipd--sidemenu button:hover {
  border: 1px solid #e3f5d4;
  background: #f4fbef;
}

.ipd--card_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 42px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 40px;
}

@media only screen and (max-width: 576px) {
  .ipd--card_container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    margin-top: 24px;
  }
}

.ipd--card {
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  padding: 14px;
}

.ipd--card--icon {
  width: 44px;
  height: 44px;
}

.ipd--card h3 {
  color: #353c42;
  font-weight: 700;
  font-size: 24px;
}

.ipd--card p {
  margin-top: 12px;
  color: #757575;
}

.ipd--card ul {
  margin-top: 7px;
}

.ipd--card li {
  list-style: inside;
  color: #757575;
  font-size: 14px;
  margin-top: 4px;
}

.ipd--room {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 28px;
}

@media only screen and (max-width: 770px) {
  .ipd--room {
    margin-top: 8px;
  }
}

.ipd--room figure {
  aspect-ratio: 1.5;
  width: 100% !important;
  height: 500px !important;
  margin-bottom: 0;
}

@media only screen and (max-width: 770px) {
  .ipd--room figure {
    height: 300px !important;
  }
}

.ipd--room figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ipd--room--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-left: 44px;
}

.ipd--room--bg h3 {
  color: var(--White, #fcfffa);
  font-size: 39px;
  font-weight: 700;
}

.ipd--room--bg ol {
  margin-top: 22px;
}

.ipd--room--bg ol li {
  color: var(--White, #fcfffa);
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px;
  list-style-position: inside;
}

.button-active {
  border: 1px solid #e3f5d4 !important;
  background: #f4fbef !important;
  color: #497d1b !important;
}

.form-select {
  border: 1px solid #63a54d;
  padding: 10px;
  border-radius: 10px;
  color: #63a54d;
  position: sticky;
  top: 10px;
  z-index: 10;
}

.fw--counter {
  width: 70px;
}

.fw--counter span {
  color: #6db230;
  font-size: 27px;
  font-weight: 700;
}

.swiper-block-next,
.swiper-block-prev {
  cursor: pointer;
}

.fw-pagination-wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  padding: 0 20px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.swiper-slide {
  position: relative;
}

.slider-title {
  position: absolute;
  bottom: 16px;
  left: 10px;
  color: var(--White, #fcfffa);
  font-size: 24px;
  font-weight: 700;
}

@media only screen and (max-width: 770px) {
  .slider-title {
    font-size: 18px !important;
  }
}

.swiper-pagination {
  bottom: -1.5rem !important;
}

.swiper-pagination-bullet-active {
  background-color: #63a54d !important;
}

.fw-pagination-category-wrapper {
  position: absolute;
  z-index: 10;
  bottom: -2rem;
  left: 50%;
  width: 200px !important;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.swiper-block-category-next,
.swiper-block-category-prev {
  cursor: pointer;
}

.fw-block-category-heading h3 {
  font-size: 20px;
  font-weight: 700;
}

.ipd-slider-w {
  width: 50%;
}

@media only screen and (max-width: 770px) {
  .ipd-slider-w {
    width: 100% !important;
  }
}

.fw-object-cover {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.fw-objective-logo {
  position: relative;
}

.fw-objective-logo--right {
  position: absolute;
  right: -50%;
  aspect-ratio: 0.9 !important;
  top: 20%;
  z-index: -1;
  opacity: 0.2;
}

.fw-objective-logo--right img {
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .fw-objective-logo--right {
    display: none;
  }
}

.fw-objective-logo--left {
  position: absolute;
  left: -70%;
  top: 20%;
  z-index: -1;
  opacity: 0.2;
  aspect-ratio: 0.9 !important;
}

.fw-objective-logo--left img {
  width: 100%;
}

@media only screen and (max-width: 992px) {
  .fw-objective-logo--left {
    display: none;
  }
}

.fw-requires {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  position: relative;
}

@media only screen and (max-width: 576px) {
  .fw-requires {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fw-requires--text {
  width: 65%;
}

@media only screen and (max-width: 576px) {
  .fw-requires--text {
    width: 100%;
  }
}

.fw-requires--image {
  width: 35%;
}

.fw-requires--image figure {
  aspect-ratio: 0.7;
  overflow: hidden;
  border-radius: 10px;
  position: sticky;
  top: 1rem;
}

@media only screen and (max-width: 576px) {
  .fw-requires--image figure {
    aspect-ratio: 1.6;
  }
}

@media only screen and (max-width: 576px) {
  .fw-requires--image {
    width: 100%;
  }
}

.fw-banner-title {
  font-size: 18px !important;
}

@media only screen and (max-width: 992px) {
  .fw-banner-title {
    font-size: 15px !important;
  }
}

