.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #354256 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #354256 !important;
  border-color: #354256 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #141920 !important;
  border-color: #141920 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #141920 !important;
  border-color: #141920 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #354256;
  color: #354256;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #141920 !important;
  background-color: transparent!important;
  border-color: #141920 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #354256 !important;
  border-color: #354256 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #354256 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0e1217 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #354256;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #354256;
  border-color: #354256;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #354256;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #687fa2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #354256 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #354256;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #354256;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #354256;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #354256;
  border-bottom-color: #354256;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #354256 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23354256' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u4aCAviVtG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aCAviVtG nav.navbar {
  position: fixed;
}
.cid-u4aCAviVtG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aCAviVtG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aCAviVtG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aCAviVtG .dropdown-item:hover,
.cid-u4aCAviVtG .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aCAviVtG .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aCAviVtG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aCAviVtG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aCAviVtG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aCAviVtG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aCAviVtG .nav-link {
  position: relative;
}
.cid-u4aCAviVtG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aCAviVtG .container {
    flex-wrap: wrap;
  }
}
.cid-u4aCAviVtG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aCAviVtG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aCAviVtG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aCAviVtG .dropdown-menu,
.cid-u4aCAviVtG .navbar.opened {
  background: #354256 !important;
}
.cid-u4aCAviVtG .nav-item:focus,
.cid-u4aCAviVtG .nav-link:focus {
  outline: none;
}
.cid-u4aCAviVtG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aCAviVtG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aCAviVtG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aCAviVtG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aCAviVtG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aCAviVtG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aCAviVtG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aCAviVtG .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aCAviVtG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aCAviVtG .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aCAviVtG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aCAviVtG .navbar.collapsed {
  justify-content: center;
}
.cid-u4aCAviVtG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aCAviVtG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aCAviVtG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aCAviVtG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aCAviVtG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aCAviVtG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aCAviVtG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aCAviVtG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aCAviVtG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aCAviVtG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aCAviVtG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aCAviVtG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aCAviVtG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aCAviVtG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aCAviVtG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aCAviVtG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aCAviVtG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aCAviVtG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aCAviVtG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aCAviVtG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aCAviVtG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aCAviVtG .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aCAviVtG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aCAviVtG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aCAviVtG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aCAviVtG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aCAviVtG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aCAviVtG .dropdown-item.active,
.cid-u4aCAviVtG .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aCAviVtG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aCAviVtG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aCAviVtG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aCAviVtG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aCAviVtG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aCAviVtG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aCAviVtG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aCAviVtG .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aCAviVtG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aCAviVtG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aCAviVtG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aCAviVtG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aCAviVtG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aCAviVtG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aCAviVtG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aCAviVtG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aCAviVtG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aCAviVtG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aCAviVtG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aCAviVtG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aCAviVtG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aCAviVtG .navbar {
    height: 70px;
  }
  .cid-u4aCAviVtG .navbar.opened {
    height: auto;
  }
  .cid-u4aCAviVtG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aCAviVtG .nav-link:hover,
