body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #ffffff !important;
}
.bg-success {
  background-color: #0e9d2e !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2e1d50 !important;
  border-color: #2e1d50 !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: #090610 !important;
  border-color: #090610 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #090610 !important;
  border-color: #090610 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #0e9d2e !important;
  border-color: #0e9d2e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #074d17 !important;
  border-color: #074d17 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #074d17 !important;
  border-color: #074d17 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2e1d50;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #090610 !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: #2e1d50 !important;
  border-color: #2e1d50 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0e9d2e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #074d17 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0e9d2e !important;
  border-color: #0e9d2e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: 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: #ffffff !important;
}
.text-secondary {
  color: #2e1d50 !important;
}
.text-success {
  color: #0e9d2e !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #030205 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #063f13 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #3dee64;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #2e1d50 !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='%23ffffff' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #206dcf !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #206dcf;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #206dcf;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAfr1eoQB4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAfr1eoQB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAfr1eoQB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAfr1eoQB4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3RHDsg8tb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3RHDsg8tb img,
.cid-v3RHDsg8tb .item-img {
  width: 100%;
}
.cid-v3RHDsg8tb .item:focus,
.cid-v3RHDsg8tb span:focus {
  outline: none;
}
.cid-v3RHDsg8tb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3RHDsg8tb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3RHDsg8tb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3RHDsg8tb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3RHDsg8tb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3RHDsg8tb .mbr-section-title {
  color: #232323;
}
.cid-v3RHDsg8tb .mbr-text,
.cid-v3RHDsg8tb .mbr-section-btn {
  text-align: left;
}
.cid-v3RHDsg8tb .item-title {
  text-align: left;
}
.cid-v3RHDsg8tb .item-subtitle {
  text-align: left;
}
.cid-tAftJAT3Fv {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tAftJAT3Fv .mbr-text {
  color: #000000;
}
.cid-tybYQZHoyg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybYQZHoyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybYQZHoyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybYQZHoyg .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tygRf7QGQl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tygRf7QGQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tygRf7QGQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tygRf7QGQl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tygRf7QGQl .row {
  flex-direction: row-reverse;
}
.cid-tygRf7QGQl img {
  width: 100%;
}
.cid-tyRVDDaNqq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tyRVDDaNqq img,
.cid-tyRVDDaNqq .item-img {
  width: 100%;
}
.cid-tyRVDDaNqq .item:focus,
.cid-tyRVDDaNqq span:focus {
  outline: none;
}
.cid-tyRVDDaNqq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tyRVDDaNqq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyRVDDaNqq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyRVDDaNqq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyRVDDaNqq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyRVDDaNqq .mbr-section-title {
  color: #232323;
}
.cid-tyRVDDaNqq .mbr-text,
.cid-tyRVDDaNqq .mbr-section-btn {
  text-align: center;
}
.cid-tyRVDDaNqq .item-title {
  text-align: center;
}
.cid-tyRVDDaNqq .item-subtitle {
  text-align: left;
}
.cid-tybYVAiQHe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybYVAiQHe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybYVAiQHe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybYVAiQHe .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybOqWXUHd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tybOqWXUHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOqWXUHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybOqWXUHd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tybOqWXUHd .row {
    flex-direction: column-reverse;
  }
  .cid-tybOqWXUHd .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tybOqWXUHd .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tybOqWXUHd .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tybOqWXUHd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tybOqWXUHd .mbr-text,
.cid-tybOqWXUHd .mbr-section-btn {
  color: #000000;
}
.cid-tybLkW7o2S {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybLkW7o2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybLkW7o2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybLkW7o2S .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tz9xVI53YF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tz9xVI53YF img,
.cid-tz9xVI53YF .item-img {
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tz9xVI53YF .item:focus,
.cid-tz9xVI53YF span:focus {
  outline: none;
}
.cid-tz9xVI53YF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tz9xVI53YF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tz9xVI53YF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9xVI53YF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tz9xVI53YF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tz9xVI53YF .mbr-section-title {
  color: #232323;
}
.cid-tz9xVI53YF .mbr-text,
.cid-tz9xVI53YF .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tz9xVI53YF .item-title {
  text-align: center;
}
.cid-tz9xVI53YF .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tybOvTl3CI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybOvTl3CI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOvTl3CI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybOvTl3CI .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybOMR7VYI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybOMR7VYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybOMR7VYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tybOMR7VYI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tybOMR7VYI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tybOMR7VYI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tybOMR7VYI .mbr-text {
  color: #000000;
}
.cid-tybQ6bYWHU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybQ6bYWHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQ6bYWHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQ6bYWHU .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v3VBufZKEU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eccc3d;
}
.cid-v3VBufZKEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3VBufZKEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3VBufZKEU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3VBufZKEU .row {
  flex-direction: row-reverse;
}
.cid-v3VBufZKEU img {
  width: 100%;
}
.cid-v3VEn0W0ji {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eccc3d;
}
.cid-v3VEn0W0ji .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3VEn0W0ji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3VEn0W0ji .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3VEn0W0ji .row {
  flex-direction: row-reverse;
}
.cid-v3VEn0W0ji img {
  width: 100%;
}
.cid-tydEw9qNn3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tydEw9qNn3 .item:focus,
.cid-tydEw9qNn3 span:focus {
  outline: none;
}
.cid-tydEw9qNn3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tydEw9qNn3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tydEw9qNn3 .item {
  padding: 0;
  margin: 0;
}
.cid-tydEw9qNn3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tydEw9qNn3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tydEw9qNn3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tydEw9qNn3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tydEw9qNn3 .mbr-section-title {
  color: #232323;
}
.cid-tydEw9qNn3 .mbr-text,
.cid-tydEw9qNn3 .mbr-section-btn {
  text-align: left;
}
.cid-tydEw9qNn3 .item-title {
  text-align: left;
}
.cid-tydEw9qNn3 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tybQ7EH5FD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tybQ7EH5FD .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tybQ7EH5FD .mbr-text {
  color: #000000;
}
.cid-tybQHX04IN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybQHX04IN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQHX04IN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQHX04IN .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2IAjbjMmD {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #eccc3d;
}
.cid-v2IAjbjMmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2IAjbjMmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2IAjbjMmD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2IAjbjMmD .row {
  flex-direction: row-reverse;
}
.cid-v2IAjbjMmD img {
  width: 100%;
}
.cid-v3RQvmd3qF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #eccc3d;
}
.cid-v3RQvmd3qF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3RQvmd3qF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3RQvmd3qF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3RQvmd3qF .row {
  flex-direction: row-reverse;
}
.cid-v3RQvmd3qF img {
  width: 100%;
}
.cid-v3RR7yA3Sg {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #eccc3d;
}
.cid-v3RR7yA3Sg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3RR7yA3Sg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3RR7yA3Sg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3RR7yA3Sg .row {
  flex-direction: row-reverse;
}
.cid-v3RR7yA3Sg img {
  width: 100%;
}
.cid-v3RRaaekVr {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-v3RRaaekVr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3RRaaekVr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3RRaaekVr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3RRaaekVr .row {
  flex-direction: row-reverse;
}
.cid-v3RRaaekVr img {
  width: 100%;
}
.cid-tybVU1zUXE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tybVU1zUXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybVU1zUXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybVU1zUXE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-tybVU1zUXE .item {
    margin-bottom: 4rem;
  }
}
.cid-tybVU1zUXE .item:last-child .icon-box:before {
  display: none;
}
.cid-tybVU1zUXE .item.last .icon-box:before {
  display: none;
}
.cid-tybVU1zUXE .icon-box {
  background: #206dcf;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tybVU1zUXE .icon-box {
    margin-right: 1rem;
  }
}
.cid-tybVU1zUXE .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 76px;
  left: 50%;
  top: 19%;
  top: 100%;
  color: #206dcf;
  transform: translate(-50%, 0);
}
.cid-tybVU1zUXE span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tybVU1zUXE .card {
    margin-bottom: 2rem;
  }
  .cid-tybVU1zUXE .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tybVU1zUXE .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-tybVU1zUXE .icon-box::before {
    top: 114%;
  }
}
.cid-tybVU1zUXE .icon-text {
  color: #000000;
}
.cid-tybQVqhPVi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybQVqhPVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQVqhPVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQVqhPVi .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v3UPZ1gSaa {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-v3UPZ1gSaa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3UPZ1gSaa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3UPZ1gSaa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3UPZ1gSaa .row {
  flex-direction: row-reverse;
}
.cid-v3UPZ1gSaa img {
  width: 100%;
}
.cid-tyglzsLdw3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tyglzsLdw3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyglzsLdw3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyglzsLdw3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tyglzsLdw3 .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-tybR9IcWOk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybR9IcWOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybR9IcWOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybR9IcWOk .mbr-section-title {
  color: #ffffff;
}
.cid-tybR9IcWOk .mbr-text,
.cid-tybR9IcWOk .mbr-section-btn {
  color: #000000;
}
.cid-tz9xPnQsN3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #eccc3d;
}
.cid-tz9xPnQsN3 .item:focus,
.cid-tz9xPnQsN3 span:focus {
  outline: none;
}
.cid-tz9xPnQsN3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tz9xPnQsN3 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tz9xPnQsN3 .item {
  padding: 0;
  margin: 0;
}
.cid-tz9xPnQsN3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tz9xPnQsN3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9xPnQsN3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tz9xPnQsN3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tz9xPnQsN3 .mbr-section-title {
  color: #232323;
}
.cid-tz9xPnQsN3 .mbr-text,
.cid-tz9xPnQsN3 .mbr-section-btn {
  text-align: left;
}
.cid-tz9xPnQsN3 .item-title {
  text-align: left;
}
.cid-tz9xPnQsN3 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tybRb95FEx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-tybRb95FEx .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tybRb95FEx .mbr-text {
  color: #232323;
}
.cid-tybQdndWrE {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #206dcf;
}
.cid-tybQdndWrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybQdndWrE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybQdndWrE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tybQdndWrE .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tybQdndWrE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tybQdndWrE .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 #2299aa;
  transition: all 0.3s;
}
.cid-tybQdndWrE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tybQdndWrE .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-tybQdndWrE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tybQdndWrE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tybQdndWrE .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tybQdndWrE .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tybQdndWrE .mbr-text,
.cid-tybQdndWrE .social-row {
  color: #000000;
}
.cid-tAaNfvAuJq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3.webp");
}
.cid-tAaNfvAuJq img,
.cid-tAaNfvAuJq .item-img {
  width: 100%;
}
.cid-tAaNfvAuJq .item:focus,
.cid-tAaNfvAuJq span:focus {
  outline: none;
}
.cid-tAaNfvAuJq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tAaNfvAuJq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tAaNfvAuJq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tAaNfvAuJq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tAaNfvAuJq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tAaNfvAuJq .mbr-section-title {
  color: #232323;
}
.cid-tAaNfvAuJq .mbr-text,
.cid-tAaNfvAuJq .mbr-section-btn {
  text-align: left;
}
.cid-tAaNfvAuJq .item-title {
  text-align: left;
  color: #000000;
}
.cid-tAaNfvAuJq .item-subtitle {
  text-align: left;
}
.cid-tAaNfvAuJq .mbr-section-subtitle {
  color: #000000;
}
.cid-tybRlarJ7L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybRlarJ7L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRlarJ7L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRlarJ7L .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybRittvzt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tybRittvzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRittvzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRittvzt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-tybRittvzt .panel-group {
  border: none;
}
.cid-tybRittvzt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tybRittvzt .panel-body,
.cid-tybRittvzt .card-header {
  padding: 1rem 0;
}
.cid-tybRittvzt .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-tybRittvzt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tAaQPAra8R {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tAaQPAra8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAaQPAra8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAaQPAra8R .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-tAaQPAra8R .panel-group {
  border: none;
}
.cid-tAaQPAra8R .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tAaQPAra8R .panel-body,
.cid-tAaQPAra8R .card-header {
  padding: 1rem 0;
}
.cid-tAaQPAra8R .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-tAaQPAra8R .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tybRoK232E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #206dcf;
}
.cid-tybRoK232E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRoK232E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRoK232E .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-tybRnS28Eo {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-tybRnS28Eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tybRnS28Eo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tybRnS28Eo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tybRnS28Eo .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tybRnS28Eo .mbr-section-title {
  color: #206dcf;
}
.cid-tybRnS28Eo .mbr-text,
.cid-tybRnS28Eo .mbr-section-btn {
  color: #2e1d50;
}
.cid-tySbJKK5Vr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #206dcf;
}
.cid-tySbJKK5Vr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tySbJKK5Vr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tySbJKK5Vr ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tySbJKK5Vr li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tySbJKK5Vr ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tySbJKK5Vr .list {
  color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #206dcf !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #206dcf;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #206dcf;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tyclRggXkB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-tyclRggXkB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyclRggXkB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyclRggXkB .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tyclRggXkB .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tyclRggXkB .mbr-section-title {
  color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #206dcf !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #206dcf;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #206dcf;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tycmZ6J934 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-tycmZ6J934 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tycmZ6J934 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tycmZ6J934 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tycmZ6J934 .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tycmZ6J934 .mbr-section-title {
  color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #206dcf !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #206dcf;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #206dcf;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tycnX4vINr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #353535;
}
.cid-tycnX4vINr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tycnX4vINr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tycnX4vINr .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tycnX4vINr .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tycnX4vINr .mbr-section-title {
  color: #ffffff;
}
.cid-tybRryikOJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tybRryikOJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tybRryikOJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tybRryikOJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tybRryikOJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tybRryikOJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tybRryikOJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tybRryikOJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tybRryikOJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tybRryikOJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tybRryikOJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tybRryikOJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tybRryikOJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tybRryikOJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v2JAlajcwt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2JAlajcwt nav.navbar {
  position: fixed;
}
.cid-v2JAlajcwt .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-v2JAlajcwt .dropdown-menu {
  padding: 0;
}
.cid-v2JAlajcwt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2JAlajcwt .dropdown-item:hover,
.cid-v2JAlajcwt .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-v2JAlajcwt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-v2JAlajcwt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2JAlajcwt .nav-link {
  position: relative;
}
.cid-v2JAlajcwt .container {
  display: flex;
  margin: auto;
}
.cid-v2JAlajcwt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v2JAlajcwt .navbar-caption {
  padding-right: 4rem;
}
.cid-v2JAlajcwt .dropdown-menu,
.cid-v2JAlajcwt .navbar.opened {
  background: #206dcf !important;
}
.cid-v2JAlajcwt .nav-item:focus,
.cid-v2JAlajcwt .nav-link:focus {
  outline: none;
}
.cid-v2JAlajcwt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2JAlajcwt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2JAlajcwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v2JAlajcwt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2JAlajcwt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2JAlajcwt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2JAlajcwt .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #206dcf;
}
.cid-v2JAlajcwt .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2JAlajcwt .navbar.opened {
  transition: all .3s;
}
.cid-v2JAlajcwt .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-v2JAlajcwt .navbar .navbar-logo img {
  width: auto;
}
.cid-v2JAlajcwt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2JAlajcwt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2JAlajcwt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2JAlajcwt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2JAlajcwt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2JAlajcwt .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: 55%;
}
.cid-v2JAlajcwt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2JAlajcwt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v2JAlajcwt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v2JAlajcwt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2JAlajcwt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2JAlajcwt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2JAlajcwt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2JAlajcwt .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: 55%;
  }
  .cid-v2JAlajcwt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v2JAlajcwt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2JAlajcwt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2JAlajcwt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2JAlajcwt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2JAlajcwt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v2JAlajcwt .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2JAlajcwt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v2JAlajcwt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v2JAlajcwt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2JAlajcwt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2JAlajcwt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2JAlajcwt .dropdown-item.active,
