body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat-Bold';
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Montserrat-SemiBold';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Montserrat-Bold';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montserrat-SemiBold';
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #205b8f !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #205b8f !important;
}
.bg-warning {
  background-color: #cec77d !important;
}
.bg-danger {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #205b8f !important;
  border-color: #205b8f !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: #102e48 !important;
  border-color: #102e48 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #102e48 !important;
  border-color: #102e48 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #205b8f !important;
  border-color: #205b8f !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: #102e48 !important;
  border-color: #102e48 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #102e48 !important;
  border-color: #102e48 !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.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-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cec77d !important;
  border-color: #cec77d !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #b1a843 !important;
  border-color: #b1a843 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b1a843 !important;
  border-color: #b1a843 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: transparent;
  color: #205b8f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #102e48 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #205b8f !important;
  border-color: #205b8f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #205b8f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #102e48 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #205b8f !important;
  border-color: #205b8f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cec77d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b1a843 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cec77d !important;
  border-color: #cec77d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #205b8f !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #205b8f !important;
}
.text-warning {
  color: #cec77d !important;
}
.text-danger {
  color: #000000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d263c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0d263c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a69d3f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #205b8f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #205b8f;
}
.alert-warning {
  background-color: #cec77d;
}
.alert-danger {
  background-color: #000000;
}
.mbr-gallery-filter li.active .btn {
  background-color: #205b8f;
  border-color: #205b8f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #205b8f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #559bd9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #559bd9;
}
.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: #b3b3b3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat-Bold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #205b8f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat-Bold';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #205b8f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #205b8f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #205b8f;
}
.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: #205b8f;
  border-bottom-color: #205b8f;
}
.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: #205b8f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%23205b8f' %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-sYLXReAVuY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYLXReAVuY nav.navbar {
  position: fixed;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYLXReAVuY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYLXReAVuY .dropdown-item:hover,