.cid-u4aCAviVtG .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aEAnb1hV {
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4aEAnb1hV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aEAnb1hV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aEAnb1hV .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aEAnb1hV .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aEAnb1hV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aEAnb1hV .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aEAnb1hV .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aEAnb1hV .mbr-section-title {
  color: #fafafa;
}
.cid-u4aEAnb1hV .mbr-text,
.cid-u4aEAnb1hV .mbr-section-btn {
  color: #fafafa;
}
.cid-u4aCECzhOU {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4aCECzhOU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aCECzhOU .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-u4aCECzhOU .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4aCECzhOU .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-u4aCECzhOU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aCECzhOU .item-wrapper {
  background: #354256;
  padding: 2.25rem;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-u4aCECzhOU .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aCECzhOU .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-u4aCECzhOU .card-title,
.cid-u4aCECzhOU .iconfont-wrapper {
  color: #000000;
}
.cid-u4aCECzhOU .card-text {
  color: #000000;
}
.cid-u4aCECzhOU .content-head {
  max-width: 800px;
}
.cid-u4aCECzhOU .mbr-section-title {
  color: #000000;
}
.cid-u4aCECzhOU .card-text,
.cid-u4aCECzhOU .mbr-section-btn {
  color: #fafafa;
  border-radius: 12px;
}
.cid-u4aCECzhOU .card-title,
.cid-u4aCECzhOU .img-wrapper {
  color: #fafafa;
}
.cid-u4aD239trI {
  background-color: #ffffff;
}
.cid-u4aD239trI .wave1 {
  fill: #334355;
}
.cid-u4aD239trI .wave2 {
  fill: #334355;
  opacity: 0.5;
}
.cid-u4aD239trI .wave3,
.cid-u4aD239trI .wave4 {
  fill: #334355;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-qSwNvdH5hS .hidden {
  display: none;
}
.cid-u4aGoE088S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aGoE088S nav.navbar {
  position: fixed;
}
.cid-u4aGoE088S .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aGoE088S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aGoE088S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aGoE088S .dropdown-item:hover,
.cid-u4aGoE088S .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aGoE088S .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aGoE088S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aGoE088S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aGoE088S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aGoE088S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aGoE088S .nav-link {
  position: relative;
}
.cid-u4aGoE088S .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aGoE088S .container {
    flex-wrap: wrap;
  }
}
.cid-u4aGoE088S .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aGoE088S .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aGoE088S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aGoE088S .dropdown-menu,
.cid-u4aGoE088S .navbar.opened {
  background: #354256 !important;
}
.cid-u4aGoE088S .nav-item:focus,
.cid-u4aGoE088S .nav-link:focus {
  outline: none;
}
.cid-u4aGoE088S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aGoE088S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aGoE088S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aGoE088S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aGoE088S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aGoE088S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aGoE088S .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aGoE088S .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aGoE088S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aGoE088S .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aGoE088S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aGoE088S .navbar.collapsed {
  justify-content: center;
}
.cid-u4aGoE088S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aGoE088S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aGoE088S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aGoE088S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aGoE088S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aGoE088S .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aGoE088S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aGoE088S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aGoE088S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aGoE088S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aGoE088S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aGoE088S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aGoE088S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aGoE088S .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aGoE088S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aGoE088S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aGoE088S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aGoE088S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aGoE088S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aGoE088S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aGoE088S .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aGoE088S .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aGoE088S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aGoE088S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aGoE088S .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aGoE088S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aGoE088S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aGoE088S .dropdown-item.active,
.cid-u4aGoE088S .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aGoE088S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aGoE088S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aGoE088S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aGoE088S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aGoE088S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aGoE088S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aGoE088S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aGoE088S .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aGoE088S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aGoE088S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aGoE088S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aGoE088S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aGoE088S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aGoE088S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aGoE088S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aGoE088S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aGoE088S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aGoE088S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aGoE088S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aGoE088S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aGoE088S .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aGoE088S .navbar {
    height: 70px;
  }
  .cid-u4aGoE088S .navbar.opened {
    height: auto;
  }
  .cid-u4aGoE088S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aGoE088S .nav-link:hover,
.cid-u4aGoE088S .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aGoEYBXt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/whatsapp-image-2024-01-20-at-15.38.29-2.webp");
}
.cid-u4aGoEYBXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aGoEYBXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aGoEYBXt .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aGoEYBXt .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aGoEYBXt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aGoEYBXt .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aGoEYBXt .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aGoEYBXt .mbr-section-title {
  color: #fafafa;
}
.cid-u4aGoEYBXt .mbr-text,
.cid-u4aGoEYBXt .mbr-section-btn {
  color: #fafafa;
}
.cid-u4aGVDZxJM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u4aGVDZxJM .mbr-section-subtitle {
  color: #767676;
}
.cid-u4aGWUxFJ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u4aGWUxFJ6 img {
  width: auto;
}
.cid-u4aGWUxFJ6 .button {
  background-color: #354256;
  transition-duration: 1s;
  border: none;
  color: whitesmoke;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  margin: 20px 40px;
  cursor: pointer;
}
.cid-u4aGWUxFJ6 .button1 {
  border-radius: 20px;
  width: 80%;
  height: 120px;
}
.cid-u4aGWUxFJ6 .button1:hover {
  background-color: #04AA6D;
  color: white;
}
.cid-u4aGZcn46h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u4aGZcn46h .mbr-section-subtitle {
  color: #767676;
}
.cid-u4aGYrsv1g {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u4aGYrsv1g img {
  width: auto;
}
.cid-u4aGYrsv1g .button {
  background-color: #04AA6D;
  transition-duration: 1s;
  border: none;
  color: whitesmoke;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  margin: 20px 40px;
  cursor: pointer;
}
.cid-u4aGYrsv1g .button1 {
  border-radius: 20px;
  width: 80%;
  height: 120px;
}
.cid-u4aGYrsv1g .button1:hover {
  background-color: #354256;
  color: white;
}
.cid-u4aGoGsnLL {
  background-color: #ffffff;
}
.cid-u4aGoGsnLL .wave1 {
  fill: #334355;
}
.cid-u4aGoGsnLL .wave2 {
  fill: #334355;
  opacity: 0.5;
}
.cid-u4aGoGsnLL .wave3,
.cid-u4aGoGsnLL .wave4 {
  fill: #334355;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Hsj1md5y .hidden {
  display: none;
}
.cid-u4aIBolgkK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aIBolgkK nav.navbar {
  position: fixed;
}
.cid-u4aIBolgkK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIBolgkK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aIBolgkK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aIBolgkK .dropdown-item:hover,
.cid-u4aIBolgkK .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aIBolgkK .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aIBolgkK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aIBolgkK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aIBolgkK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aIBolgkK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aIBolgkK .nav-link {
  position: relative;
}
.cid-u4aIBolgkK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIBolgkK .container {
    flex-wrap: wrap;
  }
}
.cid-u4aIBolgkK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIBolgkK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aIBolgkK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aIBolgkK .dropdown-menu,
.cid-u4aIBolgkK .navbar.opened {
  background: #354256 !important;
}
.cid-u4aIBolgkK .nav-item:focus,
.cid-u4aIBolgkK .nav-link:focus {
  outline: none;
}
.cid-u4aIBolgkK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aIBolgkK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aIBolgkK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aIBolgkK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIBolgkK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aIBolgkK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aIBolgkK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aIBolgkK .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aIBolgkK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aIBolgkK .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aIBolgkK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aIBolgkK .navbar.collapsed {
  justify-content: center;
}
.cid-u4aIBolgkK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aIBolgkK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aIBolgkK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aIBolgkK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aIBolgkK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aIBolgkK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aIBolgkK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aIBolgkK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aIBolgkK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aIBolgkK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aIBolgkK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aIBolgkK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aIBolgkK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aIBolgkK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aIBolgkK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aIBolgkK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aIBolgkK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aIBolgkK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aIBolgkK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aIBolgkK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aIBolgkK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aIBolgkK .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aIBolgkK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aIBolgkK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aIBolgkK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aIBolgkK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aIBolgkK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aIBolgkK .dropdown-item.active,
.cid-u4aIBolgkK .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aIBolgkK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aIBolgkK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aIBolgkK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aIBolgkK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aIBolgkK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aIBolgkK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aIBolgkK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aIBolgkK .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aIBolgkK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aIBolgkK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aIBolgkK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aIBolgkK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIBolgkK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIBolgkK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aIBolgkK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIBolgkK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aIBolgkK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aIBolgkK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIBolgkK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aIBolgkK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aIBolgkK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aIBolgkK .navbar {
    height: 70px;
  }
  .cid-u4aIBolgkK .navbar.opened {
    height: auto;
  }
  .cid-u4aIBolgkK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aIBolgkK .nav-link:hover,
.cid-u4aIBolgkK .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aIBoOI19 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4aIBoOI19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aIBoOI19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aIBoOI19 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aIBoOI19 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIBoOI19 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aIBoOI19 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aIBoOI19 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIBoOI19 .mbr-section-title {
  color: #fafafa;
}
.cid-u4aIBoOI19 .mbr-text,
.cid-u4aIBoOI19 .mbr-section-btn {
  color: #fafafa;
}
.cid-u6NtM9QPvh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u6NtM9QPvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6NtM9QPvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6NtM9QPvh .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u6NtM9QPvh .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6NtM9QPvh .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u6NtM9QPvh .card-wrapper {
    padding: 4rem;
  }
}
.cid-u6NtM9QPvh .mbr-text,
.cid-u6NtM9QPvh .mbr-section-btn {
  text-align: left;
}
.cid-u6NtM9QPvh .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6NtM9QPvh .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u6NtM9QPvh .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u6NtM9QPvh .img-wrapper {
  display: flex;
}
.cid-u6NtM9QPvh .card-text {
  text-align: center;
}
.cid-u6NtM9QPvh .card-title {
  text-align: center;
}
.cid-u6NtM9QPvh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u6O4gba2Te {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u6O4gba2Te .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6O4gba2Te .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6O4gba2Te .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u6O4gba2Te .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6O4gba2Te .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u6O4gba2Te .card-wrapper {
    padding: 4rem;
  }
}
.cid-u6O4gba2Te .mbr-text,
.cid-u6O4gba2Te .mbr-section-btn {
  text-align: left;
}
.cid-u6O4gba2Te .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u6O4gba2Te .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u6O4gba2Te .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u6O4gba2Te .img-wrapper {
  display: flex;
}
.cid-u6O4gba2Te .card-text {
  text-align: center;
}
.cid-u6O4gba2Te .card-title {
  text-align: center;
}
.cid-u6O4gba2Te a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u4aLlm6nGe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u4aLlm6nGe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aLlm6nGe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aLlm6nGe .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u4aLlm6nGe .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u4aLlm6nGe .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aLlm6nGe .card-wrapper {
    padding: 4rem;
  }
}
.cid-u4aLlm6nGe .mbr-text,
.cid-u4aLlm6nGe .mbr-section-btn {
  text-align: left;
}
.cid-u4aLlm6nGe .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u4aLlm6nGe .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u4aLlm6nGe .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u4aLlm6nGe .img-wrapper {
  display: flex;
}
.cid-u4aLlm6nGe .card-text {
  text-align: center;
}
.cid-u4aLlm6nGe .card-title {
  text-align: center;
}
.cid-u4aLlm6nGe a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u4aLyr0tod {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u4aLyr0tod .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aLyr0tod .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aLyr0tod .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u4aLyr0tod .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u4aLyr0tod .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aLyr0tod .card-wrapper {
    padding: 4rem;
  }
}
.cid-u4aLyr0tod .mbr-text,
.cid-u4aLyr0tod .mbr-section-btn {
  text-align: left;
}
.cid-u4aLyr0tod .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u4aLyr0tod .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u4aLyr0tod .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u4aLyr0tod .img-wrapper {
  display: flex;
}
.cid-u4aLyr0tod .card-text {
  text-align: center;
}
.cid-u4aLyr0tod .card-title {
  text-align: center;
}
.cid-u4aLyr0tod a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nVo8suwT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nVo8suwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nVo8suwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nVo8suwT .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nVo8suwT .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nVo8suwT .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nVo8suwT .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nVo8suwT .mbr-text,
.cid-u5nVo8suwT .mbr-section-btn {
  text-align: left;
}
.cid-u5nVo8suwT .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nVo8suwT .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nVo8suwT .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nVo8suwT .img-wrapper {
  display: flex;
}
.cid-u5nVo8suwT .card-text {
  text-align: center;
}
.cid-u5nVo8suwT .card-title {
  text-align: center;
}
.cid-u5nVo8suwT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nWKMY4T9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nWKMY4T9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nWKMY4T9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nWKMY4T9 .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nWKMY4T9 .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nWKMY4T9 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nWKMY4T9 .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nWKMY4T9 .mbr-text,
.cid-u5nWKMY4T9 .mbr-section-btn {
  text-align: left;
}
.cid-u5nWKMY4T9 .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nWKMY4T9 .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nWKMY4T9 .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nWKMY4T9 .img-wrapper {
  display: flex;
}
.cid-u5nWKMY4T9 .card-text {
  text-align: center;
}
.cid-u5nWKMY4T9 .card-title {
  text-align: center;
}
.cid-u5nWKMY4T9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nWXPbHgb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nWXPbHgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nWXPbHgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nWXPbHgb .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nWXPbHgb .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nWXPbHgb .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nWXPbHgb .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nWXPbHgb .mbr-text,
.cid-u5nWXPbHgb .mbr-section-btn {
  text-align: left;
}
.cid-u5nWXPbHgb .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nWXPbHgb .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nWXPbHgb .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nWXPbHgb .img-wrapper {
  display: flex;
}
.cid-u5nWXPbHgb .card-text {
  text-align: center;
}
.cid-u5nWXPbHgb .card-title {
  text-align: center;
}
.cid-u5nWXPbHgb a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nXfqDkWw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nXfqDkWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nXfqDkWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nXfqDkWw .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nXfqDkWw .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nXfqDkWw .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nXfqDkWw .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nXfqDkWw .mbr-text,
.cid-u5nXfqDkWw .mbr-section-btn {
  text-align: left;
}
.cid-u5nXfqDkWw .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nXfqDkWw .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nXfqDkWw .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nXfqDkWw .img-wrapper {
  display: flex;
}
.cid-u5nXfqDkWw .card-text {
  text-align: center;
}
.cid-u5nXfqDkWw .card-title {
  text-align: center;
}
.cid-u5nXfqDkWw a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nXuVnaWv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nXuVnaWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nXuVnaWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nXuVnaWv .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nXuVnaWv .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nXuVnaWv .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nXuVnaWv .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nXuVnaWv .mbr-text,
.cid-u5nXuVnaWv .mbr-section-btn {
  text-align: left;
}
.cid-u5nXuVnaWv .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nXuVnaWv .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nXuVnaWv .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nXuVnaWv .img-wrapper {
  display: flex;
}
.cid-u5nXuVnaWv .card-text {
  text-align: center;
}
.cid-u5nXuVnaWv .card-title {
  text-align: center;
}
.cid-u5nXuVnaWv a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nY6tJKND {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nY6tJKND .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nY6tJKND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nY6tJKND .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nY6tJKND .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nY6tJKND .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nY6tJKND .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nY6tJKND .mbr-text,
.cid-u5nY6tJKND .mbr-section-btn {
  text-align: left;
}
.cid-u5nY6tJKND .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nY6tJKND .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nY6tJKND .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nY6tJKND .img-wrapper {
  display: flex;
}
.cid-u5nY6tJKND .card-text {
  text-align: center;
}
.cid-u5nY6tJKND .card-title {
  text-align: center;
}
.cid-u5nY6tJKND a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nYdPMFjQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nYdPMFjQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nYdPMFjQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nYdPMFjQ .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nYdPMFjQ .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYdPMFjQ .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nYdPMFjQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nYdPMFjQ .mbr-text,
.cid-u5nYdPMFjQ .mbr-section-btn {
  text-align: left;
}
.cid-u5nYdPMFjQ .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYdPMFjQ .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nYdPMFjQ .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nYdPMFjQ .img-wrapper {
  display: flex;
}
.cid-u5nYdPMFjQ .card-text {
  text-align: center;
}
.cid-u5nYdPMFjQ .card-title {
  text-align: center;
}
.cid-u5nYdPMFjQ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nYdqhTrB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nYdqhTrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nYdqhTrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nYdqhTrB .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nYdqhTrB .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYdqhTrB .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nYdqhTrB .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nYdqhTrB .mbr-text,
.cid-u5nYdqhTrB .mbr-section-btn {
  text-align: left;
}
.cid-u5nYdqhTrB .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYdqhTrB .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nYdqhTrB .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nYdqhTrB .img-wrapper {
  display: flex;
}
.cid-u5nYdqhTrB .card-text {
  text-align: center;
}
.cid-u5nYdqhTrB .card-title {
  text-align: center;
}
.cid-u5nYdqhTrB a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nYVaaFQl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nYVaaFQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nYVaaFQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nYVaaFQl .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nYVaaFQl .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYVaaFQl .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nYVaaFQl .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nYVaaFQl .mbr-text,
.cid-u5nYVaaFQl .mbr-section-btn {
  text-align: left;
}
.cid-u5nYVaaFQl .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYVaaFQl .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nYVaaFQl .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nYVaaFQl .img-wrapper {
  display: flex;
}
.cid-u5nYVaaFQl .card-text {
  text-align: center;
}
.cid-u5nYVaaFQl .card-title {
  text-align: center;
}
.cid-u5nYVaaFQl a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5nYUuFWnk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5nYUuFWnk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nYUuFWnk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nYUuFWnk .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5nYUuFWnk .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYUuFWnk .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5nYUuFWnk .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5nYUuFWnk .mbr-text,
.cid-u5nYUuFWnk .mbr-section-btn {
  text-align: left;
}
.cid-u5nYUuFWnk .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5nYUuFWnk .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5nYUuFWnk .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5nYUuFWnk .img-wrapper {
  display: flex;
}
.cid-u5nYUuFWnk .card-text {
  text-align: center;
}
.cid-u5nYUuFWnk .card-title {
  text-align: center;
}
.cid-u5nYUuFWnk a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5H3VET7hI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5H3VET7hI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H3VET7hI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H3VET7hI .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5H3VET7hI .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5H3VET7hI .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5H3VET7hI .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5H3VET7hI .mbr-text,
.cid-u5H3VET7hI .mbr-section-btn {
  text-align: left;
}
.cid-u5H3VET7hI .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5H3VET7hI .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5H3VET7hI .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5H3VET7hI .img-wrapper {
  display: flex;
}
.cid-u5H3VET7hI .card-text {
  text-align: center;
}
.cid-u5H3VET7hI .card-title {
  text-align: center;
}
.cid-u5H3VET7hI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5LWJDhHRW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5LWJDhHRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5LWJDhHRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5LWJDhHRW .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5LWJDhHRW .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5LWJDhHRW .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5LWJDhHRW .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5LWJDhHRW .mbr-text,
.cid-u5LWJDhHRW .mbr-section-btn {
  text-align: left;
}
.cid-u5LWJDhHRW .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5LWJDhHRW .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5LWJDhHRW .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5LWJDhHRW .img-wrapper {
  display: flex;
}
.cid-u5LWJDhHRW .card-text {
  text-align: center;
}
.cid-u5LWJDhHRW .card-title {
  text-align: center;
}
.cid-u5LWJDhHRW a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5NdZuoPzc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5NdZuoPzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5NdZuoPzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5NdZuoPzc .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5NdZuoPzc .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5NdZuoPzc .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5NdZuoPzc .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5NdZuoPzc .mbr-text,
.cid-u5NdZuoPzc .mbr-section-btn {
  text-align: left;
}
.cid-u5NdZuoPzc .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5NdZuoPzc .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5NdZuoPzc .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5NdZuoPzc .img-wrapper {
  display: flex;
}
.cid-u5NdZuoPzc .card-text {
  text-align: center;
}
.cid-u5NdZuoPzc .card-title {
  text-align: center;
}
.cid-u5NdZuoPzc a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Ne0e9lhT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #354256;
}
.cid-u5Ne0e9lhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5Ne0e9lhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5Ne0e9lhT .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5Ne0e9lhT .card-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5Ne0e9lhT .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u5Ne0e9lhT .card-wrapper {
    padding: 4rem;
  }
}
.cid-u5Ne0e9lhT .mbr-text,
.cid-u5Ne0e9lhT .mbr-section-btn {
  text-align: left;
}
.cid-u5Ne0e9lhT .img-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50% !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u5Ne0e9lhT .img-wrapper img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .cid-u5Ne0e9lhT .img-wrapper img {
    width: 80px;
    height: 80px;
  }
}
.cid-u5Ne0e9lhT .img-wrapper {
  display: flex;
}
.cid-u5Ne0e9lhT .card-text {
  text-align: center;
}
.cid-u5Ne0e9lhT .card-title {
  text-align: center;
}
.cid-u5Ne0e9lhT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HseHPJpJ .hidden {
  display: none;
}
.cid-u4aIFAuNAS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aIFAuNAS nav.navbar {
  position: fixed;
}
.cid-u4aIFAuNAS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIFAuNAS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aIFAuNAS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aIFAuNAS .dropdown-item:hover,
.cid-u4aIFAuNAS .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aIFAuNAS .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aIFAuNAS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aIFAuNAS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aIFAuNAS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aIFAuNAS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aIFAuNAS .nav-link {
  position: relative;
}
.cid-u4aIFAuNAS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIFAuNAS .container {
    flex-wrap: wrap;
  }
}
.cid-u4aIFAuNAS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIFAuNAS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aIFAuNAS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aIFAuNAS .dropdown-menu,
.cid-u4aIFAuNAS .navbar.opened {
  background: #354256 !important;
}
.cid-u4aIFAuNAS .nav-item:focus,
.cid-u4aIFAuNAS .nav-link:focus {
  outline: none;
}
.cid-u4aIFAuNAS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aIFAuNAS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aIFAuNAS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aIFAuNAS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIFAuNAS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aIFAuNAS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aIFAuNAS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aIFAuNAS .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aIFAuNAS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aIFAuNAS .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aIFAuNAS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aIFAuNAS .navbar.collapsed {
  justify-content: center;
}
.cid-u4aIFAuNAS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aIFAuNAS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aIFAuNAS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aIFAuNAS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aIFAuNAS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aIFAuNAS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aIFAuNAS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aIFAuNAS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aIFAuNAS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aIFAuNAS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aIFAuNAS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aIFAuNAS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aIFAuNAS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aIFAuNAS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aIFAuNAS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aIFAuNAS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aIFAuNAS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aIFAuNAS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aIFAuNAS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aIFAuNAS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aIFAuNAS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aIFAuNAS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aIFAuNAS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aIFAuNAS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aIFAuNAS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aIFAuNAS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aIFAuNAS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aIFAuNAS .dropdown-item.active,
.cid-u4aIFAuNAS .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aIFAuNAS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aIFAuNAS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aIFAuNAS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aIFAuNAS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aIFAuNAS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aIFAuNAS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aIFAuNAS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aIFAuNAS .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aIFAuNAS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aIFAuNAS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aIFAuNAS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aIFAuNAS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIFAuNAS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIFAuNAS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aIFAuNAS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIFAuNAS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aIFAuNAS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aIFAuNAS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIFAuNAS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aIFAuNAS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aIFAuNAS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aIFAuNAS .navbar {
    height: 70px;
  }
  .cid-u4aIFAuNAS .navbar.opened {
    height: auto;
  }
  .cid-u4aIFAuNAS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aIFAuNAS .nav-link:hover,