.cid-v2JAlajcwt .dropdown-item:active {
  background-color: transparent;
}
.cid-v2JAlajcwt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2JAlajcwt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2JAlajcwt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2JAlajcwt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #206dcf;
}
.cid-v2JAlajcwt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2JAlajcwt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2JAlajcwt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2JAlajcwt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2JAlajcwt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-v2JAlajcwt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-v2JAlajcwt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v2JAlajcwt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v2JAlajcwt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v2JAlajcwt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v2JAlajcwt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2JAlajcwt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v2JAlajcwt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v2JAlajcwt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v2JAlajcwt .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v2JAlajcwt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2JAlajcwt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2JAlajcwt .navbar {
    height: 77px;
  }
  .cid-v2JAlajcwt .navbar.opened {
    height: auto;
  }
  .cid-v2JAlajcwt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2JAlaFUAb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlaFUAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlaFUAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlaFUAb .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2JAlaTFgL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlaTFgL img,
.cid-v2JAlaTFgL .item-img {
  width: 100%;
}
.cid-v2JAlaTFgL .item:focus,
.cid-v2JAlaTFgL span:focus {
  outline: none;
}
.cid-v2JAlaTFgL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAlaTFgL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAlaTFgL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAlaTFgL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2JAlaTFgL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAlaTFgL .mbr-section-title {
  color: #232323;
}
.cid-v2JAlaTFgL .mbr-text,
.cid-v2JAlaTFgL .mbr-section-btn {
  text-align: left;
}
.cid-v2JAlaTFgL .item-title {
  text-align: left;
}
.cid-v2JAlaTFgL .item-subtitle {
  text-align: left;
}
.cid-v2JAlbeVzy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAlbeVzy .mbr-text {
  color: #000000;
}
.cid-v2JAlbnV2C {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlbnV2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlbnV2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlbnV2C .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAlbzKZj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2JAlbzKZj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlbzKZj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2JAlbzKZj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2JAlbzKZj .row {
  flex-direction: row-reverse;
}
.cid-v2JAlbzKZj img {
  width: 100%;
}
.cid-v2JAlbJezq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlbJezq img,
.cid-v2JAlbJezq .item-img {
  width: 100%;
}
.cid-v2JAlbJezq .item:focus,
.cid-v2JAlbJezq span:focus {
  outline: none;
}
.cid-v2JAlbJezq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAlbJezq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAlbJezq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAlbJezq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2JAlbJezq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAlbJezq .mbr-section-title {
  color: #232323;
}
.cid-v2JAlbJezq .mbr-text,
.cid-v2JAlbJezq .mbr-section-btn {
  text-align: center;
}
.cid-v2JAlbJezq .item-title {
  text-align: center;
}
.cid-v2JAlbJezq .item-subtitle {
  text-align: left;
}
.cid-v2JAlc7Cqj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlc7Cqj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlc7Cqj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlc7Cqj .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAlcjYQ3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2JAlcjYQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlcjYQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlcjYQ3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2JAlcjYQ3 .row {
    flex-direction: column-reverse;
  }
  .cid-v2JAlcjYQ3 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-v2JAlcjYQ3 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2JAlcjYQ3 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-v2JAlcjYQ3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v2JAlcjYQ3 .mbr-text,
.cid-v2JAlcjYQ3 .mbr-section-btn {
  color: #000000;
}
.cid-v2JAlcFeMI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlcFeMI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlcFeMI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlcFeMI .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAlcN5zK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlcN5zK img,
.cid-v2JAlcN5zK .item-img {
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-v2JAlcN5zK .item:focus,
.cid-v2JAlcN5zK span:focus {
  outline: none;
}
.cid-v2JAlcN5zK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAlcN5zK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAlcN5zK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAlcN5zK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2JAlcN5zK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAlcN5zK .mbr-section-title {
  color: #232323;
}
.cid-v2JAlcN5zK .mbr-text,
.cid-v2JAlcN5zK .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v2JAlcN5zK .item-title {
  text-align: center;
}
.cid-v2JAlcN5zK .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-v2JAld40ne {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAld40ne .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAld40ne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAld40ne .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAldet3P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAldet3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAldet3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2JAldet3P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2JAldet3P img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v2JAldet3P .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2JAldet3P .mbr-text {
  color: #000000;
}
.cid-v2JAldp1UM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAldp1UM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAldp1UM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAldp1UM .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAldz9Lm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAldz9Lm .item:focus,
.cid-v2JAldz9Lm span:focus {
  outline: none;
}
.cid-v2JAldz9Lm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAldz9Lm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2JAldz9Lm .item {
  padding: 0;
  margin: 0;
}
.cid-v2JAldz9Lm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAldz9Lm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAldz9Lm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2JAldz9Lm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAldz9Lm .mbr-section-title {
  color: #232323;
}
.cid-v2JAldz9Lm .mbr-text,
.cid-v2JAldz9Lm .mbr-section-btn {
  text-align: left;
}
.cid-v2JAldz9Lm .item-title {
  text-align: left;
}
.cid-v2JAldz9Lm .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v2JAldOmyt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAldOmyt .line {
  background-color: #2e1d50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2JAldOmyt .mbr-text {
  color: #000000;
}
.cid-v2JAldYeVe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAldYeVe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAldYeVe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAldYeVe .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAle8q6h {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2JAle8q6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAle8q6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2JAle8q6h .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2JAle8q6h .row {
  flex-direction: row-reverse;
}
.cid-v2JAle8q6h img {
  width: 100%;
}
.cid-v2JAleiUWP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAleiUWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAleiUWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAleiUWP .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-v2JAleiUWP .item {
    margin-bottom: 4rem;
  }
}
.cid-v2JAleiUWP .item:last-child .icon-box:before {
  display: none;
}
.cid-v2JAleiUWP .item.last .icon-box:before {
  display: none;
}
.cid-v2JAleiUWP .icon-box {
  background: #67a375;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-v2JAleiUWP .icon-box {
    margin-right: 1rem;
  }
}
.cid-v2JAleiUWP .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 76px;
  left: 50%;
  top: 19%;
  top: 100%;
  color: #67a375;
  transform: translate(-50%, 0);
}
.cid-v2JAleiUWP span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2JAleiUWP .card {
    margin-bottom: 2rem;
  }
  .cid-v2JAleiUWP .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-v2JAleiUWP .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-v2JAleiUWP .icon-box::before {
    top: 114%;
  }
}
.cid-v2JAleiUWP .icon-text {
  color: #000000;
}
.cid-v2JAlfFQRT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlfFQRT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlfFQRT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlfFQRT .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAlfPfIn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v2JAlfPfIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlfPfIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlfPfIn .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-v2JAlfPfIn .mbr-section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-v2JAlfZidS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlfZidS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlfZidS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlfZidS .mbr-section-title {
  color: #ffffff;
}
.cid-v2JAlfZidS .mbr-text,
.cid-v2JAlfZidS .mbr-section-btn {
  color: #000000;
}
.cid-v2JAlgbHQ9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAlgbHQ9 .item:focus,
.cid-v2JAlgbHQ9 span:focus {
  outline: none;
}
.cid-v2JAlgbHQ9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAlgbHQ9 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-v2JAlgbHQ9 .item {
  padding: 0;
  margin: 0;
}
.cid-v2JAlgbHQ9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAlgbHQ9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAlgbHQ9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v2JAlgbHQ9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAlgbHQ9 .mbr-section-title {
  color: #232323;
}
.cid-v2JAlgbHQ9 .mbr-text,
.cid-v2JAlgbHQ9 .mbr-section-btn {
  text-align: left;
}
.cid-v2JAlgbHQ9 .item-title {
  text-align: left;
}
.cid-v2JAlgbHQ9 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-v2JAlgqwIw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eccc3d;
}
.cid-v2JAlgqwIw .line {
  background-color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v2JAlgqwIw .mbr-text {
  color: #232323;
}
.cid-v2JAlgzklf {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #67a375;
}
.cid-v2JAlgzklf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlgzklf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlgzklf .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-v2JAlgzklf .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-v2JAlgzklf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v2JAlgzklf .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 #2299aa;
  transition: all 0.3s;
}
.cid-v2JAlgzklf .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #2299aa;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-v2JAlgzklf .social-row .soc-item:hover {
  background-color: #2299aa;
}
.cid-v2JAlgzklf .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v2JAlgzklf .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-v2JAlgzklf .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2JAlgzklf .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-v2JAlgzklf .mbr-text,
.cid-v2JAlgzklf .social-row {
  color: #000000;
}
.cid-v2JAlgVyDj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlgVyDj img,
.cid-v2JAlgVyDj .item-img {
  width: 100%;
}
.cid-v2JAlgVyDj .item:focus,
.cid-v2JAlgVyDj span:focus {
  outline: none;
}
.cid-v2JAlgVyDj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2JAlgVyDj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2JAlgVyDj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2JAlgVyDj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2JAlgVyDj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2JAlgVyDj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2JAlgVyDj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2JAlgVyDj .mbr-section-title {
  color: #232323;
}
.cid-v2JAlgVyDj .mbr-text,
.cid-v2JAlgVyDj .mbr-section-btn {
  text-align: left;
}
.cid-v2JAlgVyDj .item-title {
  text-align: left;
  color: #000000;
}
.cid-v2JAlgVyDj .item-subtitle {
  text-align: left;
}
.cid-v2JAlgVyDj .mbr-section-subtitle {
  color: #000000;
}
.cid-v2JAlhaRcb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlhaRcb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlhaRcb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlhaRcb .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAlhjmVg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlhjmVg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlhjmVg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlhjmVg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-v2JAlhjmVg .panel-group {
  border: none;
}
.cid-v2JAlhjmVg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v2JAlhjmVg .panel-body,
.cid-v2JAlhjmVg .card-header {
  padding: 1rem 0;
}
.cid-v2JAlhjmVg .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-v2JAlhjmVg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v2JAlhAv6N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v2JAlhAv6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlhAv6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlhAv6N .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-v2JAlhAv6N .panel-group {
  border: none;
}
.cid-v2JAlhAv6N .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v2JAlhAv6N .panel-body,
.cid-v2JAlhAv6N .card-header {
  padding: 1rem 0;
}
.cid-v2JAlhAv6N .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-v2JAlhAv6N .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v2JAlhOeqN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #67a375;
}
.cid-v2JAlhOeqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAlhOeqN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAlhOeqN .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2JAli2nRf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2JAli2nRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAli2nRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAli2nRf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v2JAli2nRf .image-wrap img {
    display: block;
    margin: auto;
    width: 50%;
  }
}
.cid-v2JAli2nRf .mbr-section-title {
  color: #206dcf;
}
.cid-v2JAli2nRf .mbr-text,
.cid-v2JAli2nRf .mbr-section-btn {
  color: #2e1d50;
}
.cid-v2JAligTnf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #67a375;
}
.cid-v2JAligTnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2JAligTnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2JAligTnf ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-v2JAligTnf li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-v2JAligTnf ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffffff;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-v2JAligTnf .list {
  color: #ffffff;
}
.cid-v2JAliv2Qb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-v2JAliv2Qb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v2JAliv2Qb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-v2JAliv2Qb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-v2JAliv2Qb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v2JAliv2Qb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v2JAliv2Qb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v2JAliv2Qb .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-v2JAliv2Qb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v2JAliv2Qb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v2JAliv2Qb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-v2JAliv2Qb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v2JAliv2Qb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v2JAliv2Qb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v2JAliv2Qb .media-container-row .row-copirayt p {
  width: 100%;
}