.cid-sYLXReAVuY .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYLXReAVuY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYLXReAVuY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYLXReAVuY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYLXReAVuY .nav-item {
  margin: 0 31px;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYLXReAVuY .nav-link {
  position: relative;
}
.cid-sYLXReAVuY .nav-link:hover,
.cid-sYLXReAVuY .nav-link:focus,
.cid-sYLXReAVuY .nav-link:active {
  color: #000000 !important;
}
.cid-sYLXReAVuY .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .container {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar-caption:hover,
.cid-sYLXReAVuY .navbar-caption:focus,
.cid-sYLXReAVuY .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYLXReAVuY .dropdown-menu,
.cid-sYLXReAVuY .navbar.opened {
  background: #ffffff !important;
}
.cid-sYLXReAVuY .nav-item:focus,
.cid-sYLXReAVuY .nav-link:focus {
  outline: none;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYLXReAVuY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYLXReAVuY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYLXReAVuY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.opened {
  transition: all 0.3s;
}
.cid-sYLXReAVuY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYLXReAVuY .navbar .navbar-logo img {
  width: auto;
}
.cid-sYLXReAVuY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYLXReAVuY .navbar.collapsed {
  justify-content: center;
}
.cid-sYLXReAVuY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYLXReAVuY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYLXReAVuY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYLXReAVuY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYLXReAVuY .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-sYLXReAVuY .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYLXReAVuY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYLXReAVuY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYLXReAVuY .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYLXReAVuY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYLXReAVuY .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;
  display: flex;
}
.cid-sYLXReAVuY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYLXReAVuY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYLXReAVuY .dropdown-item.active,
.cid-sYLXReAVuY .dropdown-item:active {
  background-color: transparent;
}
.cid-sYLXReAVuY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYLXReAVuY .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYLXReAVuY ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYLXReAVuY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYLXReAVuY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYLXReAVuY .navbar {
    height: 70px;
  }
  .cid-sYLXReAVuY .navbar.opened {
    height: auto;
  }
  .cid-sYLXReAVuY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYdlpIBlLY {
  background-image: url("../../../assets/images/gatehouse-homepage-image-3-1836x1316.jpg");
}
.cid-sYdtLn2YgU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #cec77d;
}
.cid-sYdtLn2YgU .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sYdtLn2YgU .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sYdtLn2YgU .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sYdtLn2YgU P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sYdtLn2YgU img {
  margin-top: 15px;
}
@media (max-width: 990px) {
  .cid-sYdtLn2YgU .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sYdtLn2YgU .top,
  .cid-sYdtLn2YgU .top-2 {
    margin-top: 0;
  }
}
.cid-sYduYpRxPy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYduYpRxPy .row {
  align-items: center;
}
.cid-sYduYpRxPy .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYduYpRxPy .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYduYpRxPy .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYduYpRxPy .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYduYpRxPy .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYvDqDNW5x {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYvDqDNW5x .title {
  min-height: 40px;
}
.cid-sYvDqDNW5x a {
  font-weight: 500;
}
.cid-sYWstsgzAb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYWstsgzAb .mbr-text,
.cid-sYWstsgzAb .mbr-section-btn {
  color: #000000;
}
.cid-sYiSFOXWkE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYiSFOXWkE .mbr-section-title {
  color: #533406;
  text-align: center;
}
.cid-sYiSFOXWkE .mbr-text,
.cid-sYiSFOXWkE .mbr-section-btn {
  text-align: center;
  color: #533406;
}
.cid-sYhSdSMxD0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sYhSdSMxD0 .carousel {
    min-height: 700px;
  }
  .cid-sYhSdSMxD0 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sYhSdSMxD0 .carousel {
    min-height: 455px;
  }
  .cid-sYhSdSMxD0 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sYhSdSMxD0 .carousel {
    min-height: 245px;
  }
  .cid-sYhSdSMxD0 .carousel img {
    max-height: 245px;
    object-fit: contain;
  }
  .cid-sYhSdSMxD0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sYhSdSMxD0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sYhSdSMxD0 .carousel,
.cid-sYhSdSMxD0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sYhSdSMxD0 .item-wrapper {
  width: 100%;
}
.cid-sYhSdSMxD0 .carousel-caption {
  bottom: 40px;
}
.cid-sYhSdSMxD0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sYhSdSMxD0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sYhSdSMxD0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sYhSdSMxD0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sYhSdSMxD0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sYhSdSMxD0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sYhSdSMxD0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sYhSdSMxD0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sYhSdSMxD0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sYhSdSMxD0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sYhSdSMxD0 .carousel-indicators li.active,
.cid-sYhSdSMxD0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sYhSdSMxD0 .carousel-indicators li::after,
.cid-sYhSdSMxD0 .carousel-indicators li::before {
  content: none;
}
.cid-sYhSdSMxD0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sYhSdSMxD0 .carousel-indicators {
    display: none !important;
  }
}
.cid-sYdAAhIRFx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYdAAhIRFx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYdAAhIRFx .row {
  flex-direction: row-reverse;
}
.cid-sYdAAhIRFx img {
  width: 100%;
}
.cid-sYdGWUgCBZ {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYdGWUgCBZ .image-block {
  margin: auto;
}
.cid-sYdGWUgCBZ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYdGWUgCBZ .image-block {
    width: 50% !important;
  }
}
.cid-sYdGWUgCBZ .container-fluid {
  padding: 0;
}
.cid-sYvNNUzmmO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYvNNUzmmO .title {
  min-height: 40px;
}
.cid-sYvNNUzmmO a {
  font-weight: 500;
}
.cid-sYvNNUzmmO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYvOcb7jWZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYvOcb7jWZ .title {
  min-height: 40px;
}
.cid-sYvOcb7jWZ a {
  font-weight: 500;
}
.cid-sYvOcb7jWZ .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYdI4McDfh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYdI4McDfh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYdI4McDfh .row {
  flex-direction: row-reverse;
}
.cid-sYdI4McDfh img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYLXReAVuY {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sYLXReAVuY nav.navbar {
  position: fixed;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYLXReAVuY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYLXReAVuY .dropdown-item:hover,
.cid-sYLXReAVuY .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYLXReAVuY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYLXReAVuY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYLXReAVuY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYLXReAVuY .nav-item {
  margin: 0 31px;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYLXReAVuY .nav-link {
  position: relative;
}
.cid-sYLXReAVuY .nav-link:hover,
.cid-sYLXReAVuY .nav-link:focus,
.cid-sYLXReAVuY .nav-link:active {
  color: #000000 !important;
}
.cid-sYLXReAVuY .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .container {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar-caption:hover,
.cid-sYLXReAVuY .navbar-caption:focus,
.cid-sYLXReAVuY .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYLXReAVuY .dropdown-menu,
.cid-sYLXReAVuY .navbar.opened {
  background: #ffffff !important;
}
.cid-sYLXReAVuY .nav-item:focus,
.cid-sYLXReAVuY .nav-link:focus {
  outline: none;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYLXReAVuY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYLXReAVuY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYLXReAVuY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.opened {
  transition: all 0.3s;
}
.cid-sYLXReAVuY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYLXReAVuY .navbar .navbar-logo img {
  width: auto;
}
.cid-sYLXReAVuY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYLXReAVuY .navbar.collapsed {
  justify-content: center;
}
.cid-sYLXReAVuY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYLXReAVuY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYLXReAVuY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYLXReAVuY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYLXReAVuY .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-sYLXReAVuY .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYLXReAVuY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYLXReAVuY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYLXReAVuY .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYLXReAVuY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYLXReAVuY .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;
  display: flex;
}
.cid-sYLXReAVuY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYLXReAVuY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYLXReAVuY .dropdown-item.active,
.cid-sYLXReAVuY .dropdown-item:active {
  background-color: transparent;
}
.cid-sYLXReAVuY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYLXReAVuY .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYLXReAVuY ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYLXReAVuY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYLXReAVuY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYLXReAVuY .navbar {
    height: 70px;
  }
  .cid-sYLXReAVuY .navbar.opened {
    height: auto;
  }
  .cid-sYLXReAVuY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYdXBhY32C {
  background-image: url("../../../assets/images/gatehouse-service-page-family-image.jpg");
}
.cid-sYdXBiPLC7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYdXBiPLC7 .row {
  align-items: center;
}
.cid-sYdXBiPLC7 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYdXBiPLC7 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYdXBiPLC7 .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYdXBiPLC7 .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYdXBiPLC7 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYKDz7l7th {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKDz7l7th .title {
  min-height: 40px;
}
.cid-sYKDz7l7th a {
  font-weight: 500;
}
.cid-sYdXBiqODy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #cec77d;
}
.cid-sYdXBiqODy .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sYdXBiqODy .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sYdXBiqODy .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sYdXBiqODy P {
  color: #533406;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sYdXBiqODy img {
  margin-top: 15px;
}
.cid-sYdXBiqODy img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-sYdXBiqODy .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sYdXBiqODy .top,
  .cid-sYdXBiqODy .top-2 {
    margin-top: 0;
  }
}
.cid-sYdZy4g8cR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cec77d;
}
.cid-sYdZy4g8cR .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sYdZy4g8cR .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sYdZy4g8cR .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-sYdZy4g8cR P {
  color: #533406;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-sYdZy4g8cR img {
  margin-top: 15px;
}
.cid-sYdZy4g8cR img {
  margin-top: 16px;
}
@media (max-width: 990px) {
  .cid-sYdZy4g8cR .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-sYdZy4g8cR .top,
  .cid-sYdZy4g8cR .top-2 {
    margin-top: 0;
  }
}
.cid-sYKE5PFGGa {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #cec77d;
}
.cid-sYKE5PFGGa .title {
  min-height: 40px;
}
.cid-sYKE5PFGGa a {
  font-weight: 500;
}
.cid-sYdXBkiuV0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYdXBkiuV0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYdXBkiuV0 .row {
  flex-direction: row-reverse;
}
.cid-sYdXBkiuV0 img {
  width: 100%;
}
.cid-sYiTFJ9Lte {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYiTFJ9Lte .image-block {
  margin: auto;
}
.cid-sYiTFJ9Lte .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYiTFJ9Lte .image-block {
    width: 50% !important;
  }
}
.cid-sYiTFJ9Lte .container-fluid {
  padding: 0;
}
.cid-sYKEqPv8ZG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKEqPv8ZG .title {
  min-height: 40px;
}
.cid-sYKEqPv8ZG a {
  font-weight: 500;
}
.cid-sYKEqPv8ZG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYKEvLUGBP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKEvLUGBP .title {
  min-height: 40px;
}
.cid-sYKEvLUGBP a {
  font-weight: 500;
}
.cid-sYKEvLUGBP .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYdXBmeceJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYdXBmeceJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYdXBmeceJ .row {
  flex-direction: row-reverse;
}
.cid-sYdXBmeceJ img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYLXReAVuY {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sYLXReAVuY nav.navbar {
  position: fixed;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYLXReAVuY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYLXReAVuY .dropdown-item:hover,
.cid-sYLXReAVuY .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYLXReAVuY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYLXReAVuY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYLXReAVuY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYLXReAVuY .nav-item {
  margin: 0 31px;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYLXReAVuY .nav-link {
  position: relative;
}
.cid-sYLXReAVuY .nav-link:hover,
.cid-sYLXReAVuY .nav-link:focus,
.cid-sYLXReAVuY .nav-link:active {
  color: #000000 !important;
}
.cid-sYLXReAVuY .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .container {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar-caption:hover,
.cid-sYLXReAVuY .navbar-caption:focus,
.cid-sYLXReAVuY .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYLXReAVuY .dropdown-menu,
.cid-sYLXReAVuY .navbar.opened {
  background: #ffffff !important;
}
.cid-sYLXReAVuY .nav-item:focus,
.cid-sYLXReAVuY .nav-link:focus {
  outline: none;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYLXReAVuY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYLXReAVuY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYLXReAVuY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.opened {
  transition: all 0.3s;
}
.cid-sYLXReAVuY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYLXReAVuY .navbar .navbar-logo img {
  width: auto;
}
.cid-sYLXReAVuY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYLXReAVuY .navbar.collapsed {
  justify-content: center;
}
.cid-sYLXReAVuY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYLXReAVuY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYLXReAVuY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYLXReAVuY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYLXReAVuY .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-sYLXReAVuY .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYLXReAVuY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYLXReAVuY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYLXReAVuY .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYLXReAVuY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYLXReAVuY .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;
  display: flex;
}
.cid-sYLXReAVuY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYLXReAVuY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYLXReAVuY .dropdown-item.active,
.cid-sYLXReAVuY .dropdown-item:active {
  background-color: transparent;
}
.cid-sYLXReAVuY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYLXReAVuY .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYLXReAVuY ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYLXReAVuY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYLXReAVuY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYLXReAVuY .navbar {
    height: 70px;
  }
  .cid-sYLXReAVuY .navbar.opened {
    height: auto;
  }
  .cid-sYLXReAVuY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYjiFBy1D8 {
  background-image: url("../../../assets/images/helping-hands.jpg");
}
.cid-sYe0zP5Ccv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYe0zP5Ccv .row {
  align-items: center;
}
.cid-sYe0zP5Ccv .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYe0zP5Ccv .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYe0zP5Ccv .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYe0zP5Ccv .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYe0zP5Ccv .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYKF4ks1Nt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKF4ks1Nt .title {
  min-height: 40px;
}
.cid-sYKF4ks1Nt a {
  font-weight: 500;
}
.cid-sYe48930Rl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #cec77d;
}
.cid-sYe48930Rl .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sYe48930Rl .team-card:hover {
  transform: translateY(-10px);
}
.cid-sYe48930Rl .card-wrap {
  background: #cec77d;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sYe48930Rl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sYe48930Rl .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sYe48930Rl .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sYe48930Rl .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sYe48930Rl .social-row {
  text-align: center;
}
.cid-sYe48930Rl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sYe48930Rl .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sYe48930Rl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sYe48930Rl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sYe48930Rl .card-title,
.cid-sYe48930Rl .social-row {
  color: #205b8f;
}
.cid-sYe48930Rl .mbr-role,
.cid-sYe48930Rl .social-row {
  color: #000000;
}
.cid-sYe5IBjzDB {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #cec77d;
}
.cid-sYe5IBjzDB .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sYe5IBjzDB .team-card:hover {
  transform: translateY(-10px);
}
.cid-sYe5IBjzDB .card-wrap {
  background: #cec77d;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sYe5IBjzDB .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sYe5IBjzDB .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sYe5IBjzDB .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sYe5IBjzDB .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sYe5IBjzDB .social-row {
  text-align: center;
}
.cid-sYe5IBjzDB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sYe5IBjzDB .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sYe5IBjzDB .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sYe5IBjzDB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sYe5IBjzDB .card-title,
.cid-sYe5IBjzDB .social-row {
  color: #205b8f;
}
.cid-sYe5IBjzDB .mbr-role,
.cid-sYe5IBjzDB .social-row {
  color: #000000;
}
.cid-sYe0zRvsr3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYe0zRvsr3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYe0zRvsr3 .row {
  flex-direction: row-reverse;
}
.cid-sYe0zRvsr3 img {
  width: 100%;
}
.cid-sYiTO2sIga {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYiTO2sIga .image-block {
  margin: auto;
}
.cid-sYiTO2sIga .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYiTO2sIga .image-block {
    width: 50% !important;
  }
}
.cid-sYiTO2sIga .container-fluid {
  padding: 0;
}
.cid-sYKFjRZKH4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKFjRZKH4 .title {
  min-height: 40px;
}
.cid-sYKFjRZKH4 a {
  font-weight: 500;
}
.cid-sYKFjRZKH4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYKFj9LrWa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKFj9LrWa .title {
  min-height: 40px;
}
.cid-sYKFj9LrWa a {
  font-weight: 500;
}
.cid-sYKFj9LrWa .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYXNhSTjmu {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYXNhSTjmu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYXNhSTjmu .row {
  flex-direction: row-reverse;
}
.cid-sYXNhSTjmu img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYLXReAVuY {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sYLXReAVuY nav.navbar {
  position: fixed;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYLXReAVuY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYLXReAVuY .dropdown-item:hover,
.cid-sYLXReAVuY .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYLXReAVuY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYLXReAVuY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYLXReAVuY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYLXReAVuY .nav-item {
  margin: 0 31px;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYLXReAVuY .nav-link {
  position: relative;
}
.cid-sYLXReAVuY .nav-link:hover,
.cid-sYLXReAVuY .nav-link:focus,
.cid-sYLXReAVuY .nav-link:active {
  color: #000000 !important;
}
.cid-sYLXReAVuY .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .container {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar-caption:hover,
.cid-sYLXReAVuY .navbar-caption:focus,
.cid-sYLXReAVuY .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYLXReAVuY .dropdown-menu,
.cid-sYLXReAVuY .navbar.opened {
  background: #ffffff !important;
}
.cid-sYLXReAVuY .nav-item:focus,
.cid-sYLXReAVuY .nav-link:focus {
  outline: none;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYLXReAVuY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYLXReAVuY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYLXReAVuY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.opened {
  transition: all 0.3s;
}
.cid-sYLXReAVuY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYLXReAVuY .navbar .navbar-logo img {
  width: auto;
}
.cid-sYLXReAVuY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYLXReAVuY .navbar.collapsed {
  justify-content: center;
}
.cid-sYLXReAVuY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYLXReAVuY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYLXReAVuY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYLXReAVuY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYLXReAVuY .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-sYLXReAVuY .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYLXReAVuY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYLXReAVuY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYLXReAVuY .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYLXReAVuY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYLXReAVuY .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;
  display: flex;
}
.cid-sYLXReAVuY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYLXReAVuY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYLXReAVuY .dropdown-item.active,
.cid-sYLXReAVuY .dropdown-item:active {
  background-color: transparent;
}
.cid-sYLXReAVuY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYLXReAVuY .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYLXReAVuY ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYLXReAVuY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYLXReAVuY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYLXReAVuY .navbar {
    height: 70px;
  }
  .cid-sYLXReAVuY .navbar.opened {
    height: auto;
  }
  .cid-sYLXReAVuY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYjS08KDix {
  background-image: url("../../../assets/images/donate-paget-1836x1355.jpg");
}
.cid-sYe6pc9jix {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYe6pc9jix .row {
  align-items: center;
}
.cid-sYe6pc9jix .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYe6pc9jix .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYe6pc9jix .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYe6pc9jix .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYe6pc9jix .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYKHLCoLCs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKHLCoLCs .title {
  min-height: 40px;
}
.cid-sYKHLCoLCs a {
  font-weight: 500;
}
.cid-sYmKgiWnmD {
  background: #cec77d;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-sYmKgiWnmD .image-block {
  margin: auto;
}
.cid-sYmKgiWnmD .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYmKgiWnmD .image-block {
    width: 100% !important;
  }
}
.cid-sYmKgiWnmD .container-fluid {
  padding: 0;
}
.cid-sYmKgiWnmD img:hover {
  transform: scale(0.95);
}
.cid-sYKI2isDFa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKI2isDFa .title {
  min-height: 40px;
}
.cid-sYKI2isDFa a {
  font-weight: 500;
}
.cid-sYmKh7uAu1 {
  background: #cec77d;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-sYmKh7uAu1 .image-block {
  margin: auto;
}
.cid-sYmKh7uAu1 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYmKh7uAu1 .image-block {
    width: 100% !important;
  }
}
.cid-sYmKh7uAu1 .container-fluid {
  padding: 0;
}
.cid-sYmKh7uAu1 img:hover {
  transform: scale(0.95);
}
.cid-sYKIs2ZwXr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKIs2ZwXr .title {
  min-height: 40px;
}
.cid-sYKIs2ZwXr a {
  font-weight: 500;
}
.cid-sYe6pe1ElR {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYe6pe1ElR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYe6pe1ElR .row {
  flex-direction: row-reverse;
}
.cid-sYe6pe1ElR img {
  width: 100%;
}
.cid-sYiUt5zOxz {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYiUt5zOxz .image-block {
  margin: auto;
}
.cid-sYiUt5zOxz .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYiUt5zOxz .image-block {
    width: 50% !important;
  }
}
.cid-sYiUt5zOxz .container-fluid {
  padding: 0;
}
.cid-sYKHFmYXa7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKHFmYXa7 .title {
  min-height: 40px;
}
.cid-sYKHFmYXa7 a {
  font-weight: 500;
}
.cid-sYKHFmYXa7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYKHFOTi7n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKHFOTi7n .title {
  min-height: 40px;
}
.cid-sYKHFOTi7n a {
  font-weight: 500;
}
.cid-sYKHFOTi7n .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYXNohe5rN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYXNohe5rN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYXNohe5rN .row {
  flex-direction: row-reverse;
}
.cid-sYXNohe5rN img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYLXReAVuY {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sYLXReAVuY nav.navbar {
  position: fixed;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYLXReAVuY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYLXReAVuY .dropdown-item:hover,
.cid-sYLXReAVuY .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYLXReAVuY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYLXReAVuY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYLXReAVuY .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYLXReAVuY .nav-item {
  margin: 0 31px;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYLXReAVuY .nav-link {
  position: relative;
}
.cid-sYLXReAVuY .nav-link:hover,
.cid-sYLXReAVuY .nav-link:focus,
.cid-sYLXReAVuY .nav-link:active {
  color: #000000 !important;
}
.cid-sYLXReAVuY .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .container {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar-caption:hover,
.cid-sYLXReAVuY .navbar-caption:focus,
.cid-sYLXReAVuY .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYLXReAVuY .dropdown-menu,
.cid-sYLXReAVuY .navbar.opened {
  background: #ffffff !important;
}
.cid-sYLXReAVuY .nav-item:focus,
.cid-sYLXReAVuY .nav-link:focus {
  outline: none;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYLXReAVuY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYLXReAVuY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYLXReAVuY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYLXReAVuY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.opened {
  transition: all 0.3s;
}
.cid-sYLXReAVuY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYLXReAVuY .navbar .navbar-logo img {
  width: auto;
}
.cid-sYLXReAVuY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYLXReAVuY .navbar.collapsed {
  justify-content: center;
}
.cid-sYLXReAVuY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYLXReAVuY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYLXReAVuY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYLXReAVuY .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-sYLXReAVuY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYLXReAVuY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYLXReAVuY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYLXReAVuY .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-sYLXReAVuY .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYLXReAVuY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYLXReAVuY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYLXReAVuY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYLXReAVuY .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYLXReAVuY .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYLXReAVuY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYLXReAVuY .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;
  display: flex;
}
.cid-sYLXReAVuY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYLXReAVuY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYLXReAVuY .dropdown-item.active,
.cid-sYLXReAVuY .dropdown-item:active {
  background-color: transparent;
}
.cid-sYLXReAVuY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYLXReAVuY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYLXReAVuY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYLXReAVuY .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYLXReAVuY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYLXReAVuY ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYLXReAVuY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYLXReAVuY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYLXReAVuY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYLXReAVuY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYLXReAVuY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYLXReAVuY a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYLXReAVuY .navbar {
    height: 70px;
  }
  .cid-sYLXReAVuY .navbar.opened {
    height: auto;
  }
  .cid-sYLXReAVuY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYjUIlBQ7g {
  background-image: url("../../../assets/images/contact-gatehouse.jpg");
}
.cid-sYhNwfxqZP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYhNwfxqZP .row {
  align-items: center;
}
.cid-sYhNwfxqZP .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYhNwfxqZP .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYhNwfxqZP .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYhNwfxqZP .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYhNwfxqZP .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYKIUqwykK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-sYKIUqwykK .title {
  min-height: 40px;
}
.cid-sYKIUqwykK a {
  font-weight: 500;
}
.cid-sYjVtwXpWm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYjVtwXpWm .row {
  align-items: center;
}
.cid-sYjVtwXpWm .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYjVtwXpWm .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYjVtwXpWm .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYjVtwXpWm .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYjVtwXpWm .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-sYjVtwXpWm .mbr-text,
.cid-sYjVtwXpWm .mbr-section-btn {
  color: #205b8f;
}
#custom-html-hr {
  /* Type valid CSS here */
}
#custom-html-hr div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-hr p {
  font-size: 60px;
  color: #777;
}
.cid-tCsz2WkL8a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-tCsz2WkL8a .row {
  align-items: center;
}
.cid-tCsz2WkL8a .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tCsz2WkL8a .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tCsz2WkL8a .header-text {
    margin-bottom: 20px;
  }
}
.cid-tCsz2WkL8a .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-tCsz2WkL8a .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tCsz2WkL8a .mbr-text,
.cid-tCsz2WkL8a .mbr-section-btn {
  color: #533406;
}
.cid-tCsyZEvVLv {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
.cid-tCsyZEvVLv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCsyZEvVLv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCsyZEvVLv .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-tCsyZEvVLv .mbr-section-title {
  color: #FF014E;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-tCsyZEvVLv .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-tCsyZEvVLv .mbr-section-subtitle {
  color: #C4CFDE;
}
.cid-tCsyZEvVLv .card-row {
  align-items: stretch;
}
.cid-tCsyZEvVLv .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tCsyZEvVLv .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid #205b8f;
}
.cid-tCsyZEvVLv .card-box {
  height: 100%;
}
.cid-tCsyZEvVLv .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-tCsyZEvVLv .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #205b8f;
}
.cid-tCsyZEvVLv .card-title {
  color: #205b8f;
  margin-bottom: 20px;
}
.cid-tCsyZEvVLv .card-text {
  color: #205b8f;
  margin-bottom: 0;
}
.cid-sYhNwisIm5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYhNwisIm5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYhNwisIm5 .row {
  flex-direction: row-reverse;
}
.cid-sYhNwisIm5 img {
  width: 100%;
}
.cid-sYiUx5mdZi {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYiUx5mdZi .image-block {
  margin: auto;
}
.cid-sYiUx5mdZi .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYiUx5mdZi .image-block {
    width: 50% !important;
  }
}
.cid-sYiUx5mdZi .container-fluid {
  padding: 0;
}
.cid-sYKJmY2Y6q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKJmY2Y6q .title {
  min-height: 40px;
}
.cid-sYKJmY2Y6q a {
  font-weight: 500;
}
.cid-sYKJmY2Y6q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYKJnUS4ok {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYKJnUS4ok .title {
  min-height: 40px;
}
.cid-sYKJnUS4ok a {
  font-weight: 500;
}
.cid-sYKJnUS4ok .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYXO0T0I6z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYXO0T0I6z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYXO0T0I6z .row {
  flex-direction: row-reverse;
}
.cid-sYXO0T0I6z img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sYQBalhufG {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sYQBalhufG nav.navbar {
  position: fixed;
}
.cid-sYQBalhufG .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-sYQBalhufG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sYQBalhufG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sYQBalhufG .dropdown-item:hover,
.cid-sYQBalhufG .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sYQBalhufG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sYQBalhufG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sYQBalhufG .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sYQBalhufG .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sYQBalhufG .nav-item {
  margin: 0 31px;
}
.cid-sYQBalhufG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYQBalhufG .nav-link {
  position: relative;
}
.cid-sYQBalhufG .nav-link:hover,
.cid-sYQBalhufG .nav-link:focus,
.cid-sYQBalhufG .nav-link:active {
  color: #000000 !important;
}
.cid-sYQBalhufG .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sYQBalhufG .container {
    flex-wrap: inherit;
  }
}
.cid-sYQBalhufG .navbar-caption:hover,
.cid-sYQBalhufG .navbar-caption:focus,
.cid-sYQBalhufG .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sYQBalhufG .dropdown-menu,
.cid-sYQBalhufG .navbar.opened {
  background: #ffffff !important;
}
.cid-sYQBalhufG .nav-item:focus,
.cid-sYQBalhufG .nav-link:focus {
  outline: none;
}
.cid-sYQBalhufG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYQBalhufG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYQBalhufG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYQBalhufG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYQBalhufG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sYQBalhufG .navbar.opened {
  transition: all 0.3s;
}
.cid-sYQBalhufG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYQBalhufG .navbar .navbar-logo img {
  width: auto;
}
.cid-sYQBalhufG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYQBalhufG .navbar.collapsed {
  justify-content: center;
}
.cid-sYQBalhufG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYQBalhufG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYQBalhufG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sYQBalhufG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYQBalhufG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYQBalhufG .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-sYQBalhufG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYQBalhufG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sYQBalhufG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYQBalhufG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYQBalhufG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYQBalhufG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYQBalhufG .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-sYQBalhufG .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sYQBalhufG .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sYQBalhufG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYQBalhufG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYQBalhufG .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sYQBalhufG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYQBalhufG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYQBalhufG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYQBalhufG .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;
  display: flex;
}
.cid-sYQBalhufG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYQBalhufG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYQBalhufG .dropdown-item.active,
.cid-sYQBalhufG .dropdown-item:active {
  background-color: transparent;
}
.cid-sYQBalhufG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYQBalhufG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYQBalhufG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYQBalhufG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sYQBalhufG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYQBalhufG .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sYQBalhufG .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sYQBalhufG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYQBalhufG ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sYQBalhufG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYQBalhufG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sYQBalhufG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYQBalhufG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYQBalhufG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYQBalhufG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYQBalhufG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYQBalhufG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYQBalhufG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYQBalhufG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYQBalhufG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYQBalhufG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sYQBalhufG a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYQBalhufG .navbar {
    height: 70px;
  }
  .cid-sYQBalhufG .navbar.opened {
    height: auto;
  }
  .cid-sYQBalhufG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYWSuPYNDo {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-sYWSuPYNDo .row {
  align-items: center;
}
.cid-sYWSuPYNDo .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sYWSuPYNDo .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-sYWSuPYNDo .header-text {
    margin-bottom: 20px;
  }
}
.cid-sYWSuPYNDo .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-sYWSuPYNDo .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ty2cjbCZmN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-ty2cjbCZmN .mbr-section-title {
  color: #1f1437;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-ty2cjbCZmN .mbr-section-subtitle {
  color: #1f1437;
  margin-bottom: 4rem;
  text-align: center;
}
.cid-ty2cjbCZmN .mbr-text {
  color: #1f1437;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ty2cjbCZmN .content {
    text-align: center;
  }
}
.cid-ty2cjbCZmN .mbr-text-title {
  text-align: center;
}
.cid-sYQBakjHnZ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sYQBakjHnZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYQBakjHnZ .row {
  flex-direction: row-reverse;
}
.cid-sYQBakjHnZ img {
  width: 100%;
}
.cid-sYQBakuELZ {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sYQBakuELZ .image-block {
  margin: auto;
}
.cid-sYQBakuELZ .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sYQBakuELZ .image-block {
    width: 50% !important;
  }
}
.cid-sYQBakuELZ .container-fluid {
  padding: 0;
}
.cid-sYQBakCRir {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYQBakCRir .title {
  min-height: 40px;
}
.cid-sYQBakCRir a {
  font-weight: 500;
}
.cid-sYQBakCRir .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYQBakRbTI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sYQBakRbTI .title {
  min-height: 40px;
}
.cid-sYQBakRbTI a {
  font-weight: 500;
}
.cid-sYQBakRbTI .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sYQBal34BQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sYQBal34BQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sYQBal34BQ .row {
  flex-direction: row-reverse;
}
.cid-sYQBal34BQ img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sZveCaewG5 {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sZveCaewG5 nav.navbar {
  position: fixed;
}
.cid-sZveCaewG5 .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-sZveCaewG5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZveCaewG5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZveCaewG5 .dropdown-item:hover,
.cid-sZveCaewG5 .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sZveCaewG5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZveCaewG5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZveCaewG5 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sZveCaewG5 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sZveCaewG5 .nav-item {
  margin: 0 31px;
}
.cid-sZveCaewG5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZveCaewG5 .nav-link {
  position: relative;
}
.cid-sZveCaewG5 .nav-link:hover,
.cid-sZveCaewG5 .nav-link:focus,
.cid-sZveCaewG5 .nav-link:active {
  color: #000000 !important;
}
.cid-sZveCaewG5 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sZveCaewG5 .container {
    flex-wrap: inherit;
  }
}
.cid-sZveCaewG5 .navbar-caption:hover,
.cid-sZveCaewG5 .navbar-caption:focus,
.cid-sZveCaewG5 .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sZveCaewG5 .dropdown-menu,
.cid-sZveCaewG5 .navbar.opened {
  background: #ffffff !important;
}
.cid-sZveCaewG5 .nav-item:focus,
.cid-sZveCaewG5 .nav-link:focus {
  outline: none;
}
.cid-sZveCaewG5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZveCaewG5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZveCaewG5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZveCaewG5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZveCaewG5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZveCaewG5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sZveCaewG5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZveCaewG5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sZveCaewG5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZveCaewG5 .navbar.collapsed {
  justify-content: center;
}
.cid-sZveCaewG5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZveCaewG5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZveCaewG5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sZveCaewG5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZveCaewG5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZveCaewG5 .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-sZveCaewG5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZveCaewG5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sZveCaewG5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZveCaewG5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZveCaewG5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZveCaewG5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZveCaewG5 .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-sZveCaewG5 .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sZveCaewG5 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sZveCaewG5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZveCaewG5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZveCaewG5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sZveCaewG5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZveCaewG5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZveCaewG5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZveCaewG5 .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;
  display: flex;
}
.cid-sZveCaewG5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZveCaewG5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZveCaewG5 .dropdown-item.active,
.cid-sZveCaewG5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sZveCaewG5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZveCaewG5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZveCaewG5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZveCaewG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZveCaewG5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZveCaewG5 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sZveCaewG5 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sZveCaewG5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZveCaewG5 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZveCaewG5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZveCaewG5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sZveCaewG5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZveCaewG5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZveCaewG5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZveCaewG5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZveCaewG5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZveCaewG5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZveCaewG5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZveCaewG5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZveCaewG5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZveCaewG5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZveCaewG5 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZveCaewG5 .navbar {
    height: 70px;
  }
  .cid-sZveCaewG5 .navbar.opened {
    height: auto;
  }
  .cid-sZveCaewG5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvf36n6XF {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sZvf36n6XF .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZvf36n6XF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sZvf36n6XF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZveC9693y {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sZveC9693y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZveC9693y .row {
  flex-direction: row-reverse;
}
.cid-sZveC9693y img {
  width: 100%;
}
.cid-sZveC9jKaS {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sZveC9jKaS .image-block {
  margin: auto;
}
.cid-sZveC9jKaS .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sZveC9jKaS .image-block {
    width: 50% !important;
  }
}
.cid-sZveC9jKaS .container-fluid {
  padding: 0;
}
.cid-sZveC9wH6J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZveC9wH6J .title {
  min-height: 40px;
}
.cid-sZveC9wH6J a {
  font-weight: 500;
}
.cid-sZveC9wH6J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZveC9JGOK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZveC9JGOK .title {
  min-height: 40px;
}
.cid-sZveC9JGOK a {
  font-weight: 500;
}
.cid-sZveC9JGOK .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sZveC9ZF7K {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sZveC9ZF7K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZveC9ZF7K .row {
  flex-direction: row-reverse;
}
.cid-sZveC9ZF7K img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sZvfhX72Ar {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sZvfhX72Ar nav.navbar {
  position: fixed;
}
.cid-sZvfhX72Ar .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-sZvfhX72Ar .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZvfhX72Ar .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZvfhX72Ar .dropdown-item:hover,
.cid-sZvfhX72Ar .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sZvfhX72Ar .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZvfhX72Ar .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZvfhX72Ar .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sZvfhX72Ar .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sZvfhX72Ar .nav-item {
  margin: 0 31px;
}
.cid-sZvfhX72Ar .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZvfhX72Ar .nav-link {
  position: relative;
}
.cid-sZvfhX72Ar .nav-link:hover,
.cid-sZvfhX72Ar .nav-link:focus,
.cid-sZvfhX72Ar .nav-link:active {
  color: #000000 !important;
}
.cid-sZvfhX72Ar .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sZvfhX72Ar .container {
    flex-wrap: inherit;
  }
}
.cid-sZvfhX72Ar .navbar-caption:hover,
.cid-sZvfhX72Ar .navbar-caption:focus,
.cid-sZvfhX72Ar .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sZvfhX72Ar .dropdown-menu,
.cid-sZvfhX72Ar .navbar.opened {
  background: #ffffff !important;
}
.cid-sZvfhX72Ar .nav-item:focus,
.cid-sZvfhX72Ar .nav-link:focus {
  outline: none;
}
.cid-sZvfhX72Ar .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZvfhX72Ar .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZvfhX72Ar .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZvfhX72Ar .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZvfhX72Ar .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZvfhX72Ar .navbar.opened {
  transition: all 0.3s;
}
.cid-sZvfhX72Ar .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZvfhX72Ar .navbar .navbar-logo img {
  width: auto;
}
.cid-sZvfhX72Ar .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZvfhX72Ar .navbar.collapsed {
  justify-content: center;
}
.cid-sZvfhX72Ar .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZvfhX72Ar .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZvfhX72Ar .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sZvfhX72Ar .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZvfhX72Ar .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZvfhX72Ar .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-sZvfhX72Ar .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZvfhX72Ar .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sZvfhX72Ar .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZvfhX72Ar .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZvfhX72Ar .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZvfhX72Ar .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZvfhX72Ar .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-sZvfhX72Ar .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sZvfhX72Ar .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sZvfhX72Ar .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZvfhX72Ar .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZvfhX72Ar .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sZvfhX72Ar .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZvfhX72Ar .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZvfhX72Ar .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZvfhX72Ar .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;
  display: flex;
}
.cid-sZvfhX72Ar .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZvfhX72Ar .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZvfhX72Ar .dropdown-item.active,
.cid-sZvfhX72Ar .dropdown-item:active {
  background-color: transparent;
}
.cid-sZvfhX72Ar .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZvfhX72Ar .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZvfhX72Ar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZvfhX72Ar .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZvfhX72Ar .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZvfhX72Ar .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sZvfhX72Ar .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sZvfhX72Ar .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZvfhX72Ar ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZvfhX72Ar button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZvfhX72Ar button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sZvfhX72Ar button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZvfhX72Ar button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfhX72Ar button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfhX72Ar button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZvfhX72Ar nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfhX72Ar nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZvfhX72Ar nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZvfhX72Ar nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfhX72Ar .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZvfhX72Ar a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZvfhX72Ar a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZvfhX72Ar .navbar {
    height: 70px;
  }
  .cid-sZvfhX72Ar .navbar.opened {
    height: auto;
  }
  .cid-sZvfhX72Ar .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvfqiWotf {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sZvfqiWotf .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZvfqiWotf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sZvfqiWotf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZvfhVWDNK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sZvfhVWDNK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfhVWDNK .row {
  flex-direction: row-reverse;
}
.cid-sZvfhVWDNK img {
  width: 100%;
}
.cid-sZvfhWc7gh {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sZvfhWc7gh .image-block {
  margin: auto;
}
.cid-sZvfhWc7gh .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sZvfhWc7gh .image-block {
    width: 50% !important;
  }
}
.cid-sZvfhWc7gh .container-fluid {
  padding: 0;
}
.cid-sZvfhWo6kl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfhWo6kl .title {
  min-height: 40px;
}
.cid-sZvfhWo6kl a {
  font-weight: 500;
}
.cid-sZvfhWo6kl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZvfhWDcTE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfhWDcTE .title {
  min-height: 40px;
}
.cid-sZvfhWDcTE a {
  font-weight: 500;
}
.cid-sZvfhWDcTE .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sZvfhWSeHh {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sZvfhWSeHh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfhWSeHh .row {
  flex-direction: row-reverse;
}
.cid-sZvfhWSeHh img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sZvfEejEwk {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sZvfEejEwk nav.navbar {
  position: fixed;
}
.cid-sZvfEejEwk .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-sZvfEejEwk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZvfEejEwk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZvfEejEwk .dropdown-item:hover,
.cid-sZvfEejEwk .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sZvfEejEwk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZvfEejEwk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZvfEejEwk .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sZvfEejEwk .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sZvfEejEwk .nav-item {
  margin: 0 31px;
}
.cid-sZvfEejEwk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZvfEejEwk .nav-link {
  position: relative;
}
.cid-sZvfEejEwk .nav-link:hover,
.cid-sZvfEejEwk .nav-link:focus,
.cid-sZvfEejEwk .nav-link:active {
  color: #000000 !important;
}
.cid-sZvfEejEwk .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sZvfEejEwk .container {
    flex-wrap: inherit;
  }
}
.cid-sZvfEejEwk .navbar-caption:hover,
.cid-sZvfEejEwk .navbar-caption:focus,
.cid-sZvfEejEwk .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sZvfEejEwk .dropdown-menu,
.cid-sZvfEejEwk .navbar.opened {
  background: #ffffff !important;
}
.cid-sZvfEejEwk .nav-item:focus,
.cid-sZvfEejEwk .nav-link:focus {
  outline: none;
}
.cid-sZvfEejEwk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZvfEejEwk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZvfEejEwk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZvfEejEwk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZvfEejEwk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZvfEejEwk .navbar.opened {
  transition: all 0.3s;
}
.cid-sZvfEejEwk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZvfEejEwk .navbar .navbar-logo img {
  width: auto;
}
.cid-sZvfEejEwk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZvfEejEwk .navbar.collapsed {
  justify-content: center;
}
.cid-sZvfEejEwk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZvfEejEwk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZvfEejEwk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sZvfEejEwk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZvfEejEwk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZvfEejEwk .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-sZvfEejEwk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZvfEejEwk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sZvfEejEwk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZvfEejEwk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZvfEejEwk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZvfEejEwk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZvfEejEwk .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-sZvfEejEwk .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sZvfEejEwk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sZvfEejEwk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZvfEejEwk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZvfEejEwk .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sZvfEejEwk .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZvfEejEwk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZvfEejEwk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZvfEejEwk .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;
  display: flex;
}
.cid-sZvfEejEwk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZvfEejEwk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZvfEejEwk .dropdown-item.active,
.cid-sZvfEejEwk .dropdown-item:active {
  background-color: transparent;
}
.cid-sZvfEejEwk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZvfEejEwk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZvfEejEwk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZvfEejEwk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZvfEejEwk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZvfEejEwk .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sZvfEejEwk .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sZvfEejEwk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZvfEejEwk ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZvfEejEwk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZvfEejEwk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sZvfEejEwk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZvfEejEwk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfEejEwk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfEejEwk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZvfEejEwk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfEejEwk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZvfEejEwk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZvfEejEwk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfEejEwk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZvfEejEwk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZvfEejEwk a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZvfEejEwk .navbar {
    height: 70px;
  }
  .cid-sZvfEejEwk .navbar.opened {
    height: auto;
  }
  .cid-sZvfEejEwk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvfKSJ4LE {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sZvfKSJ4LE .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZvfKSJ4LE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sZvfKSJ4LE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZvfEdpFDJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sZvfEdpFDJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfEdpFDJ .row {
  flex-direction: row-reverse;
}
.cid-sZvfEdpFDJ img {
  width: 100%;
}
.cid-sZvfEdzmsC {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sZvfEdzmsC .image-block {
  margin: auto;
}
.cid-sZvfEdzmsC .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sZvfEdzmsC .image-block {
    width: 50% !important;
  }
}
.cid-sZvfEdzmsC .container-fluid {
  padding: 0;
}
.cid-sZvfEdLn2Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfEdLn2Z .title {
  min-height: 40px;
}
.cid-sZvfEdLn2Z a {
  font-weight: 500;
}
.cid-sZvfEdLn2Z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZvfEdVcUR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfEdVcUR .title {
  min-height: 40px;
}
.cid-sZvfEdVcUR a {
  font-weight: 500;
}
.cid-sZvfEdVcUR .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sZvfEe7sMG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sZvfEe7sMG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfEe7sMG .row {
  flex-direction: row-reverse;
}
.cid-sZvfEe7sMG img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sZvfUx0ILR {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sZvfUx0ILR nav.navbar {
  position: fixed;
}
.cid-sZvfUx0ILR .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-sZvfUx0ILR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZvfUx0ILR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZvfUx0ILR .dropdown-item:hover,
.cid-sZvfUx0ILR .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sZvfUx0ILR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZvfUx0ILR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZvfUx0ILR .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sZvfUx0ILR .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sZvfUx0ILR .nav-item {
  margin: 0 31px;
}
.cid-sZvfUx0ILR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZvfUx0ILR .nav-link {
  position: relative;
}
.cid-sZvfUx0ILR .nav-link:hover,
.cid-sZvfUx0ILR .nav-link:focus,
.cid-sZvfUx0ILR .nav-link:active {
  color: #000000 !important;
}
.cid-sZvfUx0ILR .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sZvfUx0ILR .container {
    flex-wrap: inherit;
  }
}
.cid-sZvfUx0ILR .navbar-caption:hover,
.cid-sZvfUx0ILR .navbar-caption:focus,
.cid-sZvfUx0ILR .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sZvfUx0ILR .dropdown-menu,
.cid-sZvfUx0ILR .navbar.opened {
  background: #ffffff !important;
}
.cid-sZvfUx0ILR .nav-item:focus,
.cid-sZvfUx0ILR .nav-link:focus {
  outline: none;
}
.cid-sZvfUx0ILR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZvfUx0ILR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZvfUx0ILR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZvfUx0ILR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZvfUx0ILR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZvfUx0ILR .navbar.opened {
  transition: all 0.3s;
}
.cid-sZvfUx0ILR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZvfUx0ILR .navbar .navbar-logo img {
  width: auto;
}
.cid-sZvfUx0ILR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZvfUx0ILR .navbar.collapsed {
  justify-content: center;
}
.cid-sZvfUx0ILR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZvfUx0ILR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZvfUx0ILR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sZvfUx0ILR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZvfUx0ILR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZvfUx0ILR .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-sZvfUx0ILR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZvfUx0ILR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sZvfUx0ILR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZvfUx0ILR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZvfUx0ILR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZvfUx0ILR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZvfUx0ILR .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-sZvfUx0ILR .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sZvfUx0ILR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sZvfUx0ILR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZvfUx0ILR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZvfUx0ILR .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sZvfUx0ILR .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZvfUx0ILR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZvfUx0ILR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZvfUx0ILR .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;
  display: flex;
}
.cid-sZvfUx0ILR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZvfUx0ILR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZvfUx0ILR .dropdown-item.active,
.cid-sZvfUx0ILR .dropdown-item:active {
  background-color: transparent;
}
.cid-sZvfUx0ILR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZvfUx0ILR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZvfUx0ILR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZvfUx0ILR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZvfUx0ILR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZvfUx0ILR .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sZvfUx0ILR .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sZvfUx0ILR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZvfUx0ILR ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZvfUx0ILR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZvfUx0ILR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sZvfUx0ILR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZvfUx0ILR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfUx0ILR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvfUx0ILR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZvfUx0ILR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfUx0ILR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZvfUx0ILR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZvfUx0ILR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvfUx0ILR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZvfUx0ILR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZvfUx0ILR a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZvfUx0ILR .navbar {
    height: 70px;
  }
  .cid-sZvfUx0ILR .navbar.opened {
    height: auto;
  }
  .cid-sZvfUx0ILR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvfZjGZ4b {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sZvfZjGZ4b .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZvfZjGZ4b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sZvfZjGZ4b .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZvfUw14Tj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sZvfUw14Tj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfUw14Tj .row {
  flex-direction: row-reverse;
}
.cid-sZvfUw14Tj img {
  width: 100%;
}
.cid-sZvfUwdk5s {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sZvfUwdk5s .image-block {
  margin: auto;
}
.cid-sZvfUwdk5s .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sZvfUwdk5s .image-block {
    width: 50% !important;
  }
}
.cid-sZvfUwdk5s .container-fluid {
  padding: 0;
}
.cid-sZvfUwrw1t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfUwrw1t .title {
  min-height: 40px;
}
.cid-sZvfUwrw1t a {
  font-weight: 500;
}
.cid-sZvfUwrw1t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZvfUwESqN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvfUwESqN .title {
  min-height: 40px;
}
.cid-sZvfUwESqN a {
  font-weight: 500;
}
.cid-sZvfUwESqN .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sZvfUwOwud {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sZvfUwOwud .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvfUwOwud .row {
  flex-direction: row-reverse;
}
.cid-sZvfUwOwud img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-sZvg6x9SKu {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-sZvg6x9SKu nav.navbar {
  position: fixed;
}
.cid-sZvg6x9SKu .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-sZvg6x9SKu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZvg6x9SKu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZvg6x9SKu .dropdown-item:hover,
.cid-sZvg6x9SKu .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-sZvg6x9SKu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZvg6x9SKu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZvg6x9SKu .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sZvg6x9SKu .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sZvg6x9SKu .nav-item {
  margin: 0 31px;
}
.cid-sZvg6x9SKu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZvg6x9SKu .nav-link {
  position: relative;
}
.cid-sZvg6x9SKu .nav-link:hover,
.cid-sZvg6x9SKu .nav-link:focus,
.cid-sZvg6x9SKu .nav-link:active {
  color: #000000 !important;
}
.cid-sZvg6x9SKu .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sZvg6x9SKu .container {
    flex-wrap: inherit;
  }
}
.cid-sZvg6x9SKu .navbar-caption:hover,
.cid-sZvg6x9SKu .navbar-caption:focus,
.cid-sZvg6x9SKu .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-sZvg6x9SKu .dropdown-menu,
.cid-sZvg6x9SKu .navbar.opened {
  background: #ffffff !important;
}
.cid-sZvg6x9SKu .nav-item:focus,
.cid-sZvg6x9SKu .nav-link:focus {
  outline: none;
}
.cid-sZvg6x9SKu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZvg6x9SKu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZvg6x9SKu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZvg6x9SKu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZvg6x9SKu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sZvg6x9SKu .navbar.opened {
  transition: all 0.3s;
}
.cid-sZvg6x9SKu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZvg6x9SKu .navbar .navbar-logo img {
  width: auto;
}
.cid-sZvg6x9SKu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZvg6x9SKu .navbar.collapsed {
  justify-content: center;
}
.cid-sZvg6x9SKu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZvg6x9SKu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZvg6x9SKu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-sZvg6x9SKu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZvg6x9SKu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZvg6x9SKu .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-sZvg6x9SKu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZvg6x9SKu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sZvg6x9SKu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZvg6x9SKu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZvg6x9SKu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZvg6x9SKu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZvg6x9SKu .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-sZvg6x9SKu .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-sZvg6x9SKu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sZvg6x9SKu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZvg6x9SKu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZvg6x9SKu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sZvg6x9SKu .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZvg6x9SKu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZvg6x9SKu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZvg6x9SKu .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;
  display: flex;
}
.cid-sZvg6x9SKu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZvg6x9SKu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZvg6x9SKu .dropdown-item.active,
.cid-sZvg6x9SKu .dropdown-item:active {
  background-color: transparent;
}
.cid-sZvg6x9SKu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZvg6x9SKu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZvg6x9SKu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZvg6x9SKu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZvg6x9SKu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZvg6x9SKu .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sZvg6x9SKu .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sZvg6x9SKu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZvg6x9SKu ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sZvg6x9SKu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZvg6x9SKu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sZvg6x9SKu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZvg6x9SKu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvg6x9SKu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZvg6x9SKu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZvg6x9SKu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvg6x9SKu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZvg6x9SKu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZvg6x9SKu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZvg6x9SKu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZvg6x9SKu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sZvg6x9SKu a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sZvg6x9SKu .navbar {
    height: 70px;
  }
  .cid-sZvg6x9SKu .navbar.opened {
    height: auto;
  }
  .cid-sZvg6x9SKu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvgd6SeTI {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-color: #cec77d;
}
@media (min-width: 992px) {
  .cid-sZvgd6SeTI .text-wrapper {
    padding: 2rem;
  }
}
.cid-sZvgd6SeTI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-sZvgd6SeTI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sZvg6wgNBD {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-sZvg6wgNBD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvg6wgNBD .row {
  flex-direction: row-reverse;
}
.cid-sZvg6wgNBD img {
  width: 100%;
}
.cid-sZvg6wrbBE {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sZvg6wrbBE .image-block {
  margin: auto;
}
.cid-sZvg6wrbBE .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sZvg6wrbBE .image-block {
    width: 50% !important;
  }
}
.cid-sZvg6wrbBE .container-fluid {
  padding: 0;
}
.cid-sZvg6wASWf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvg6wASWf .title {
  min-height: 40px;
}
.cid-sZvg6wASWf a {
  font-weight: 500;
}
.cid-sZvg6wASWf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZvg6wMejv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-sZvg6wMejv .title {
  min-height: 40px;
}
.cid-sZvg6wMejv a {
  font-weight: 500;
}
.cid-sZvg6wMejv .mbr-section-subtitle {
  color: #cec77d;
}
.cid-sZvg6wYV9a {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-sZvg6wYV9a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sZvg6wYV9a .row {
  flex-direction: row-reverse;
}
.cid-sZvg6wYV9a img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cid-tjwqBV1NnN {
  z-index: 1000;
  width: 90%;
  position: relative;
  min-height: 60px;
}
.cid-tjwqBV1NnN nav.navbar {
  position: fixed;
}
.cid-tjwqBV1NnN .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-tjwqBV1NnN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tjwqBV1NnN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tjwqBV1NnN .dropdown-item:hover,
.cid-tjwqBV1NnN .dropdown-item:focus {
  background: #205b8f !important;
  color: white !important;
}
.cid-tjwqBV1NnN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tjwqBV1NnN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tjwqBV1NnN .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-tjwqBV1NnN .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-tjwqBV1NnN .nav-item {
  margin: 0 31px;
}
.cid-tjwqBV1NnN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tjwqBV1NnN .nav-link {
  position: relative;
}
.cid-tjwqBV1NnN .nav-link:hover,
.cid-tjwqBV1NnN .nav-link:focus,
.cid-tjwqBV1NnN .nav-link:active {
  color: #000000 !important;
}
.cid-tjwqBV1NnN .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-tjwqBV1NnN .container {
    flex-wrap: inherit;
  }
}
.cid-tjwqBV1NnN .navbar-caption:hover,
.cid-tjwqBV1NnN .navbar-caption:focus,
.cid-tjwqBV1NnN .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-tjwqBV1NnN .dropdown-menu,
.cid-tjwqBV1NnN .navbar.opened {
  background: #ffffff !important;
}
.cid-tjwqBV1NnN .nav-item:focus,
.cid-tjwqBV1NnN .nav-link:focus {
  outline: none;
}
.cid-tjwqBV1NnN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tjwqBV1NnN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjwqBV1NnN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tjwqBV1NnN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjwqBV1NnN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tjwqBV1NnN .navbar.opened {
  transition: all 0.3s;
}
.cid-tjwqBV1NnN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tjwqBV1NnN .navbar .navbar-logo img {
  width: auto;
}
.cid-tjwqBV1NnN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tjwqBV1NnN .navbar.collapsed {
  justify-content: center;
}
.cid-tjwqBV1NnN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tjwqBV1NnN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tjwqBV1NnN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8.7rem);
  }
}
.cid-tjwqBV1NnN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjwqBV1NnN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjwqBV1NnN .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-tjwqBV1NnN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tjwqBV1NnN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tjwqBV1NnN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tjwqBV1NnN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tjwqBV1NnN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tjwqBV1NnN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tjwqBV1NnN .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-tjwqBV1NnN .navbar .navbar-logo img {
    height: 3.5rem !important;
  }
  .cid-tjwqBV1NnN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tjwqBV1NnN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tjwqBV1NnN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tjwqBV1NnN .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tjwqBV1NnN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tjwqBV1NnN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tjwqBV1NnN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tjwqBV1NnN .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;
  display: flex;
}
.cid-tjwqBV1NnN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjwqBV1NnN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjwqBV1NnN .dropdown-item.active,
.cid-tjwqBV1NnN .dropdown-item:active {
  background-color: transparent;
}
.cid-tjwqBV1NnN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjwqBV1NnN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tjwqBV1NnN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tjwqBV1NnN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjwqBV1NnN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjwqBV1NnN .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-tjwqBV1NnN .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-tjwqBV1NnN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjwqBV1NnN ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tjwqBV1NnN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tjwqBV1NnN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tjwqBV1NnN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjwqBV1NnN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjwqBV1NnN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjwqBV1NnN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjwqBV1NnN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjwqBV1NnN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjwqBV1NnN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjwqBV1NnN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjwqBV1NnN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tjwqBV1NnN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tjwqBV1NnN a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjwqBV1NnN .navbar {
    height: 70px;
  }
  .cid-tjwqBV1NnN .navbar.opened {
    height: auto;
  }
  .cid-tjwqBV1NnN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tjwqBS4hVQ {
  background-image: url("../../../assets/images/resources-1836x1355.jpg");
}
.cid-tjwqBSkVJp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #cec77d;
}
.cid-tjwqBSkVJp .row {
  align-items: center;
}
.cid-tjwqBSkVJp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tjwqBSkVJp .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tjwqBSkVJp .header-text {
    margin-bottom: 20px;
  }
}
.cid-tjwqBSkVJp .mbr-section-title {
  width: 100%;
  color: #533406;
  margin-bottom: 8px;
}
.cid-tjwqBSkVJp .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tjwqBSAUZl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #cec77d;
}
.cid-tjwqBSAUZl .title {
  min-height: 40px;
}
.cid-tjwqBSAUZl a {
  font-weight: 500;
}
.cid-tjwHScSnWi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfc77a;
}
.cid-tjwHScSnWi .item-img {
  position: relative;
}
.cid-tjwHScSnWi .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tjwHScSnWi .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tjwHScSnWi .btn-tag:hover,
.cid-tjwHScSnWi .btn-tag:focus {
  box-shadow: none;
}
.cid-tjwHScSnWi img,
.cid-tjwHScSnWi .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tjwHScSnWi .item:focus,
.cid-tjwHScSnWi span:focus {
  outline: none;
}
.cid-tjwHScSnWi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjwHScSnWi .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tjwHScSnWi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tjwHScSnWi .mbr-section-title {
  color: #232323;
}
.cid-tjwHScSnWi .mbr-text,
.cid-tjwHScSnWi .mbr-section-btn {
  color: #353535;
}
.cid-tjwHScSnWi .item-title {
  color: #000000;
  text-align: center;
}
.cid-tjwKlcjDS1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfc77a;
}
.cid-tjwKlcjDS1 .item-img {
  position: relative;
}
.cid-tjwKlcjDS1 .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tjwKlcjDS1 .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tjwKlcjDS1 .btn-tag:hover,
.cid-tjwKlcjDS1 .btn-tag:focus {
  box-shadow: none;
}
.cid-tjwKlcjDS1 img,
.cid-tjwKlcjDS1 .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tjwKlcjDS1 .item:focus,
.cid-tjwKlcjDS1 span:focus {
  outline: none;
}
.cid-tjwKlcjDS1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjwKlcjDS1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tjwKlcjDS1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tjwKlcjDS1 .mbr-section-title {
  color: #232323;
}
.cid-tjwKlcjDS1 .mbr-text,
.cid-tjwKlcjDS1 .mbr-section-btn {
  color: #353535;
}
.cid-tjwKlcjDS1 .item-title {
  color: #000000;
  text-align: center;
}
.cid-tjwMgaGqEL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfc77a;
}
.cid-tjwMgaGqEL .item-img {
  position: relative;
}
.cid-tjwMgaGqEL .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tjwMgaGqEL .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tjwMgaGqEL .btn-tag:hover,
.cid-tjwMgaGqEL .btn-tag:focus {
  box-shadow: none;
}
.cid-tjwMgaGqEL img,
.cid-tjwMgaGqEL .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tjwMgaGqEL .item:focus,
.cid-tjwMgaGqEL span:focus {
  outline: none;
}
.cid-tjwMgaGqEL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjwMgaGqEL .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tjwMgaGqEL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tjwMgaGqEL .mbr-section-title {
  color: #232323;
}
.cid-tjwMgaGqEL .mbr-text,
.cid-tjwMgaGqEL .mbr-section-btn {
  color: #353535;
}
.cid-tjwMgaGqEL .item-title {
  color: #000000;
  text-align: center;
}
.cid-tjwMgQkzlB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfc77a;
}
.cid-tjwMgQkzlB .item-img {
  position: relative;
}
.cid-tjwMgQkzlB .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-tjwMgQkzlB .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-tjwMgQkzlB .btn-tag:hover,
.cid-tjwMgQkzlB .btn-tag:focus {
  box-shadow: none;
}
.cid-tjwMgQkzlB img,
.cid-tjwMgQkzlB .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tjwMgQkzlB .item:focus,
.cid-tjwMgQkzlB span:focus {
  outline: none;
}
.cid-tjwMgQkzlB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tjwMgQkzlB .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tjwMgQkzlB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tjwMgQkzlB .mbr-section-title {
  color: #232323;
}
.cid-tjwMgQkzlB .mbr-text,
.cid-tjwMgQkzlB .mbr-section-btn {
  color: #353535;
}
.cid-tjwMgQkzlB .item-title {
  color: #000000;
  text-align: center;
}
.cid-ugJFAyjvmW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #cfc77a;
}
.cid-ugJFAyjvmW .item-img {
  position: relative;
}
.cid-ugJFAyjvmW .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-ugJFAyjvmW .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-ugJFAyjvmW .btn-tag:hover,
.cid-ugJFAyjvmW .btn-tag:focus {
  box-shadow: none;
}
.cid-ugJFAyjvmW img,
.cid-ugJFAyjvmW .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ugJFAyjvmW .item:focus,
.cid-ugJFAyjvmW span:focus {
  outline: none;
}
.cid-ugJFAyjvmW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugJFAyjvmW .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-ugJFAyjvmW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugJFAyjvmW .mbr-section-title {
  color: #232323;
}
.cid-ugJFAyjvmW .mbr-text,
.cid-ugJFAyjvmW .mbr-section-btn {
  color: #353535;
}
.cid-ugJFAyjvmW .item-title {
  color: #000000;
  text-align: center;
}
.cid-tjwqBTKawS {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
@media (max-width: 991px) {
  .cid-tjwqBTKawS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tjwqBTKawS .row {
  flex-direction: row-reverse;
}
.cid-tjwqBTKawS img {
  width: 100%;
}
.cid-tjwqBTZBB6 {
  background: #205b8f;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tjwqBTZBB6 .image-block {
  margin: auto;
}
.cid-tjwqBTZBB6 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tjwqBTZBB6 .image-block {
    width: 50% !important;
  }
}
.cid-tjwqBTZBB6 .container-fluid {
  padding: 0;
}
.cid-tjwqBUcOgG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-tjwqBUcOgG .title {
  min-height: 40px;
}
.cid-tjwqBUcOgG a {
  font-weight: 500;
}
.cid-tjwqBUcOgG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjwqBUvo40 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #205b8f;
}
.cid-tjwqBUvo40 .title {
  min-height: 40px;
}
.cid-tjwqBUvo40 a {
  font-weight: 500;
}
.cid-tjwqBUvo40 .mbr-section-subtitle {
  color: #cec77d;
}
.cid-tkib7oxMS6 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #205b8f;
}
@media (max-width: 250px) {
  .cid-tkib7oxMS6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tkib7oxMS6 .row {
  flex-direction: row-reverse;
}
.cid-tkib7oxMS6 img {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