.cid-u4aIFAuNAS .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aIFB5NB0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4aIFB5NB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aIFB5NB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aIFB5NB0 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aIFB5NB0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIFB5NB0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aIFB5NB0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aIFB5NB0 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIFB5NB0 .mbr-section-title {
  color: #fafafa;
}
.cid-u4aIFB5NB0 .mbr-text,
.cid-u4aIFB5NB0 .mbr-section-btn {
  color: #fafafa;
}
.cid-u4aJaeo6uM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u4aJaeo6uM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aJaeo6uM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aJaeo6uM .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u4aJaeo6uM .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u4aJaeo6uM .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aJaeo6uM .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u4aJaeo6uM .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #354256;
}
.cid-u4aJaeo6uM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5NwlmvvTd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NwlmvvTd .showAlerts {
  display: block !important;
}
.cid-u5NwlmvvTd .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NwlmvvTd .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NwlmvvTd .title {
  margin-bottom: 2rem;
}
.cid-u5NwlmvvTd .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NwlmvvTd textarea.form-control {
  min-height: 188px;
}
.cid-u5NwlmvvTd LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NwlmvvTd .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NwlmvvTd .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NwlmvvTd .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NwlmvvTd .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NwlmvvTd .alert {
  margin-bottom: 0;
}
.cid-u5NwlmvvTd .alert-success {
  background-color: #70c770;
}
.cid-u5NwlmvvTd .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NwlmvvTd .btn {
  display: inline-flex;
}
.cid-u5NwlmvvTd .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NwlmvvTd .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NwlmvvTd hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-aviiKNwsy6 .hidden {
  display: none;
}
.cid-u4aMBQhsP8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aMBQhsP8 nav.navbar {
  position: fixed;
}
.cid-u4aMBQhsP8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aMBQhsP8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aMBQhsP8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aMBQhsP8 .dropdown-item:hover,
.cid-u4aMBQhsP8 .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aMBQhsP8 .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aMBQhsP8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aMBQhsP8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aMBQhsP8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aMBQhsP8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aMBQhsP8 .nav-link {
  position: relative;
}
.cid-u4aMBQhsP8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aMBQhsP8 .container {
    flex-wrap: wrap;
  }
}
.cid-u4aMBQhsP8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aMBQhsP8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aMBQhsP8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aMBQhsP8 .dropdown-menu,
.cid-u4aMBQhsP8 .navbar.opened {
  background: #354256 !important;
}
.cid-u4aMBQhsP8 .nav-item:focus,
.cid-u4aMBQhsP8 .nav-link:focus {
  outline: none;
}
.cid-u4aMBQhsP8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aMBQhsP8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aMBQhsP8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aMBQhsP8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aMBQhsP8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aMBQhsP8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aMBQhsP8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aMBQhsP8 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aMBQhsP8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aMBQhsP8 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aMBQhsP8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aMBQhsP8 .navbar.collapsed {
  justify-content: center;
}
.cid-u4aMBQhsP8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aMBQhsP8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aMBQhsP8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aMBQhsP8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aMBQhsP8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aMBQhsP8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aMBQhsP8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aMBQhsP8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aMBQhsP8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aMBQhsP8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aMBQhsP8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aMBQhsP8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aMBQhsP8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aMBQhsP8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aMBQhsP8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aMBQhsP8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aMBQhsP8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aMBQhsP8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aMBQhsP8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aMBQhsP8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aMBQhsP8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aMBQhsP8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aMBQhsP8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aMBQhsP8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aMBQhsP8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aMBQhsP8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aMBQhsP8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aMBQhsP8 .dropdown-item.active,
.cid-u4aMBQhsP8 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aMBQhsP8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aMBQhsP8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aMBQhsP8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aMBQhsP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aMBQhsP8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aMBQhsP8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aMBQhsP8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aMBQhsP8 .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aMBQhsP8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aMBQhsP8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aMBQhsP8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aMBQhsP8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aMBQhsP8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aMBQhsP8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aMBQhsP8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aMBQhsP8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aMBQhsP8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aMBQhsP8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aMBQhsP8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aMBQhsP8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aMBQhsP8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aMBQhsP8 .navbar {
    height: 70px;
  }
  .cid-u4aMBQhsP8 .navbar.opened {
    height: auto;
  }
  .cid-u4aMBQhsP8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aMBQhsP8 .nav-link:hover,
.cid-u4aMBQhsP8 .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aMBQPV1W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4aMBQPV1W .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBQPV1W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBQPV1W .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aMBQPV1W .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aMBQPV1W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aMBQPV1W .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aMBQPV1W .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aMBQPV1W .mbr-section-title {
  color: #fafafa;
}
.cid-u4aMBQPV1W .mbr-text,
.cid-u4aMBQPV1W .mbr-section-btn {
  color: #fafafa;
}
.cid-u4VIKFiBfb {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .cid-u4VIKFiBfb video {
    width: 100% !important;
  }
}
.cid-u4VIKFiBfb video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u4VIUXqGYR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u4VIUXqGYR .mbr-section-subtitle {
  text-align: center;
}
.cid-u4aOu304s2 {
  background-color: #ffffff;
}
.cid-u4aOu304s2 .wave1 {
  fill: #354256;
}
.cid-u4aOu304s2 .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4aOu304s2 .wave3,
.cid-u4aOu304s2 .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NAGDWihK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NAGDWihK .showAlerts {
  display: block !important;
}
.cid-u5NAGDWihK .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NAGDWihK .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NAGDWihK .title {
  margin-bottom: 2rem;
}
.cid-u5NAGDWihK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NAGDWihK textarea.form-control {
  min-height: 188px;
}
.cid-u5NAGDWihK LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NAGDWihK .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAGDWihK .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NAGDWihK .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAGDWihK .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NAGDWihK .alert {
  margin-bottom: 0;
}
.cid-u5NAGDWihK .alert-success {
  background-color: #70c770;
}
.cid-u5NAGDWihK .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NAGDWihK .btn {
  display: inline-flex;
}
.cid-u5NAGDWihK .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAGDWihK .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAGDWihK hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HsoiEDqV .hidden {
  display: none;
}
.cid-u4mrN0vf6Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4mrN0vf6Y nav.navbar {
  position: fixed;
}
.cid-u4mrN0vf6Y .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mrN0vf6Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4mrN0vf6Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4mrN0vf6Y .dropdown-item:hover,
.cid-u4mrN0vf6Y .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4mrN0vf6Y .dropdown-item:hover span {
  color: yellow;
}
.cid-u4mrN0vf6Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4mrN0vf6Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4mrN0vf6Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4mrN0vf6Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4mrN0vf6Y .nav-link {
  position: relative;
}
.cid-u4mrN0vf6Y .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mrN0vf6Y .container {
    flex-wrap: wrap;
  }
}
.cid-u4mrN0vf6Y .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mrN0vf6Y .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4mrN0vf6Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4mrN0vf6Y .dropdown-menu,
.cid-u4mrN0vf6Y .navbar.opened {
  background: #354256 !important;
}
.cid-u4mrN0vf6Y .nav-item:focus,
.cid-u4mrN0vf6Y .nav-link:focus {
  outline: none;
}
.cid-u4mrN0vf6Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4mrN0vf6Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4mrN0vf6Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4mrN0vf6Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mrN0vf6Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4mrN0vf6Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4mrN0vf6Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4mrN0vf6Y .navbar.opened {
  transition: all 0.3s;
}
.cid-u4mrN0vf6Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4mrN0vf6Y .navbar .navbar-logo img {
  width: auto;
}
.cid-u4mrN0vf6Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4mrN0vf6Y .navbar.collapsed {
  justify-content: center;
}
.cid-u4mrN0vf6Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4mrN0vf6Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4mrN0vf6Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4mrN0vf6Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4mrN0vf6Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4mrN0vf6Y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4mrN0vf6Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4mrN0vf6Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4mrN0vf6Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4mrN0vf6Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4mrN0vf6Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4mrN0vf6Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4mrN0vf6Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4mrN0vf6Y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4mrN0vf6Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4mrN0vf6Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4mrN0vf6Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4mrN0vf6Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4mrN0vf6Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4mrN0vf6Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4mrN0vf6Y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4mrN0vf6Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4mrN0vf6Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4mrN0vf6Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4mrN0vf6Y .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4mrN0vf6Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4mrN0vf6Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4mrN0vf6Y .dropdown-item.active,
.cid-u4mrN0vf6Y .dropdown-item:active {
  background-color: transparent;
}
.cid-u4mrN0vf6Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4mrN0vf6Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4mrN0vf6Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4mrN0vf6Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4mrN0vf6Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4mrN0vf6Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4mrN0vf6Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4mrN0vf6Y .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4mrN0vf6Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4mrN0vf6Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4mrN0vf6Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4mrN0vf6Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mrN0vf6Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mrN0vf6Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4mrN0vf6Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mrN0vf6Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4mrN0vf6Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4mrN0vf6Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mrN0vf6Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4mrN0vf6Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4mrN0vf6Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4mrN0vf6Y .navbar {
    height: 70px;
  }
  .cid-u4mrN0vf6Y .navbar.opened {
    height: auto;
  }
  .cid-u4mrN0vf6Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4mrN0vf6Y .nav-link:hover,
.cid-u4mrN0vf6Y .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4tEoq4vY3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4tEoq4vY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4tEoq4vY3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4tEoq4vY3 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4tEoq4vY3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tEoq4vY3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4tEoq4vY3 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4tEoq4vY3 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tEoq4vY3 .mbr-section-title {
  color: #fafafa;
}
.cid-u4tEoq4vY3 .mbr-text,
.cid-u4tEoq4vY3 .mbr-section-btn {
  color: #fafafa;
}
.cid-u5GysWvMZw {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u5GysWvMZw video {
    width: 100% !important;
  }
}
.cid-u5GysWvMZw video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u4nWVfi6fu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4nWVfi6fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4nWVfi6fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4nWVfi6fu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4nWVfi6fu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4nWVfi6fu .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4JDVGcTBV {
  background-color: #ffffff;
}
.cid-u4JDVGcTBV .wave1 {
  fill: #354256;
}
.cid-u4JDVGcTBV .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4JDVGcTBV .wave3,
.cid-u4JDVGcTBV .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NAQIHdff {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NAQIHdff .showAlerts {
  display: block !important;
}
.cid-u5NAQIHdff .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NAQIHdff .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NAQIHdff .title {
  margin-bottom: 2rem;
}
.cid-u5NAQIHdff .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NAQIHdff textarea.form-control {
  min-height: 188px;
}
.cid-u5NAQIHdff LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NAQIHdff .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAQIHdff .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NAQIHdff .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAQIHdff .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NAQIHdff .alert {
  margin-bottom: 0;
}
.cid-u5NAQIHdff .alert-success {
  background-color: #70c770;
}
.cid-u5NAQIHdff .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NAQIHdff .btn {
  display: inline-flex;
}
.cid-u5NAQIHdff .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAQIHdff .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAQIHdff hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u5nQXLrqEB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u5nQXLrqEB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nQXLrqEB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nQXLrqEB .mbr-section-subtitle {
  color: #000000;
}
.cid-u5nQXLrqEB .mbr-section-title {
  color: #fafafa;
}
.cid-u5H53I74wm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u5H53I74wm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H53I74wm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H53I74wm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u5H532X9E0 {
  background-color: #354256;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u5H532X9E0 video {
    width: 100% !important;
  }
}
.cid-u5H532X9E0 video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5nT11Yt15 {
  background-color: #354256;
}
.cid-u5nT11Yt15 .wave1 {
  fill: #ffffff;
}
.cid-u5nT11Yt15 .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u5nT11Yt15 .wave3,
.cid-u5nT11Yt15 .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u6JhUTrDG1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6JhUTrDG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6JhUTrDG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6JhUTrDG1 .mbr-section-subtitle {
  color: #000000;
}
.cid-vd9tJp9HwS {
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .cid-vd9tJp9HwS video {
    width: 100% !important;
  }
}
.cid-vd9tJp9HwS video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5nSU5udko {
  background-color: #ffffff;
}
.cid-u5nSU5udko .wave1 {
  fill: #354256;
}
.cid-u5nSU5udko .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u5nSU5udko .wave3,
.cid-u5nSU5udko .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5nScPnrAf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u5nScPnrAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nScPnrAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nScPnrAf .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u4Kp8btROh {
  background-color: #354256;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u4Kp8btROh video {
    width: 100% !important;
  }
}
.cid-u4Kp8btROh video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5nTjTYJHz {
  background-color: #354256;
}
.cid-u5nTjTYJHz .wave1 {
  fill: #ffffff;
}
.cid-u5nTjTYJHz .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u5nTjTYJHz .wave3,
.cid-u5nTjTYJHz .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u5nSdvl06V {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5nSdvl06V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nSdvl06V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nSdvl06V .mbr-section-subtitle {
  color: #000000;
}
.cid-u4V7M0gkYI {
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u4V7M0gkYI video {
    width: 100% !important;
  }
}
.cid-u4V7M0gkYI video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5nSSlKe59 {
  background-color: #ffffff;
}
.cid-u5nSSlKe59 .wave1 {
  fill: #354256;
}
.cid-u5nSSlKe59 .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u5nSSlKe59 .wave3,
.cid-u5nSSlKe59 .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5nSeeMh6h {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u5nSeeMh6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5nSeeMh6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5nSeeMh6h .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u4V7MAu9Ic {
  background-color: #354256;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u4V7MAu9Ic video {
    width: 100% !important;
  }
}
.cid-u4V7MAu9Ic video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5H5epUvZk {
  background-color: #354256;
}
.cid-u5H5epUvZk .wave1 {
  fill: #ffffff;
}
.cid-u5H5epUvZk .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u5H5epUvZk .wave3,
.cid-u5H5epUvZk .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u5H5AwYoN3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5H5AwYoN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5H5AwYoN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5H5AwYoN3 .mbr-section-subtitle {
  color: #000000;
}
.cid-u5H51wSAYo {
  background-color: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-u5H51wSAYo video {
    width: 100% !important;
  }
}
.cid-u5H51wSAYo video {
  margin: auto;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u5H5fdFamC {
  background-color: #ffffff;
}
.cid-u5H5fdFamC .wave1 {
  fill: #354256;
}
.cid-u5H5fdFamC .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u5H5fdFamC .wave3,
.cid-u5H5fdFamC .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HstyICtF .hidden {
  display: none;
}
.cid-u4mshPAlyx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4mshPAlyx nav.navbar {
  position: fixed;
}
.cid-u4mshPAlyx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mshPAlyx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4mshPAlyx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4mshPAlyx .dropdown-item:hover,
.cid-u4mshPAlyx .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4mshPAlyx .dropdown-item:hover span {
  color: yellow;
}
.cid-u4mshPAlyx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4mshPAlyx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4mshPAlyx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4mshPAlyx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4mshPAlyx .nav-link {
  position: relative;
}
.cid-u4mshPAlyx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mshPAlyx .container {
    flex-wrap: wrap;
  }
}
.cid-u4mshPAlyx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mshPAlyx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4mshPAlyx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4mshPAlyx .dropdown-menu,
.cid-u4mshPAlyx .navbar.opened {
  background: #354256 !important;
}
.cid-u4mshPAlyx .nav-item:focus,
.cid-u4mshPAlyx .nav-link:focus {
  outline: none;
}
.cid-u4mshPAlyx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4mshPAlyx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4mshPAlyx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4mshPAlyx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mshPAlyx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4mshPAlyx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4mshPAlyx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4mshPAlyx .navbar.opened {
  transition: all 0.3s;
}
.cid-u4mshPAlyx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4mshPAlyx .navbar .navbar-logo img {
  width: auto;
}
.cid-u4mshPAlyx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4mshPAlyx .navbar.collapsed {
  justify-content: center;
}
.cid-u4mshPAlyx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4mshPAlyx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4mshPAlyx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4mshPAlyx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4mshPAlyx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4mshPAlyx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4mshPAlyx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4mshPAlyx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4mshPAlyx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4mshPAlyx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4mshPAlyx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4mshPAlyx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4mshPAlyx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4mshPAlyx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4mshPAlyx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4mshPAlyx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4mshPAlyx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4mshPAlyx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4mshPAlyx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4mshPAlyx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4mshPAlyx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4mshPAlyx .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4mshPAlyx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4mshPAlyx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4mshPAlyx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4mshPAlyx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4mshPAlyx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4mshPAlyx .dropdown-item.active,
.cid-u4mshPAlyx .dropdown-item:active {
  background-color: transparent;
}
.cid-u4mshPAlyx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4mshPAlyx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4mshPAlyx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4mshPAlyx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4mshPAlyx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4mshPAlyx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4mshPAlyx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4mshPAlyx .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4mshPAlyx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4mshPAlyx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4mshPAlyx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4mshPAlyx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mshPAlyx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mshPAlyx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4mshPAlyx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mshPAlyx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4mshPAlyx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4mshPAlyx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mshPAlyx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4mshPAlyx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4mshPAlyx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4mshPAlyx .navbar {
    height: 70px;
  }
  .cid-u4mshPAlyx .navbar.opened {
    height: auto;
  }
  .cid-u4mshPAlyx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4mshPAlyx .nav-link:hover,
.cid-u4mshPAlyx .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4tE6PYHKA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4tE6PYHKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4tE6PYHKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4tE6PYHKA .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4tE6PYHKA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tE6PYHKA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4tE6PYHKA .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4tE6PYHKA .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tE6PYHKA .mbr-section-title {
  color: #fafafa;
}
.cid-u4tE6PYHKA .mbr-text,
.cid-u4tE6PYHKA .mbr-section-btn {
  color: #fafafa;
}
.cid-u4nXHNlJE1 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4nXHNlJE1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4nXHNlJE1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4nXHNlJE1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4nXHNlJE1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4nXHNlJE1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4mshQYAkE {
  background-color: #ffffff;
}
.cid-u4mshQYAkE .wave1 {
  fill: #354256;
}
.cid-u4mshQYAkE .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4mshQYAkE .wave3,
.cid-u4mshQYAkE .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NALmb2Ku {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NALmb2Ku .showAlerts {
  display: block !important;
}
.cid-u5NALmb2Ku .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NALmb2Ku .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NALmb2Ku .title {
  margin-bottom: 2rem;
}
.cid-u5NALmb2Ku .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NALmb2Ku textarea.form-control {
  min-height: 188px;
}
.cid-u5NALmb2Ku LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NALmb2Ku .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NALmb2Ku .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NALmb2Ku .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NALmb2Ku .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NALmb2Ku .alert {
  margin-bottom: 0;
}
.cid-u5NALmb2Ku .alert-success {
  background-color: #70c770;
}
.cid-u5NALmb2Ku .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NALmb2Ku .btn {
  display: inline-flex;
}
.cid-u5NALmb2Ku .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NALmb2Ku .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NALmb2Ku hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Hsqc3JXb .hidden {
  display: none;
}
.cid-u4msrq08ad {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4msrq08ad nav.navbar {
  position: fixed;
}
.cid-u4msrq08ad .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4msrq08ad .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4msrq08ad .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4msrq08ad .dropdown-item:hover,
.cid-u4msrq08ad .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4msrq08ad .dropdown-item:hover span {
  color: yellow;
}
.cid-u4msrq08ad .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4msrq08ad .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4msrq08ad .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4msrq08ad .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4msrq08ad .nav-link {
  position: relative;
}
.cid-u4msrq08ad .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4msrq08ad .container {
    flex-wrap: wrap;
  }
}
.cid-u4msrq08ad .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4msrq08ad .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4msrq08ad .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4msrq08ad .dropdown-menu,
.cid-u4msrq08ad .navbar.opened {
  background: #354256 !important;
}
.cid-u4msrq08ad .nav-item:focus,
.cid-u4msrq08ad .nav-link:focus {
  outline: none;
}
.cid-u4msrq08ad .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4msrq08ad .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4msrq08ad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4msrq08ad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4msrq08ad .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4msrq08ad .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4msrq08ad .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4msrq08ad .navbar.opened {
  transition: all 0.3s;
}
.cid-u4msrq08ad .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4msrq08ad .navbar .navbar-logo img {
  width: auto;
}
.cid-u4msrq08ad .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4msrq08ad .navbar.collapsed {
  justify-content: center;
}
.cid-u4msrq08ad .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4msrq08ad .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4msrq08ad .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4msrq08ad .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4msrq08ad .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4msrq08ad .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4msrq08ad .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4msrq08ad .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4msrq08ad .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4msrq08ad .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4msrq08ad .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4msrq08ad .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4msrq08ad .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4msrq08ad .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4msrq08ad .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4msrq08ad .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4msrq08ad .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4msrq08ad .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4msrq08ad .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4msrq08ad .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4msrq08ad .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4msrq08ad .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4msrq08ad .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4msrq08ad .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4msrq08ad .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4msrq08ad .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4msrq08ad .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4msrq08ad .dropdown-item.active,
.cid-u4msrq08ad .dropdown-item:active {
  background-color: transparent;
}
.cid-u4msrq08ad .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4msrq08ad .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4msrq08ad .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4msrq08ad .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4msrq08ad .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4msrq08ad .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4msrq08ad ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4msrq08ad .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4msrq08ad button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4msrq08ad button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4msrq08ad button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4msrq08ad button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4msrq08ad button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4msrq08ad button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4msrq08ad nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4msrq08ad nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4msrq08ad nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4msrq08ad nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4msrq08ad .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4msrq08ad a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4msrq08ad .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4msrq08ad .navbar {
    height: 70px;
  }
  .cid-u4msrq08ad .navbar.opened {
    height: auto;
  }
  .cid-u4msrq08ad .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4msrq08ad .nav-link:hover,
.cid-u4msrq08ad .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4tEVXa9nj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4tEVXa9nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4tEVXa9nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4tEVXa9nj .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4tEVXa9nj .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tEVXa9nj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4tEVXa9nj .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4tEVXa9nj .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tEVXa9nj .mbr-section-title {
  color: #fafafa;
}
.cid-u4tEVXa9nj .mbr-text,
.cid-u4tEVXa9nj .mbr-section-btn {
  color: #fafafa;
}
.cid-u4nYJsD7mc {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4nYJsD7mc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4nYJsD7mc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4nYJsD7mc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4nYJsD7mc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4nYJsD7mc .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4msrtRO9P {
  background-color: #ffffff;
}
.cid-u4msrtRO9P .wave1 {
  fill: #354256;
}
.cid-u4msrtRO9P .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4msrtRO9P .wave3,
.cid-u4msrtRO9P .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NB2DCkPy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NB2DCkPy .showAlerts {
  display: block !important;
}
.cid-u5NB2DCkPy .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NB2DCkPy .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NB2DCkPy .title {
  margin-bottom: 2rem;
}
.cid-u5NB2DCkPy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NB2DCkPy textarea.form-control {
  min-height: 188px;
}
.cid-u5NB2DCkPy LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NB2DCkPy .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NB2DCkPy .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NB2DCkPy .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NB2DCkPy .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NB2DCkPy .alert {
  margin-bottom: 0;
}
.cid-u5NB2DCkPy .alert-success {
  background-color: #70c770;
}
.cid-u5NB2DCkPy .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NB2DCkPy .btn {
  display: inline-flex;
}
.cid-u5NB2DCkPy .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NB2DCkPy .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NB2DCkPy hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HsBBegaD .hidden {
  display: none;
}
.cid-u4msOwSVYS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4msOwSVYS nav.navbar {
  position: fixed;
}
.cid-u4msOwSVYS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4msOwSVYS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4msOwSVYS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4msOwSVYS .dropdown-item:hover,
.cid-u4msOwSVYS .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4msOwSVYS .dropdown-item:hover span {
  color: yellow;
}
.cid-u4msOwSVYS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4msOwSVYS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4msOwSVYS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4msOwSVYS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4msOwSVYS .nav-link {
  position: relative;
}
.cid-u4msOwSVYS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4msOwSVYS .container {
    flex-wrap: wrap;
  }
}
.cid-u4msOwSVYS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4msOwSVYS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4msOwSVYS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4msOwSVYS .dropdown-menu,
.cid-u4msOwSVYS .navbar.opened {
  background: #354256 !important;
}
.cid-u4msOwSVYS .nav-item:focus,
.cid-u4msOwSVYS .nav-link:focus {
  outline: none;
}
.cid-u4msOwSVYS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4msOwSVYS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4msOwSVYS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4msOwSVYS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4msOwSVYS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4msOwSVYS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4msOwSVYS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4msOwSVYS .navbar.opened {
  transition: all 0.3s;
}
.cid-u4msOwSVYS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4msOwSVYS .navbar .navbar-logo img {
  width: auto;
}
.cid-u4msOwSVYS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4msOwSVYS .navbar.collapsed {
  justify-content: center;
}
.cid-u4msOwSVYS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4msOwSVYS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4msOwSVYS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4msOwSVYS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4msOwSVYS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4msOwSVYS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4msOwSVYS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4msOwSVYS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4msOwSVYS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4msOwSVYS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4msOwSVYS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4msOwSVYS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4msOwSVYS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4msOwSVYS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4msOwSVYS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4msOwSVYS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4msOwSVYS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4msOwSVYS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4msOwSVYS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4msOwSVYS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4msOwSVYS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4msOwSVYS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4msOwSVYS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4msOwSVYS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4msOwSVYS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4msOwSVYS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4msOwSVYS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4msOwSVYS .dropdown-item.active,
.cid-u4msOwSVYS .dropdown-item:active {
  background-color: transparent;
}
.cid-u4msOwSVYS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4msOwSVYS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4msOwSVYS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4msOwSVYS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4msOwSVYS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4msOwSVYS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4msOwSVYS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4msOwSVYS .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4msOwSVYS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4msOwSVYS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4msOwSVYS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4msOwSVYS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4msOwSVYS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4msOwSVYS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4msOwSVYS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4msOwSVYS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4msOwSVYS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4msOwSVYS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4msOwSVYS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4msOwSVYS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4msOwSVYS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4msOwSVYS .navbar {
    height: 70px;
  }
  .cid-u4msOwSVYS .navbar.opened {
    height: auto;
  }
  .cid-u4msOwSVYS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4msOwSVYS .nav-link:hover,
.cid-u4msOwSVYS .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4tExWPH9e {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4tExWPH9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4tExWPH9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4tExWPH9e .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4tExWPH9e .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tExWPH9e .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4tExWPH9e .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4tExWPH9e .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tExWPH9e .mbr-section-title {
  color: #fafafa;
}
.cid-u4tExWPH9e .mbr-text,
.cid-u4tExWPH9e .mbr-section-btn {
  color: #fafafa;
}
.cid-u4VCWce1Y0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4VCWce1Y0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4VCWce1Y0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4VCWce1Y0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4VCWce1Y0 .row {
  flex-direction: row-reverse;
}
.cid-u4VCWce1Y0 img {
  width: 100%;
}
.cid-u4VDI4XxwL {
  background-color: #354256;
}
.cid-u4VDI4XxwL .wave1 {
  fill: #ffffff;
}
.cid-u4VDI4XxwL .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u4VDI4XxwL .wave3,
.cid-u4VDI4XxwL .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u4nYcTpmwY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4nYcTpmwY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4nYcTpmwY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4nYcTpmwY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4nYcTpmwY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4nYcTpmwY .text-wrapper {
    padding: 2rem;
  }
}
.cid-u5GMitFiYr {
  background-color: #ffffff;
}
.cid-u5GMitFiYr .wave1 {
  fill: #354256;
}
.cid-u5GMitFiYr .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u5GMitFiYr .wave3,
.cid-u5GMitFiYr .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NAW7ytdR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NAW7ytdR .showAlerts {
  display: block !important;
}
.cid-u5NAW7ytdR .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NAW7ytdR .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NAW7ytdR .title {
  margin-bottom: 2rem;
}
.cid-u5NAW7ytdR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NAW7ytdR textarea.form-control {
  min-height: 188px;
}
.cid-u5NAW7ytdR LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NAW7ytdR .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAW7ytdR .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NAW7ytdR .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NAW7ytdR .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NAW7ytdR .alert {
  margin-bottom: 0;
}
.cid-u5NAW7ytdR .alert-success {
  background-color: #70c770;
}
.cid-u5NAW7ytdR .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NAW7ytdR .btn {
  display: inline-flex;
}
.cid-u5NAW7ytdR .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAW7ytdR .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NAW7ytdR hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4mvefJIVF {
  background-color: #354256;
}
.cid-u4mvefJIVF .wave1 {
  fill: #ffffff;
}
.cid-u4mvefJIVF .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u4mvefJIVF .wave3,
.cid-u4mvefJIVF .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u4VEnVm7xj {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4VEnVm7xj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4VEnVm7xj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4VEnVm7xj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4VEnVm7xj .row {
  flex-direction: row-reverse;
}
.cid-u4VEnVm7xj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4VEnVm7xj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4VEnVm7xj .mbr-text {
  color: #000000;
}
.cid-u4VEnVm7xj .mbr-section-title {
  color: #000000;
}
.cid-u4VF6WphH4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4VF6WphH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4VF6WphH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4VF6WphH4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4VF6WphH4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4VF6WphH4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4msOzPF6I {
  background-color: #ffffff;
}
.cid-u4msOzPF6I .wave1 {
  fill: #354256;
}
.cid-u4msOzPF6I .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4msOzPF6I .wave3,
.cid-u4msOzPF6I .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Hszc2MAC .hidden {
  display: none;
}
.cid-u4mvFQbsXw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4mvFQbsXw nav.navbar {
  position: fixed;
}
.cid-u4mvFQbsXw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mvFQbsXw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4mvFQbsXw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4mvFQbsXw .dropdown-item:hover,
.cid-u4mvFQbsXw .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4mvFQbsXw .dropdown-item:hover span {
  color: yellow;
}
.cid-u4mvFQbsXw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4mvFQbsXw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4mvFQbsXw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4mvFQbsXw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4mvFQbsXw .nav-link {
  position: relative;
}
.cid-u4mvFQbsXw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mvFQbsXw .container {
    flex-wrap: wrap;
  }
}
.cid-u4mvFQbsXw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mvFQbsXw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4mvFQbsXw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4mvFQbsXw .dropdown-menu,
.cid-u4mvFQbsXw .navbar.opened {
  background: #354256 !important;
}
.cid-u4mvFQbsXw .nav-item:focus,
.cid-u4mvFQbsXw .nav-link:focus {
  outline: none;
}
.cid-u4mvFQbsXw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4mvFQbsXw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4mvFQbsXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4mvFQbsXw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mvFQbsXw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4mvFQbsXw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4mvFQbsXw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4mvFQbsXw .navbar.opened {
  transition: all 0.3s;
}
.cid-u4mvFQbsXw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4mvFQbsXw .navbar .navbar-logo img {
  width: auto;
}
.cid-u4mvFQbsXw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4mvFQbsXw .navbar.collapsed {
  justify-content: center;
}
.cid-u4mvFQbsXw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4mvFQbsXw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4mvFQbsXw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4mvFQbsXw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4mvFQbsXw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4mvFQbsXw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4mvFQbsXw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4mvFQbsXw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4mvFQbsXw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4mvFQbsXw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4mvFQbsXw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4mvFQbsXw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4mvFQbsXw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4mvFQbsXw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4mvFQbsXw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4mvFQbsXw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4mvFQbsXw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4mvFQbsXw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4mvFQbsXw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4mvFQbsXw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4mvFQbsXw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4mvFQbsXw .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4mvFQbsXw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4mvFQbsXw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4mvFQbsXw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4mvFQbsXw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4mvFQbsXw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4mvFQbsXw .dropdown-item.active,
.cid-u4mvFQbsXw .dropdown-item:active {
  background-color: transparent;
}
.cid-u4mvFQbsXw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4mvFQbsXw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4mvFQbsXw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4mvFQbsXw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4mvFQbsXw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4mvFQbsXw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4mvFQbsXw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4mvFQbsXw .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4mvFQbsXw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4mvFQbsXw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4mvFQbsXw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4mvFQbsXw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mvFQbsXw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mvFQbsXw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4mvFQbsXw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mvFQbsXw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4mvFQbsXw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4mvFQbsXw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mvFQbsXw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4mvFQbsXw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4mvFQbsXw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4mvFQbsXw .navbar {
    height: 70px;
  }
  .cid-u4mvFQbsXw .navbar.opened {
    height: auto;
  }
  .cid-u4mvFQbsXw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4mvFQbsXw .nav-link:hover,
.cid-u4mvFQbsXw .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4tFbyM2xv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4tFbyM2xv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4tFbyM2xv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4tFbyM2xv .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4tFbyM2xv .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tFbyM2xv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4tFbyM2xv .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4tFbyM2xv .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4tFbyM2xv .mbr-section-title {
  color: #fafafa;
}
.cid-u4tFbyM2xv .mbr-text,
.cid-u4tFbyM2xv .mbr-section-btn {
  color: #fafafa;
}
.cid-u4nZ8FgWjT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4nZ8FgWjT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4nZ8FgWjT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4nZ8FgWjT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4nZ8FgWjT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4nZ8FgWjT .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4mvFR9e2A {
  background-color: #ffffff;
}
.cid-u4mvFR9e2A .wave1 {
  fill: #354256;
}
.cid-u4mvFR9e2A .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4mvFR9e2A .wave3,
.cid-u4mvFR9e2A .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u5NB8jZX5d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #354256;
}
.cid-u5NB8jZX5d .showAlerts {
  display: block !important;
}
.cid-u5NB8jZX5d .rowflexrev {
  display: -webkit-flex;
}
.cid-u5NB8jZX5d .ws-form-alerts {
  margin-top: 1rem;
}
.cid-u5NB8jZX5d .title {
  margin-bottom: 2rem;
}
.cid-u5NB8jZX5d .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u5NB8jZX5d textarea.form-control {
  min-height: 188px;
}
.cid-u5NB8jZX5d LABEL {
  color: #232323;
  display: initial;
}
.cid-u5NB8jZX5d .mbr-section-terms {
  text-align: center;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NB8jZX5d .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-u5NB8jZX5d .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-u5NB8jZX5d .mbr-section-gdpr {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
}
.cid-u5NB8jZX5d .alert {
  margin-bottom: 0;
}
.cid-u5NB8jZX5d .alert-success {
  background-color: #70c770;
}
.cid-u5NB8jZX5d .alert-danger {
  background-color: #ff4a52;
}
.cid-u5NB8jZX5d .btn {
  display: inline-flex;
}
.cid-u5NB8jZX5d .mbr-alert-success {
  text-align: left;
  color: #ffffff;
}
.cid-u5NB8jZX5d .mbr-alert-danger {
  text-align: left;
  color: #ffffff;
}
.cid-u5NB8jZX5d hr {
  height: 1px;
  background-color: white;
  border: none;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HsH21jwe .hidden {
  display: none;
}
.cid-u4mw2ICuWA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4mw2ICuWA nav.navbar {
  position: fixed;
}
.cid-u4mw2ICuWA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mw2ICuWA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4mw2ICuWA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4mw2ICuWA .dropdown-item:hover,
.cid-u4mw2ICuWA .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4mw2ICuWA .dropdown-item:hover span {
  color: yellow;
}
.cid-u4mw2ICuWA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4mw2ICuWA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4mw2ICuWA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4mw2ICuWA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4mw2ICuWA .nav-link {
  position: relative;
}
.cid-u4mw2ICuWA .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mw2ICuWA .container {
    flex-wrap: wrap;
  }
}
.cid-u4mw2ICuWA .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mw2ICuWA .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4mw2ICuWA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4mw2ICuWA .dropdown-menu,
.cid-u4mw2ICuWA .navbar.opened {
  background: #354256 !important;
}
.cid-u4mw2ICuWA .nav-item:focus,
.cid-u4mw2ICuWA .nav-link:focus {
  outline: none;
}
.cid-u4mw2ICuWA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4mw2ICuWA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4mw2ICuWA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4mw2ICuWA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mw2ICuWA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4mw2ICuWA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4mw2ICuWA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4mw2ICuWA .navbar.opened {
  transition: all 0.3s;
}
.cid-u4mw2ICuWA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4mw2ICuWA .navbar .navbar-logo img {
  width: auto;
}
.cid-u4mw2ICuWA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4mw2ICuWA .navbar.collapsed {
  justify-content: center;
}
.cid-u4mw2ICuWA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4mw2ICuWA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4mw2ICuWA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4mw2ICuWA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4mw2ICuWA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4mw2ICuWA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4mw2ICuWA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4mw2ICuWA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4mw2ICuWA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4mw2ICuWA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4mw2ICuWA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4mw2ICuWA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4mw2ICuWA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4mw2ICuWA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4mw2ICuWA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4mw2ICuWA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4mw2ICuWA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4mw2ICuWA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4mw2ICuWA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4mw2ICuWA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4mw2ICuWA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4mw2ICuWA .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4mw2ICuWA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4mw2ICuWA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4mw2ICuWA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4mw2ICuWA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4mw2ICuWA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4mw2ICuWA .dropdown-item.active,
.cid-u4mw2ICuWA .dropdown-item:active {
  background-color: transparent;
}
.cid-u4mw2ICuWA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4mw2ICuWA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4mw2ICuWA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4mw2ICuWA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4mw2ICuWA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4mw2ICuWA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4mw2ICuWA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4mw2ICuWA .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4mw2ICuWA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4mw2ICuWA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4mw2ICuWA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4mw2ICuWA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mw2ICuWA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mw2ICuWA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4mw2ICuWA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mw2ICuWA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4mw2ICuWA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4mw2ICuWA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mw2ICuWA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4mw2ICuWA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4mw2ICuWA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4mw2ICuWA .navbar {
    height: 70px;
  }
  .cid-u4mw2ICuWA .navbar.opened {
    height: auto;
  }
  .cid-u4mw2ICuWA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4mw2ICuWA .nav-link:hover,
.cid-u4mw2ICuWA .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4mw2J5NWA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1020x680.webp");
}
.cid-u4mw2J5NWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mw2J5NWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4mw2J5NWA .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4mw2J5NWA .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4mw2J5NWA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4mw2J5NWA .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4mw2J5NWA .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4mw2J5NWA .mbr-section-title {
  color: #fafafa;
}
.cid-u4mw2J5NWA .mbr-text,
.cid-u4mw2J5NWA .mbr-section-btn {
  color: #fafafa;
}
.cid-u4mw2JoDrm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u4mw2JoDrm .mbr-section-subtitle {
  color: #767676;
}
.cid-u4mw2JHmz6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u4mw2JHmz6 img {
  width: auto;
}
.cid-u4mw2JHmz6 .button {
  background-color: #354256;
  transition-duration: 1s;
  border: none;
  color: whitesmoke;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  margin: 20px 40px;
  cursor: pointer;
}
.cid-u4mw2JHmz6 .button1 {
  border-radius: 20px;
  width: 80%;
  height: 120px;
}
.cid-u4mw2JHmz6 .button1:hover {
  background-color: #04AA6D;
  color: white;
}
.cid-u4mw2JXWmG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u4mw2JXWmG .mbr-section-subtitle {
  color: #767676;
}
.cid-u5H05P9pBI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u5H05P9pBI img {
  width: auto;
}
.cid-u5H05P9pBI .button {
  background-color: #04AA6D;
  transition-duration: 1s;
  border: none;
  color: whitesmoke;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  margin: 20px 40px;
  cursor: pointer;
}
.cid-u5H05P9pBI .button1 {
  border-radius: 20px;
  width: 80%;
  height: 120px;
}
.cid-u5H05P9pBI .button1:hover {
  background-color: #354256;
  color: white;
}
.cid-u4mw2KsQMy {
  background-color: #ffffff;
}
.cid-u4mw2KsQMy .wave1 {
  fill: #334355;
}
.cid-u4mw2KsQMy .wave2 {
  fill: #334355;
  opacity: 0.5;
}
.cid-u4mw2KsQMy .wave3,
.cid-u4mw2KsQMy .wave4 {
  fill: #334355;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HskLw7ax .hidden {
  display: none;
}
.cid-u4aIlczdWX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4aIlczdWX nav.navbar {
  position: fixed;
}
.cid-u4aIlczdWX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIlczdWX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4aIlczdWX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4aIlczdWX .dropdown-item:hover,
.cid-u4aIlczdWX .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4aIlczdWX .dropdown-item:hover span {
  color: yellow;
}
.cid-u4aIlczdWX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4aIlczdWX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4aIlczdWX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4aIlczdWX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4aIlczdWX .nav-link {
  position: relative;
}
.cid-u4aIlczdWX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIlczdWX .container {
    flex-wrap: wrap;
  }
}
.cid-u4aIlczdWX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4aIlczdWX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4aIlczdWX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4aIlczdWX .dropdown-menu,
.cid-u4aIlczdWX .navbar.opened {
  background: #354256 !important;
}
.cid-u4aIlczdWX .nav-item:focus,
.cid-u4aIlczdWX .nav-link:focus {
  outline: none;
}
.cid-u4aIlczdWX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4aIlczdWX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4aIlczdWX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4aIlczdWX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4aIlczdWX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4aIlczdWX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4aIlczdWX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4aIlczdWX .navbar.opened {
  transition: all 0.3s;
}
.cid-u4aIlczdWX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4aIlczdWX .navbar .navbar-logo img {
  width: auto;
}
.cid-u4aIlczdWX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4aIlczdWX .navbar.collapsed {
  justify-content: center;
}
.cid-u4aIlczdWX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4aIlczdWX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4aIlczdWX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4aIlczdWX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4aIlczdWX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4aIlczdWX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4aIlczdWX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4aIlczdWX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4aIlczdWX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4aIlczdWX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4aIlczdWX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4aIlczdWX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4aIlczdWX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4aIlczdWX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4aIlczdWX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4aIlczdWX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4aIlczdWX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4aIlczdWX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4aIlczdWX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4aIlczdWX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4aIlczdWX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4aIlczdWX .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4aIlczdWX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4aIlczdWX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4aIlczdWX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4aIlczdWX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4aIlczdWX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4aIlczdWX .dropdown-item.active,
.cid-u4aIlczdWX .dropdown-item:active {
  background-color: transparent;
}
.cid-u4aIlczdWX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4aIlczdWX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4aIlczdWX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4aIlczdWX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4aIlczdWX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4aIlczdWX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4aIlczdWX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4aIlczdWX .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4aIlczdWX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4aIlczdWX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4aIlczdWX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4aIlczdWX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIlczdWX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4aIlczdWX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4aIlczdWX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIlczdWX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4aIlczdWX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4aIlczdWX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4aIlczdWX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4aIlczdWX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4aIlczdWX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4aIlczdWX .navbar {
    height: 70px;
  }
  .cid-u4aIlczdWX .navbar.opened {
    height: auto;
  }
  .cid-u4aIlczdWX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4aIlczdWX .nav-link:hover,
.cid-u4aIlczdWX .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4aIld93Xk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4aIld93Xk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aIld93Xk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aIld93Xk .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4aIld93Xk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIld93Xk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4aIld93Xk .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4aIld93Xk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4aIld93Xk .mbr-section-title {
  color: #fafafa;
}
.cid-u4aIld93Xk .mbr-text,
.cid-u4aIld93Xk .mbr-section-btn {
  color: #fafafa;
}
.cid-u4mxTck5Ps {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4mxTck5Ps .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxTck5Ps .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxTck5Ps .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxTck5Ps img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4mxTck5Ps .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4mxTck5Ps .mbr-section-title {
  color: #fafafa;
}
.cid-u4mxTck5Ps .mbr-text {
  color: #ffffff;
}
.cid-u4mIHFAnvZ {
  background-color: #354256;
}
.cid-u4mIHFAnvZ .wave1 {
  fill: #ffffff;
}
.cid-u4mIHFAnvZ .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u4mIHFAnvZ .wave3,
.cid-u4mIHFAnvZ .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u4mxTNaVR9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4mxTNaVR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxTNaVR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxTNaVR9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxTNaVR9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4mxTNaVR9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4mIGUn31f {
  background-color: #ffffff;
}
.cid-u4mIGUn31f .wave1 {
  fill: #354256;
}
.cid-u4mIGUn31f .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4mIGUn31f .wave3,
.cid-u4mIGUn31f .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4mxUe5EK0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4mxUe5EK0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxUe5EK0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxUe5EK0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxUe5EK0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4mxUe5EK0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4mxUe5EK0 .mbr-section-title {
  color: #fafafa;
}
.cid-u4mxUe5EK0 .mbr-text {
  color: #ffffff;
}
.cid-u4mIFZ3fNE {
  background-color: #354256;
}
.cid-u4mIFZ3fNE .wave1 {
  fill: #ffffff;
}
.cid-u4mIFZ3fNE .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u4mIFZ3fNE .wave3,
.cid-u4mIFZ3fNE .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u4mxUWZB2X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4mxUWZB2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxUWZB2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxUWZB2X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxUWZB2X img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u4mxUWZB2X .text-wrapper {
    padding: 2rem;
  }
}
.cid-u4aIleIghl {
  background-color: #ffffff;
}
.cid-u4aIleIghl .wave1 {
  fill: #354256;
}
.cid-u4aIleIghl .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4aIleIghl .wave3,
.cid-u4aIleIghl .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Hs9PHIoF .hidden {
  display: none;
}
.cid-u4mxGzDK62 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4mxGzDK62 nav.navbar {
  position: fixed;
}
.cid-u4mxGzDK62 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mxGzDK62 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4mxGzDK62 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4mxGzDK62 .dropdown-item:hover,
.cid-u4mxGzDK62 .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4mxGzDK62 .dropdown-item:hover span {
  color: yellow;
}
.cid-u4mxGzDK62 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4mxGzDK62 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4mxGzDK62 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4mxGzDK62 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4mxGzDK62 .nav-link {
  position: relative;
}
.cid-u4mxGzDK62 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mxGzDK62 .container {
    flex-wrap: wrap;
  }
}
.cid-u4mxGzDK62 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4mxGzDK62 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4mxGzDK62 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4mxGzDK62 .dropdown-menu,
.cid-u4mxGzDK62 .navbar.opened {
  background: #354256 !important;
}
.cid-u4mxGzDK62 .nav-item:focus,
.cid-u4mxGzDK62 .nav-link:focus {
  outline: none;
}
.cid-u4mxGzDK62 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4mxGzDK62 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4mxGzDK62 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4mxGzDK62 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4mxGzDK62 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4mxGzDK62 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4mxGzDK62 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4mxGzDK62 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4mxGzDK62 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4mxGzDK62 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4mxGzDK62 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4mxGzDK62 .navbar.collapsed {
  justify-content: center;
}
.cid-u4mxGzDK62 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4mxGzDK62 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4mxGzDK62 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4mxGzDK62 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4mxGzDK62 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4mxGzDK62 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4mxGzDK62 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4mxGzDK62 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4mxGzDK62 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4mxGzDK62 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4mxGzDK62 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4mxGzDK62 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4mxGzDK62 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4mxGzDK62 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4mxGzDK62 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4mxGzDK62 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4mxGzDK62 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4mxGzDK62 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4mxGzDK62 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4mxGzDK62 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4mxGzDK62 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4mxGzDK62 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4mxGzDK62 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4mxGzDK62 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4mxGzDK62 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4mxGzDK62 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4mxGzDK62 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4mxGzDK62 .dropdown-item.active,
.cid-u4mxGzDK62 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4mxGzDK62 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4mxGzDK62 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4mxGzDK62 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4mxGzDK62 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4mxGzDK62 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4mxGzDK62 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4mxGzDK62 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4mxGzDK62 .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4mxGzDK62 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4mxGzDK62 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4mxGzDK62 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4mxGzDK62 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mxGzDK62 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4mxGzDK62 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4mxGzDK62 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mxGzDK62 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4mxGzDK62 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4mxGzDK62 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4mxGzDK62 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4mxGzDK62 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4mxGzDK62 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4mxGzDK62 .navbar {
    height: 70px;
  }
  .cid-u4mxGzDK62 .navbar.opened {
    height: auto;
  }
  .cid-u4mxGzDK62 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4mxGzDK62 .nav-link:hover,
.cid-u4mxGzDK62 .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4mxGAcITR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4mxGAcITR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxGAcITR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4mxGAcITR .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4mxGAcITR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4mxGAcITR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4mxGAcITR .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4mxGAcITR .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4mxGAcITR .mbr-section-title {
  color: #fafafa;
}
.cid-u4mxGAcITR .mbr-text,
.cid-u4mxGAcITR .mbr-section-btn {
  color: #fafafa;
}
.cid-u4mxGALAKS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4mxGALAKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxGALAKS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxGALAKS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxGALAKS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u4mxGALAKS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u4mxGALAKS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u4mxGALAKS .mbr-section-title {
  color: #000000;
}
.cid-u4mxGALAKS .mbr-text,
.cid-u4mxGALAKS .mbr-section-btn {
  color: #000000;
}
.cid-u4mxGB9ZLE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4mxGB9ZLE .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-u4mxGB9ZLE img,
.cid-u4mxGB9ZLE .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u4mxGB9ZLE .item:focus,
.cid-u4mxGB9ZLE span:focus {
  outline: none;
}
.cid-u4mxGB9ZLE .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u4mxGB9ZLE .item {
    margin-bottom: 1rem;
  }
}
.cid-u4mxGB9ZLE .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u4mxGB9ZLE .item-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-u4mxGB9ZLE .item-content .item-footer {
  margin-top: auto;
}
.cid-u4mxGB9ZLE .mbr-section-title {
  color: #000000;
}
.cid-u4mxGB9ZLE .mbr-text,
.cid-u4mxGB9ZLE .mbr-section-btn {
  color: #000000;
}
.cid-u4mxGB9ZLE .item-title {
  color: #000000;
}
.cid-u4mxGB9ZLE .content-head {
  max-width: 800px;
}
.cid-u4mxGBBmwv {
  background-color: #ffffff;
}
.cid-u4mxGBBmwv .wave1 {
  fill: #354256;
}
.cid-u4mxGBBmwv .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4mxGBBmwv .wave3,
.cid-u4mxGBBmwv .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u6PxFc27lj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u6PxFc27lj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6PxFc27lj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6PxFc27lj .row {
  flex-direction: row-reverse;
}
.cid-u6PxFc27lj .video-wrapper iframe {
  width: 100%;
}
.cid-u6PxFc27lj .mbr-section-title,
.cid-u6PxFc27lj .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u6PxFc27lj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6PxFc27lj .mbr-text {
  color: #fafafa;
}
.cid-u6PxFc27lj .mbr-section-subtitle {
  color: #fafafa;
}
.cid-u4mxGCwdm8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #354256;
}
.cid-u4mxGCwdm8 h6 {
  line-height: 1.2;
}
.cid-u4mxGCwdm8 img,
.cid-u4mxGCwdm8 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u4mxGCwdm8 img,
  .cid-u4mxGCwdm8 .item-img {
    height: 300px;
    object-fit: cover;
  }
}
.cid-u4mxGCwdm8 .item:focus,
.cid-u4mxGCwdm8 span:focus {
  outline: none;
}
.cid-u4mxGCwdm8 .item-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 2rem;
}
.cid-u4mxGCwdm8 .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-u4mxGCwdm8 .mbr-section-title {
  color: #000000;
}
.cid-u4mxGCwdm8 .mbr-text,
.cid-u4mxGCwdm8 .mbr-section-btn {
  color: #000000;
}
.cid-u4mxGCwdm8 .item-title {
  color: #000000;
  text-align: center;
}
.cid-u4mxGCwdm8 .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u4mxGCwdm8 .item-text {
  color: #000000;
  text-align: center;
}
.cid-u4mxGCwdm8 .content-head {
  max-width: 800px;
}
@media (max-width: 767px) {
  .cid-u4mxGCwdm8 img,
  .cid-u4mxGCwdm8 .item-img {
    height: 300px;
    object-fit: cover;
  }
  .cid-u4mxGCwdm8 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxGCTDQk {
  background-color: #354256;
}
.cid-u4mxGCTDQk .wave1 {
  fill: #ffffff;
}
.cid-u4mxGCTDQk .wave2 {
  fill: #ffffff;
  opacity: 0.5;
}
.cid-u4mxGCTDQk .wave3,
.cid-u4mxGCTDQk .wave4 {
  fill: #ffffff;
  opacity: 0.35;
}
.cid-u4mxGD6b2F {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u4mxGD6b2F .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4mxGD6b2F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u4mxGD6b2F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u4mxGD6b2F .row {
  flex-direction: row-reverse;
}
.cid-u4mxGD6b2F .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u4mxGD6b2F .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u4mxGD6b2F .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u4mxGD6b2F .mbr-section-title {
  color: #000000;
}
.cid-u4mxGD6b2F .mbr-text,
.cid-u4mxGD6b2F .mbr-section-btn {
  color: #000000;
}
.cid-u4mxGDtp6a {
  background-color: #ffffff;
}
.cid-u4mxGDtp6a .wave1 {
  fill: #354256;
}
.cid-u4mxGDtp6a .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4mxGDtp6a .wave3,
.cid-u4mxGDtp6a .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5Hs7Jahp0 .hidden {
  display: none;
}
.cid-u4VRwTFOim {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4VRwTFOim nav.navbar {
  position: fixed;
}
.cid-u4VRwTFOim .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4VRwTFOim .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4VRwTFOim .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4VRwTFOim .dropdown-item:hover,
.cid-u4VRwTFOim .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u4VRwTFOim .dropdown-item:hover span {
  color: yellow;
}
.cid-u4VRwTFOim .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4VRwTFOim .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4VRwTFOim .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4VRwTFOim .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4VRwTFOim .nav-link {
  position: relative;
}
.cid-u4VRwTFOim .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4VRwTFOim .container {
    flex-wrap: wrap;
  }
}
.cid-u4VRwTFOim .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4VRwTFOim .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4VRwTFOim .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4VRwTFOim .dropdown-menu,
.cid-u4VRwTFOim .navbar.opened {
  background: #354256 !important;
}
.cid-u4VRwTFOim .nav-item:focus,
.cid-u4VRwTFOim .nav-link:focus {
  outline: none;
}
.cid-u4VRwTFOim .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4VRwTFOim .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4VRwTFOim .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4VRwTFOim .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4VRwTFOim .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4VRwTFOim .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4VRwTFOim .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u4VRwTFOim .navbar.opened {
  transition: all 0.3s;
}
.cid-u4VRwTFOim .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4VRwTFOim .navbar .navbar-logo img {
  width: auto;
}
.cid-u4VRwTFOim .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4VRwTFOim .navbar.collapsed {
  justify-content: center;
}
.cid-u4VRwTFOim .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4VRwTFOim .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4VRwTFOim .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4VRwTFOim .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4VRwTFOim .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4VRwTFOim .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u4VRwTFOim .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4VRwTFOim .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4VRwTFOim .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4VRwTFOim .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4VRwTFOim .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4VRwTFOim .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4VRwTFOim .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4VRwTFOim .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u4VRwTFOim .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4VRwTFOim .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4VRwTFOim .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4VRwTFOim .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4VRwTFOim .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4VRwTFOim .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4VRwTFOim .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4VRwTFOim .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4VRwTFOim .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4VRwTFOim .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4VRwTFOim .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4VRwTFOim .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4VRwTFOim .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4VRwTFOim .dropdown-item.active,
.cid-u4VRwTFOim .dropdown-item:active {
  background-color: transparent;
}
.cid-u4VRwTFOim .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4VRwTFOim .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4VRwTFOim .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4VRwTFOim .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u4VRwTFOim .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4VRwTFOim .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4VRwTFOim ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4VRwTFOim .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u4VRwTFOim button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4VRwTFOim button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u4VRwTFOim button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4VRwTFOim button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4VRwTFOim button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4VRwTFOim button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4VRwTFOim nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4VRwTFOim nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4VRwTFOim nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4VRwTFOim nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4VRwTFOim .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4VRwTFOim a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4VRwTFOim .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4VRwTFOim .navbar {
    height: 70px;
  }
  .cid-u4VRwTFOim .navbar.opened {
    height: auto;
  }
  .cid-u4VRwTFOim .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4VRwTFOim .nav-link:hover,
.cid-u4VRwTFOim .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u4VRwUcDuh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fahacourtbar.webp");
}
.cid-u4VRwUcDuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4VRwUcDuh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4VRwUcDuh .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u4VRwUcDuh .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4VRwUcDuh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u4VRwUcDuh .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u4VRwUcDuh .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u4VRwUcDuh .mbr-section-title {
  color: #fafafa;
}
.cid-u4VRwUcDuh .mbr-text,
.cid-u4VRwUcDuh .mbr-section-btn {
  color: #fafafa;
}
.cid-u5HsJCp0vf .hidden {
  display: none;
}
.cid-u4VRG4IVQ2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4VRwV28DP {
  background-color: #ffffff;
}
.cid-u4VRwV28DP .wave1 {
  fill: #354256;
}
.cid-u4VRwV28DP .wave2 {
  fill: #354256;
  opacity: 0.5;
}
.cid-u4VRwV28DP .wave3,
.cid-u4VRwV28DP .wave4 {
  fill: #354256;
  opacity: 0.35;
}
.cid-u4aMBRQJnS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u4aMBRQJnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4aMBRQJnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4aMBRQJnS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u4aMBRQJnS .row {
    text-align: center;
  }
  .cid-u4aMBRQJnS .row > div {
    margin: auto;
  }
  .cid-u4aMBRQJnS .social-row {
    justify-content: center;
  }
}
.cid-u4aMBRQJnS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4aMBRQJnS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4aMBRQJnS .list {
    margin-bottom: 0rem;
  }
}
.cid-u4aMBRQJnS .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4aMBRQJnS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u4aMBRQJnS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u4aMBRQJnS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4aMBRQJnS P {
  text-align: center;
}
.cid-u4aMBRQJnS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u5HsLqUrWM .hidden {
  display: none;
}
.cid-u6ObcJr7xg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6ObcJr7xg nav.navbar {
  position: fixed;
}
.cid-u6ObcJr7xg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6ObcJr7xg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6ObcJr7xg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6ObcJr7xg .dropdown-item:hover,
.cid-u6ObcJr7xg .dropdown-item:focus {
  background: #354256 !important;
  color: white !important;
}
.cid-u6ObcJr7xg .dropdown-item:hover span {
  color: yellow;
}
.cid-u6ObcJr7xg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6ObcJr7xg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6ObcJr7xg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6ObcJr7xg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6ObcJr7xg .nav-link {
  position: relative;
}
.cid-u6ObcJr7xg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6ObcJr7xg .container {
    flex-wrap: wrap;
  }
}
.cid-u6ObcJr7xg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6ObcJr7xg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u6ObcJr7xg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6ObcJr7xg .dropdown-menu,
.cid-u6ObcJr7xg .navbar.opened {
  background: #354256 !important;
}
.cid-u6ObcJr7xg .nav-item:focus,
.cid-u6ObcJr7xg .nav-link:focus {
  outline: none;
}
.cid-u6ObcJr7xg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6ObcJr7xg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6ObcJr7xg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6ObcJr7xg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6ObcJr7xg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6ObcJr7xg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6ObcJr7xg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #354256;
}
.cid-u6ObcJr7xg .navbar.opened {
  transition: all 0.3s;
}
.cid-u6ObcJr7xg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6ObcJr7xg .navbar .navbar-logo img {
  width: auto;
}
.cid-u6ObcJr7xg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6ObcJr7xg .navbar.collapsed {
  justify-content: center;
}
.cid-u6ObcJr7xg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6ObcJr7xg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6ObcJr7xg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u6ObcJr7xg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6ObcJr7xg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6ObcJr7xg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6ObcJr7xg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6ObcJr7xg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6ObcJr7xg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6ObcJr7xg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6ObcJr7xg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6ObcJr7xg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6ObcJr7xg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6ObcJr7xg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6ObcJr7xg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6ObcJr7xg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6ObcJr7xg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6ObcJr7xg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6ObcJr7xg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6ObcJr7xg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6ObcJr7xg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6ObcJr7xg .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6ObcJr7xg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6ObcJr7xg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6ObcJr7xg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6ObcJr7xg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6ObcJr7xg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6ObcJr7xg .dropdown-item.active,
.cid-u6ObcJr7xg .dropdown-item:active {
  background-color: transparent;
}
.cid-u6ObcJr7xg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6ObcJr7xg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6ObcJr7xg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6ObcJr7xg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #354256;
}
.cid-u6ObcJr7xg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6ObcJr7xg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6ObcJr7xg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6ObcJr7xg .navbar-buttons {
  text-align: center;
  min-width: 300px;
}
.cid-u6ObcJr7xg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6ObcJr7xg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-u6ObcJr7xg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6ObcJr7xg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6ObcJr7xg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6ObcJr7xg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6ObcJr7xg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6ObcJr7xg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6ObcJr7xg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6ObcJr7xg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6ObcJr7xg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6ObcJr7xg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6ObcJr7xg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6ObcJr7xg .navbar {
    height: 70px;
  }
  .cid-u6ObcJr7xg .navbar.opened {
    height: auto;
  }
  .cid-u6ObcJr7xg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6ObcJr7xg .nav-link:hover,
.cid-u6ObcJr7xg .dropdown-item:hover {
  color: #ffbb33 !important;
}
.cid-u6ObcJVtl4 {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-6.webp");
}
.cid-u6ObcJVtl4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6ObcJVtl4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6ObcJVtl4 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-u6ObcJVtl4 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u6ObcJVtl4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u6ObcJVtl4 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-u6ObcJVtl4 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u6ObcJVtl4 .mbr-section-title {
  color: #fafafa;
}
.cid-u6ObcJVtl4 .mbr-text,
.cid-u6ObcJVtl4 .mbr-section-btn {
  color: #fafafa;
}
.cid-u6ObcL5Ypd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #354256;
}
.cid-u6ObcL5Ypd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6ObcL5Ypd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6ObcL5Ypd .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u6ObcL5Ypd .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u6ObcL5Ypd .row {
    text-align: center;
  }
  .cid-u6ObcL5Ypd .row > div {
    margin: auto;
  }
  .cid-u6ObcL5Ypd .social-row {
    justify-content: center;
  }
}
.cid-u6ObcL5Ypd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u6ObcL5Ypd .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-u6ObcL5Ypd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6ObcL5Ypd .list {
    margin-bottom: 0rem;
  }
}
.cid-u6ObcL5Ypd .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-u6ObcL5Ypd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-u6ObcL5Ypd .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-u6ObcL5Ypd div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u6ObcL5Ypd P {
  text-align: center;
}
.cid-u6ObcL5Ypd a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none !important;
  color: #ffbb33 !important;
}
.cid-u6ObcLEjIL .hidden {
  display: none;
}
