body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 0.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 0.63rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #2a9b0c !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #faaf2b !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2a9b0c !important;
  border-color: #2a9b0c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #144b06 !important;
  border-color: #144b06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #144b06 !important;
  border-color: #144b06 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #faaf2b !important;
  border-color: #faaf2b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ca8205 !important;
  border-color: #ca8205 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ca8205 !important;
  border-color: #ca8205 !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: #2a9b0c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #144b06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2a9b0c !important;
  border-color: #2a9b0c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: 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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #faaf2b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ca8205 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #faaf2b !important;
  border-color: #faaf2b !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: #2a9b0c !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #faaf2b !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: #103c05 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bb7904 !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: #2a9b0c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #faaf2b;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2a9b0c;
  border-color: #2a9b0c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2a9b0c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5ef037;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fffaf2;
}
.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: #2a9b0c !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: #2a9b0c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2a9b0c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2a9b0c;
}
.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: #2a9b0c;
  border-bottom-color: #2a9b0c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2a9b0c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%232a9b0c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sw0hNJHf9N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0hNJHf9N .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0hNJHf9N .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0hNJHf9N .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw0hNJHf9N .mbr-section-title {
  color: #000000;
}
.cid-sw0hNKASI1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0hNKASI1 .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0hNKASI1 .mbr-text {
  text-align: left;
}
.cid-sw0hNMjdJx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw0hNMjdJx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw0hNMjdJx .row {
  flex-direction: row-reverse;
}
.cid-sw0hNMjdJx img {
  width: 100%;
}
.cid-sw0hNMPFJG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0hNMPFJG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0hNMPFJG .row {
    flex-direction: column-reverse;
  }
  .cid-sw0hNMPFJG .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw0hNMPFJG .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0hNMPFJG .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw0hNMPFJG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw0hNMPFJG .card-title {
  color: #000000;
}
.cid-sw0hNMPFJG .mbr-text,
.cid-sw0hNMPFJG .mbr-section-btn {
  color: #353535;
}
.cid-sw0hNNjkLT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0hNNjkLT .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0hNNjkLT .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw0hNNBswY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0hNNBswY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw0hNNBswY .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw0hNNBswY .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw0hNNBswY .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw0hNNBswY .mbr-section-title {
  color: #4479d9;
}
.cid-sw0hNNBswY .link {
  color: #000000;
}
.cid-sw0hNOa77n {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0hNOa77n .mbr-section-title {
  color: #353535;
}
.cid-sw0hNOa77n .mbr-text,
.cid-sw0hNOa77n .link {
  color: #353535;
}
.cid-sw0hNP53Ei {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw0hNP53Ei .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw52nTpcKI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw52nTpcKI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw52nTpcKI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw52nTpcKI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw52nTpcKI .mbr-section-title {
  color: #000000;
}
.cid-sw52nUwlYg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw52nUwlYg .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw52nUwlYg .mbr-text {
  text-align: left;
}
.cid-sw52nW2zpe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw52nW2zpe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw52nW2zpe .row {
  flex-direction: row-reverse;
}
.cid-sw52nW2zpe img {
  width: 100%;
}
.cid-sw52nWwMXt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw52nWwMXt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw52nWwMXt .row {
    flex-direction: column-reverse;
  }
  .cid-sw52nWwMXt .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw52nWwMXt .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw52nWwMXt .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw52nWwMXt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw52nWwMXt .card-title {
  color: #000000;
}
.cid-sw52nWwMXt .mbr-text,
.cid-sw52nWwMXt .mbr-section-btn {
  color: #353535;
}
.cid-sw52nX26Mi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw52nX26Mi .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw52nX26Mi .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw52nXnswJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw52nXnswJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw52nXnswJ .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw52nXnswJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw52nXnswJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw52nXnswJ .mbr-section-title {
  color: #000000;
}
.cid-sw52nXnswJ .link {
  color: #000000;
}
.cid-sw52nY0Xww {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw52nY0Xww .mbr-section-title {
  color: #353535;
}
.cid-sw52nY0Xww .mbr-text,
.cid-sw52nY0Xww .link {
  color: #353535;
}
.cid-sw52nZ4wZX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw52nZ4wZX .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw19nfq9HO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw19nfq9HO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw19nfq9HO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw19nfq9HO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw19nfq9HO .mbr-section-title {
  color: #4479d9;
}
.cid-sw19ngfbub {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw19ngfbub .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw19ngfbub .mbr-text {
  text-align: left;
}
.cid-sw19nhNbSx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw19nhNbSx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw19nhNbSx .row {
  flex-direction: row-reverse;
}
.cid-sw19nhNbSx img {
  width: 100%;
}
.cid-sw19nihbZg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw19nihbZg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw19nihbZg .row {
    flex-direction: column-reverse;
  }
  .cid-sw19nihbZg .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw19nihbZg .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw19nihbZg .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw19nihbZg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw19nihbZg .card-title {
  color: #000000;
}
.cid-sw19nihbZg .mbr-text,
.cid-sw19nihbZg .mbr-section-btn {
  color: #353535;
}
.cid-sw19niOcXp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw19niOcXp .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw19niOcXp .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw19nj7MvT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw19nj7MvT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw19nj7MvT .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw19nj7MvT .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw19nj7MvT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw19nj7MvT .mbr-section-title {
  color: #4479d9;
}
.cid-sw19nj7MvT .link {
  color: #000000;
}
.cid-sw19njHlUR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw19njHlUR .mbr-section-title {
  color: #353535;
}
.cid-sw19njHlUR .mbr-text,
.cid-sw19njHlUR .link {
  color: #353535;
}
.cid-sw19nkBC1h {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw19nkBC1h .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0IUmMHMd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0IUmMHMd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0IUmMHMd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0IUmMHMd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw0IUmMHMd .mbr-section-title {
  color: #4479d9;
}
.cid-sw0IUnd7n2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0IUnd7n2 .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0IUnd7n2 .mbr-text {
  text-align: left;
}
.cid-sw0IUoh3m0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw0IUoh3m0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw0IUoh3m0 .row {
  flex-direction: row-reverse;
}
.cid-sw0IUoh3m0 img {
  width: 100%;
}
.cid-sw0IUoLMGm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0IUoLMGm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0IUoLMGm .row {
    flex-direction: column-reverse;
  }
  .cid-sw0IUoLMGm .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw0IUoLMGm .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0IUoLMGm .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw0IUoLMGm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw0IUoLMGm .card-title {
  color: #000000;
}
.cid-sw0IUoLMGm .mbr-text,
.cid-sw0IUoLMGm .mbr-section-btn {
  color: #353535;
}
.cid-sw0IUplUfz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0IUplUfz .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0IUplUfz .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw0IUpKj2P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0IUpKj2P .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw0IUpKj2P .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw0IUpKj2P .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw0IUpKj2P .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw0IUpKj2P .mbr-section-title {
  color: #4479d9;
}
.cid-sw0IUpKj2P .link {
  color: #000000;
}
.cid-sw0IUqlUMQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0IUqlUMQ .mbr-section-title {
  color: #353535;
}
.cid-sw0IUqlUMQ .mbr-text,
.cid-sw0IUqlUMQ .link {
  color: #353535;
}
.cid-sw0IUrqiaw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw0IUrqiaw .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0YBYBmV3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0YBYBmV3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0YBYBmV3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0YBYBmV3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw0YBYBmV3 .mbr-section-title {
  color: #4479d9;
}
.cid-sw0YBZtbHj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0YBZtbHj .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0YBZtbHj .mbr-text {
  text-align: left;
}
.cid-sw0YC11rAb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw0YC11rAb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw0YC11rAb .row {
  flex-direction: row-reverse;
}
.cid-sw0YC11rAb img {
  width: 100%;
}
.cid-sw0YC1wEbP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0YC1wEbP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0YC1wEbP .row {
    flex-direction: column-reverse;
  }
  .cid-sw0YC1wEbP .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw0YC1wEbP .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0YC1wEbP .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw0YC1wEbP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw0YC1wEbP .card-title {
  color: #000000;
}
.cid-sw0YC1wEbP .mbr-text,
.cid-sw0YC1wEbP .mbr-section-btn {
  color: #353535;
}
.cid-sw0YC20zqa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0YC20zqa .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0YC20zqa .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw0YC2iDZZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0YC2iDZZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw0YC2iDZZ .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw0YC2iDZZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw0YC2iDZZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw0YC2iDZZ .mbr-section-title {
  color: #4479d9;
}
.cid-sw0YC2iDZZ .link {
  color: #000000;
}
.cid-sw0YC32q7w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0YC32q7w .mbr-section-title {
  color: #353535;
}
.cid-sw0YC32q7w .mbr-text,
.cid-sw0YC32q7w .link {
  color: #353535;
}
.cid-sw0YC3Uh1b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw0YC3Uh1b .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0qpOVvFu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0qpOVvFu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0qpOVvFu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0qpOVvFu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw0qpOVvFu .mbr-section-title {
  color: #4479d9;
}
.cid-sw0qpPK6bR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0qpPK6bR .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0qpPK6bR .mbr-text {
  text-align: left;
}
.cid-sw0qpRpZTz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw0qpRpZTz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw0qpRpZTz .row {
  flex-direction: row-reverse;
}
.cid-sw0qpRpZTz img {
  width: 100%;
}
.cid-sw0qpRThHy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0qpRThHy .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0qpRThHy .row {
    flex-direction: column-reverse;
  }
  .cid-sw0qpRThHy .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw0qpRThHy .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0qpRThHy .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw0qpRThHy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw0qpRThHy .card-title {
  color: #000000;
}
.cid-sw0qpRThHy .mbr-text,
.cid-sw0qpRThHy .mbr-section-btn {
  color: #353535;
}
.cid-sw0qpSnWmH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0qpSnWmH .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0qpSnWmH .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw0qpSFp0X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0qpSFp0X .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw0qpSFp0X .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw0qpSFp0X .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw0qpSFp0X .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw0qpSFp0X .mbr-section-title {
  color: #4479d9;
}
.cid-sw0qpSFp0X .link {
  color: #000000;
}
.cid-sw0qpTh4rV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0qpTh4rV .mbr-section-title {
  color: #353535;
}
.cid-sw0qpTh4rV .mbr-text,
.cid-sw0qpTh4rV .link {
  color: #353535;
}
.cid-sw0qpUaMiT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw0qpUaMiT .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw03eMmgas {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw03eMmgas .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw03eMmgas .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw03eMmgas .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw03eMmgas .mbr-section-title {
  color: #4479d9;
}
.cid-sw03eNoDJd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw03eNoDJd .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw03eNoDJd .mbr-text {
  text-align: left;
}
.cid-sw03eP15uW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw03eP15uW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw03eP15uW .row {
  flex-direction: row-reverse;
}
.cid-sw03eP15uW img {
  width: 100%;
}
.cid-sw03ePvpkl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw03ePvpkl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw03ePvpkl .row {
    flex-direction: column-reverse;
  }
  .cid-sw03ePvpkl .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw03ePvpkl .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw03ePvpkl .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw03ePvpkl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw03ePvpkl .card-title {
  color: #000000;
}
.cid-sw03ePvpkl .mbr-text,
.cid-sw03ePvpkl .mbr-section-btn {
  color: #353535;
}
.cid-sw03eQ3Na9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw03eQ3Na9 .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw03eQ3Na9 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw03eQl57j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw03eQl57j .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw03eQl57j .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw03eQl57j .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw03eQl57j .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw03eQl57j .mbr-section-title {
  color: #4479d9;
}
.cid-sw03eQl57j .link {
  color: #000000;
}
.cid-sw03eQUgGH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw03eQUgGH .mbr-section-title {
  color: #353535;
}
.cid-sw03eQUgGH .mbr-text,
.cid-sw03eQUgGH .link {
  color: #353535;
}
.cid-sw03eROnI3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw03eROnI3 .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svVaXJcplg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svVaXJcplg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-svVaXJcplg .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svVaXJcplg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-svVaXJcplg .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-svVaXJcplg .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svVaXJcplg .mbr-text,
.cid-svVaXJcplg .mbr-section-btn {
  color: #000000;
}
.cid-svVaXJcplg .mbr-section-title {
  color: #4479d9;
}
.cid-svVaXK7qjF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svVlAWhvHw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svVlAWhvHw .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svVlAWhvHw .mbr-text {
  text-align: left;
}
.cid-svVaXKY33t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svVaXKY33t .mbr-section-title {
  color: #000000;
}
.cid-svVaXKY33t .mbr-text,
.cid-svVaXKY33t .link {
  color: #353535;
}
.cid-svVaXLTrPc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svVaXLTrPc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svVaXLTrPc .row {
  flex-direction: row-reverse;
}
.cid-svVaXLTrPc img {
  width: 100%;
}
.cid-svVaXMuv3O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svVaXMuv3O .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svVaXMuv3O .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-svVaXMP8Nj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svVaXMP8Nj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svVaXMP8Nj .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svVaXMP8Nj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svVaXMP8Nj .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svVaXMP8Nj .mbr-section-title {
  color: #4479d9;
}
.cid-svVaXMP8Nj .link {
  color: #000000;
}
.cid-svVaXNvcwa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svVaXNvcwa .mbr-text,
.cid-svVaXNvcwa .link {
  color: #353535;
}
.cid-svVaXOjflg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svVaXOjflg .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svZx1HnxVH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svZx1HnxVH .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-svZx1HnxVH .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZx1HnxVH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-svZx1HnxVH .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-svZx1HnxVH .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZx1HnxVH .mbr-text,
.cid-svZx1HnxVH .mbr-section-btn {
  color: #000000;
}
.cid-svZx1HnxVH .mbr-section-title {
  color: #4479d9;
}
.cid-svZx1HPAeG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZx1IagRX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZx1IagRX .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZx1IagRX .mbr-text {
  text-align: left;
}
.cid-svZx1IuDJ9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZx1IuDJ9 .mbr-section-title {
  color: #000000;
}
.cid-svZx1IuDJ9 .mbr-text,
.cid-svZx1IuDJ9 .link {
  color: #353535;
}
.cid-svZx1JmHxl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svZx1JmHxl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svZx1JmHxl .row {
  flex-direction: row-reverse;
}
.cid-svZx1JmHxl img {
  width: 100%;
}
.cid-svZx1JT069 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZx1JT069 .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZx1JT069 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-svZx1KeIv1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZx1KeIv1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svZx1KeIv1 .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svZx1KeIv1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svZx1KeIv1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svZx1KeIv1 .mbr-section-title {
  color: #4479d9;
}
.cid-svZx1KeIv1 .link {
  color: #000000;
}
.cid-svZx1KNCNR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZx1KNCNR .mbr-text,
.cid-svZx1KNCNR .link {
  color: #353535;
}
.cid-svZx1LEqgz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svZx1LEqgz .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svZ3qnu95J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svZ3qnu95J .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-svZ3qnu95J .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZ3qnu95J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-svZ3qnu95J .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-svZ3qnu95J .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZ3qnu95J .mbr-text,
.cid-svZ3qnu95J .mbr-section-btn {
  color: #000000;
}
.cid-svZ3qnu95J .mbr-section-title {
  color: #4479d9;
}
.cid-svZ3qom2HD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZ3qoM6wz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZ3qoM6wz .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZ3qoM6wz .mbr-text {
  text-align: left;
}
.cid-svZ3qp64uJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZ3qp64uJ .mbr-section-title {
  color: #000000;
}
.cid-svZ3qp64uJ .mbr-text,
.cid-svZ3qp64uJ .link {
  color: #353535;
}
.cid-svZ3qq1pW2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svZ3qq1pW2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svZ3qq1pW2 .row {
  flex-direction: row-reverse;
}
.cid-svZ3qq1pW2 img {
  width: 100%;
}
.cid-svZ3qqEQuH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZ3qqEQuH .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZ3qqEQuH .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-svZ3qqWWc9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZ3qqWWc9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svZ3qqWWc9 .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svZ3qqWWc9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svZ3qqWWc9 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svZ3qqWWc9 .mbr-section-title {
  color: #4479d9;
}
.cid-svZ3qqWWc9 .link {
  color: #000000;
}
.cid-svZ3qrwq4u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZ3qrwq4u .mbr-text,
.cid-svZ3qrwq4u .link {
  color: #353535;
}
.cid-svZ3qsoUQ1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svZ3qsoUQ1 .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svZtDTN7Xa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svZtDTN7Xa .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-svZtDTN7Xa .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZtDTN7Xa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-svZtDTN7Xa .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-svZtDTN7Xa .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svZtDTN7Xa .mbr-text,
.cid-svZtDTN7Xa .mbr-section-btn {
  color: #000000;
}
.cid-svZtDTN7Xa .mbr-section-title {
  color: #4479d9;
}
.cid-svZtDUhsxk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZtDUAepf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZtDUAepf .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZtDUAepf .mbr-text {
  text-align: left;
}
.cid-svZtDUTxlr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZtDUTxlr .mbr-section-title {
  color: #000000;
}
.cid-svZtDUTxlr .mbr-text,
.cid-svZtDUTxlr .link {
  color: #353535;
}
.cid-svZtDVFec7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svZtDVFec7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svZtDVFec7 .row {
  flex-direction: row-reverse;
}
.cid-svZtDVFec7 img {
  width: 100%;
}
.cid-svZtDWbLOV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svZtDWbLOV .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svZtDWbLOV .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-svZtDWuoz7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZtDWuoz7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svZtDWuoz7 .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svZtDWuoz7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svZtDWuoz7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svZtDWuoz7 .mbr-section-title {
  color: #4479d9;
}
.cid-svZtDWuoz7 .link {
  color: #000000;
}
.cid-svZtDX5nhH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svZtDX5nhH .mbr-text,
.cid-svZtDX5nhH .link {
  color: #353535;
}
.cid-svZtDXUvff {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svZtDXUvff .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw6wiYICep {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sw6wiYICep .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sw6wiYICep .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sw6wiYICep .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sw6wiYICep .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sw6wiYICep .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sw6wiYICep .mbr-text,
.cid-sw6wiYICep .mbr-section-btn {
  color: #000000;
}
.cid-sw6wiYICep .mbr-section-title {
  color: #4479d9;
}
.cid-sw6wiZxE6e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6wiZXBCi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw6wiZXBCi .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw6wiZXBCi .mbr-text {
  text-align: left;
}
.cid-sw6wj0hTEJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6wj0hTEJ .mbr-section-title {
  color: #000000;
}
.cid-sw6wj0hTEJ .mbr-text,
.cid-sw6wj0hTEJ .link {
  color: #353535;
}
.cid-sw6wj12SjX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw6wj12SjX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw6wj12SjX .row {
  flex-direction: row-reverse;
}
.cid-sw6wj12SjX img {
  width: 100%;
}
.cid-sw6wj1GF3Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw6wj1GF3Z .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw6wj1GF3Z .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw6wj1Zpzl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6wj1Zpzl .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw6wj1Zpzl .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw6wj1Zpzl .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw6wj1Zpzl .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw6wj1Zpzl .mbr-section-title {
  color: #4479d9;
}
.cid-sw6wj1Zpzl .link {
  color: #000000;
}
.cid-sw6wj2zFMu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6wj2zFMu .mbr-text,
.cid-sw6wj2zFMu .link {
  color: #353535;
}
.cid-sw6wj3rX8F {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw6wj3rX8F .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw6MLPHPcF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sw6MLPHPcF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sw6MLPHPcF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sw6MLPHPcF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sw6MLPHPcF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sw6MLPHPcF .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sw6MLPHPcF .mbr-text,
.cid-sw6MLPHPcF .mbr-section-btn {
  color: #000000;
}
.cid-sw6MLPHPcF .mbr-section-title {
  color: #4479d9;
}
.cid-sw6MLQv2GI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6MLQWvcZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw6MLQWvcZ .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw6MLQWvcZ .mbr-text {
  text-align: left;
}
.cid-sw6MLRhfJC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6MLRhfJC .mbr-section-title {
  color: #000000;
}
.cid-sw6MLRhfJC .mbr-text,
.cid-sw6MLRhfJC .link {
  color: #353535;
}
.cid-sw6MLS7c0V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw6MLS7c0V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw6MLS7c0V .row {
  flex-direction: row-reverse;
}
.cid-sw6MLS7c0V img {
  width: 100%;
}
.cid-sw6MLSENkv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw6MLSENkv .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw6MLSENkv .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw6MLSXY5P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6MLSXY5P .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw6MLSXY5P .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw6MLSXY5P .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw6MLSXY5P .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw6MLSXY5P .mbr-section-title {
  color: #4479d9;
}
.cid-sw6MLSXY5P .link {
  color: #000000;
}
.cid-sw6MLTwmo7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw6MLTwmo7 .mbr-text,
.cid-sw6MLTwmo7 .link {
  color: #353535;
}
.cid-sw6MLUlS7R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw6MLUlS7R .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvdGbhmMbC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-tvdGbhmMbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvdGbhmMbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvdGbhmMbC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvdGbhmMbC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvdGbhmMbC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvdGbhmMbC .mbr-section-title {
  color: #000000;
}
.cid-tvdGbhmMbC .mbr-text,
.cid-tvdGbhmMbC .mbr-section-btn {
  color: #000000;
}
.cid-sw4yHC7WbA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw4yHC7WbA .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw4yHC7WbA .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-svIhH8HkN8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svIhH8HkN8 img,
.cid-svIhH8HkN8 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svIhH8HkN8 .item:focus,
.cid-svIhH8HkN8 span:focus {
  outline: none;
}
.cid-svIhH8HkN8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svIhH8HkN8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bed3f9;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svIhH8HkN8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svIhH8HkN8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svIhH8HkN8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svIhH8HkN8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svIhH8HkN8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svIhH8HkN8 .mbr-section-title {
  color: #faaf2b;
}
.cid-svIhH8HkN8 .mbr-text,
.cid-svIhH8HkN8 .mbr-section-btn {
  text-align: left;
}
.cid-svIhH8HkN8 .item-title {
  text-align: left;
}
.cid-svIhH8HkN8 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-svIiOLgTd8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-svIiOLgTd8 img,
.cid-svIiOLgTd8 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svIiOLgTd8 .item:focus,
.cid-svIiOLgTd8 span:focus {
  outline: none;
}
.cid-svIiOLgTd8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svIiOLgTd8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bed3f9;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svIiOLgTd8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svIiOLgTd8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svIiOLgTd8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svIiOLgTd8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svIiOLgTd8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svIiOLgTd8 .mbr-section-title {
  color: #232323;
}
.cid-svIiOLgTd8 .mbr-text,
.cid-svIiOLgTd8 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-svIiOLgTd8 .item-title {
  text-align: left;
  color: #232323;
}
.cid-svIiOLgTd8 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-svr7Qei7wM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svr7Qei7wM .item {
  padding-bottom: 2rem;
}
.cid-svr7Qei7wM .item-wrapper {
  position: relative;
}
.cid-svr7Qei7wM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-svr7Qei7wM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-svr7Qei7wM .carousel-control,
.cid-svr7Qei7wM .close {
  background: #1b1b1b;
}
.cid-svr7Qei7wM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-svr7Qei7wM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-svr7Qei7wM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-svr7Qei7wM .carousel-control-next span {
  margin-left: 5px;
}
.cid-svr7Qei7wM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-svr7Qei7wM .close::before {
  content: '\e91a';
}
.cid-svr7Qei7wM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-svr7Qei7wM .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-svr7Qei7wM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr7Qei7wM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-svr7Qei7wM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svr7Qei7wM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-svr7Qei7wM .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-svr7Qei7wM .carousel-indicators li.active,
.cid-svr7Qei7wM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svr7Qei7wM .carousel-indicators li::after,
.cid-svr7Qei7wM .carousel-indicators li::before {
  content: none;
}
.cid-svr7Qei7wM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-svr7Qei7wM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-svr7Qei7wM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-svr7Qei7wM .carousel-indicators {
    display: none;
  }
}
.cid-svr7Qei7wM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-svr7Qei7wM .carousel-inner > .active {
  display: block;
}
.cid-svr7Qei7wM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr7Qei7wM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svr7Qei7wM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-svr7Qei7wM .carousel-control,
  .cid-svr7Qei7wM .carousel-indicators,
  .cid-svr7Qei7wM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-svr7Qei7wM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-svr7Qei7wM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svr7Qei7wM .carousel-indicators .active,
.cid-svr7Qei7wM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-svr7Qei7wM .carousel-indicators .active {
  background: #fff;
}
.cid-svr7Qei7wM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-svr7Qei7wM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-svr7Qei7wM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svr7Qei7wM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-svr7Qei7wM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-svr7Qei7wM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-svr7Qei7wM .carousel {
  width: 100%;
}
.cid-svr7Qei7wM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-svr7Qei7wM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-svr7Qei7wM .modal.fade .modal-dialog,
.cid-svr7Qei7wM .modal.in .modal-dialog {
  transform: none;
}
.cid-svr7Qei7wM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-svr7Qei7wM H6 {
  text-align: center;
}
.cid-svr7Qei7wM H4 {
  color: #6592e6;
}
.cid-svr8nCc9kU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svr8nCc9kU .item {
  padding-bottom: 2rem;
}
.cid-svr8nCc9kU .item-wrapper {
  position: relative;
}
.cid-svr8nCc9kU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-svr8nCc9kU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-svr8nCc9kU .carousel-control,
.cid-svr8nCc9kU .close {
  background: #1b1b1b;
}
.cid-svr8nCc9kU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-svr8nCc9kU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-svr8nCc9kU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-svr8nCc9kU .carousel-control-next span {
  margin-left: 5px;
}
.cid-svr8nCc9kU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-svr8nCc9kU .close::before {
  content: '\e91a';
}
.cid-svr8nCc9kU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-svr8nCc9kU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-svr8nCc9kU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr8nCc9kU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-svr8nCc9kU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svr8nCc9kU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-svr8nCc9kU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-svr8nCc9kU .carousel-indicators li.active,
.cid-svr8nCc9kU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svr8nCc9kU .carousel-indicators li::after,
.cid-svr8nCc9kU .carousel-indicators li::before {
  content: none;
}
.cid-svr8nCc9kU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-svr8nCc9kU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-svr8nCc9kU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-svr8nCc9kU .carousel-indicators {
    display: none;
  }
}
.cid-svr8nCc9kU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-svr8nCc9kU .carousel-inner > .active {
  display: block;
}
.cid-svr8nCc9kU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr8nCc9kU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svr8nCc9kU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-svr8nCc9kU .carousel-control,
  .cid-svr8nCc9kU .carousel-indicators,
  .cid-svr8nCc9kU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-svr8nCc9kU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-svr8nCc9kU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svr8nCc9kU .carousel-indicators .active,
.cid-svr8nCc9kU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-svr8nCc9kU .carousel-indicators .active {
  background: #fff;
}
.cid-svr8nCc9kU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-svr8nCc9kU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-svr8nCc9kU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svr8nCc9kU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-svr8nCc9kU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-svr8nCc9kU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-svr8nCc9kU .carousel {
  width: 100%;
}
.cid-svr8nCc9kU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-svr8nCc9kU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-svr8nCc9kU .modal.fade .modal-dialog,
.cid-svr8nCc9kU .modal.in .modal-dialog {
  transform: none;
}
.cid-svr8nCc9kU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-svr8nCc9kU H6 {
  text-align: center;
}
.cid-svr8o4WmAn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svr8o4WmAn .item {
  padding-bottom: 2rem;
}
.cid-svr8o4WmAn .item-wrapper {
  position: relative;
}
.cid-svr8o4WmAn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-svr8o4WmAn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-svr8o4WmAn .carousel-control,
.cid-svr8o4WmAn .close {
  background: #1b1b1b;
}
.cid-svr8o4WmAn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-svr8o4WmAn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-svr8o4WmAn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-svr8o4WmAn .carousel-control-next span {
  margin-left: 5px;
}
.cid-svr8o4WmAn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-svr8o4WmAn .close::before {
  content: '\e91a';
}
.cid-svr8o4WmAn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-svr8o4WmAn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-svr8o4WmAn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr8o4WmAn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-svr8o4WmAn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svr8o4WmAn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-svr8o4WmAn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-svr8o4WmAn .carousel-indicators li.active,
.cid-svr8o4WmAn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svr8o4WmAn .carousel-indicators li::after,
.cid-svr8o4WmAn .carousel-indicators li::before {
  content: none;
}
.cid-svr8o4WmAn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-svr8o4WmAn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-svr8o4WmAn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-svr8o4WmAn .carousel-indicators {
    display: none;
  }
}
.cid-svr8o4WmAn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-svr8o4WmAn .carousel-inner > .active {
  display: block;
}
.cid-svr8o4WmAn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svr8o4WmAn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svr8o4WmAn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-svr8o4WmAn .carousel-control,
  .cid-svr8o4WmAn .carousel-indicators,
  .cid-svr8o4WmAn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-svr8o4WmAn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-svr8o4WmAn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svr8o4WmAn .carousel-indicators .active,
.cid-svr8o4WmAn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-svr8o4WmAn .carousel-indicators .active {
  background: #fff;
}
.cid-svr8o4WmAn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-svr8o4WmAn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-svr8o4WmAn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-svr8o4WmAn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-svr8o4WmAn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-svr8o4WmAn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-svr8o4WmAn .carousel {
  width: 100%;
}
.cid-svr8o4WmAn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-svr8o4WmAn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-svr8o4WmAn .modal.fade .modal-dialog,
.cid-svr8o4WmAn .modal.in .modal-dialog {
  transform: none;
}
.cid-svr8o4WmAn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-svr8o4WmAn H6 {
  text-align: center;
}
.cid-svDekxeSXQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svDekxeSXQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svDekxeSXQ .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svDekxeSXQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svDekxeSXQ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svDekxeSXQ .mbr-section-title {
  color: #faaf2b;
}
.cid-svDekxeSXQ .link {
  color: #2a9b0c;
}
.cid-svDekxeSXQ .card-title {
  color: #2a9b0c;
}
.cid-svV0MnUMIF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svV0MnUMIF .line {
  background-color: #fa1a06;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svV0MnUMIF .mbr-text {
  color: #fa1a06;
}
.cid-svDf4XL5Wc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svDf4XL5Wc .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw172fq2gj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw172fq2gj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw172fq2gj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw172fq2gj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw172fq2gj .mbr-section-title {
  color: #4479d9;
}
.cid-sw172gDw5S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw172gDw5S .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw172gDw5S .mbr-text {
  text-align: left;
}
.cid-sw172icLfq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw172icLfq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw172icLfq .row {
  flex-direction: row-reverse;
}
.cid-sw172icLfq img {
  width: 100%;
}
.cid-sw172iEWjl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw172iEWjl .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw172iEWjl .row {
    flex-direction: column-reverse;
  }
  .cid-sw172iEWjl .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw172iEWjl .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw172iEWjl .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw172iEWjl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw172iEWjl .card-title {
  color: #000000;
}
.cid-sw172iEWjl .mbr-text,
.cid-sw172iEWjl .mbr-section-btn {
  color: #353535;
}
.cid-sw172j7nSm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw172j7nSm .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw172j7nSm .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw172jrYBt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw172jrYBt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw172jrYBt .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw172jrYBt .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw172jrYBt .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw172jrYBt .mbr-section-title {
  color: #4479d9;
}
.cid-sw172jrYBt .link {
  color: #000000;
}
.cid-sw172k1CJ6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw172k1CJ6 .mbr-section-title {
  color: #353535;
}
.cid-sw172k1CJ6 .mbr-text,
.cid-sw172k1CJ6 .link {
  color: #353535;
}
.cid-sw172kWMqY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw172kWMqY .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw0sV5Z9pn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0sV5Z9pn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0sV5Z9pn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0sV5Z9pn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw0sV5Z9pn .mbr-section-title {
  color: #4479d9;
}
.cid-sw0sV6MneD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0sV6MneD .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0sV6MneD .mbr-text {
  text-align: left;
}
.cid-sw0sV8kazl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw0sV8kazl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw0sV8kazl .row {
  flex-direction: row-reverse;
}
.cid-sw0sV8kazl img {
  width: 100%;
}
.cid-sw0sV8O2Sw {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0sV8O2Sw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw0sV8O2Sw .row {
    flex-direction: column-reverse;
  }
  .cid-sw0sV8O2Sw .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw0sV8O2Sw .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw0sV8O2Sw .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw0sV8O2Sw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw0sV8O2Sw .card-title {
  color: #000000;
}
.cid-sw0sV8O2Sw .mbr-text,
.cid-sw0sV8O2Sw .mbr-section-btn {
  color: #353535;
}
.cid-sw0sV9jGCD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw0sV9jGCD .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw0sV9jGCD .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw0sV9B6RC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0sV9B6RC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw0sV9B6RC .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw0sV9B6RC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw0sV9B6RC .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw0sV9B6RC .mbr-section-title {
  color: #4479d9;
}
.cid-sw0sV9B6RC .link {
  color: #000000;
}
.cid-sw0sVa9Z2P {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw0sVa9Z2P .mbr-section-title {
  color: #353535;
}
.cid-sw0sVa9Z2P .mbr-text,
.cid-sw0sVa9Z2P .link {
  color: #353535;
}
.cid-sw0sVaZrng {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw0sVaZrng .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw1b2EP7iB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1b2EP7iB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw1b2EP7iB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw1b2EP7iB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw1b2EP7iB .mbr-section-title {
  color: #4479d9;
}
.cid-sw1b2Firsi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1b2Firsi .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw1b2Firsi .mbr-text {
  text-align: left;
}
.cid-sw1b2GpS0v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw1b2GpS0v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw1b2GpS0v .row {
  flex-direction: row-reverse;
}
.cid-sw1b2GpS0v img {
  width: 100%;
}
.cid-sw1b2GQzGY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1b2GQzGY .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw1b2GQzGY .row {
    flex-direction: column-reverse;
  }
  .cid-sw1b2GQzGY .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw1b2GQzGY .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw1b2GQzGY .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw1b2GQzGY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw1b2GQzGY .card-title {
  color: #000000;
}
.cid-sw1b2GQzGY .mbr-text,
.cid-sw1b2GQzGY .mbr-section-btn {
  color: #353535;
}
.cid-sw1b2Hjmhf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1b2Hjmhf .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw1b2Hjmhf .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw1b2HDH7z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1b2HDH7z .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw1b2HDH7z .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw1b2HDH7z .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw1b2HDH7z .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw1b2HDH7z .mbr-section-title {
  color: #4479d9;
}
.cid-sw1b2HDH7z .link {
  color: #000000;
}
.cid-sw1b2IaJJa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1b2IaJJa .mbr-section-title {
  color: #353535;
}
.cid-sw1b2IaJJa .mbr-text,
.cid-sw1b2IaJJa .link {
  color: #353535;
}
.cid-sw1b2IUPmb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw1b2IUPmb .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sw1cCbzZSq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1cCbzZSq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw1cCbzZSq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw1cCbzZSq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sw1cCbzZSq .mbr-section-title {
  color: #4479d9;
}
.cid-sw1cCcEsA4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1cCcEsA4 .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw1cCcEsA4 .mbr-text {
  text-align: left;
}
.cid-sw1cCeiswm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sw1cCeiswm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sw1cCeiswm .row {
  flex-direction: row-reverse;
}
.cid-sw1cCeiswm img {
  width: 100%;
}
.cid-sw1cCeMQAp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1cCeMQAp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sw1cCeMQAp .row {
    flex-direction: column-reverse;
  }
  .cid-sw1cCeMQAp .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sw1cCeMQAp .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sw1cCeMQAp .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sw1cCeMQAp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sw1cCeMQAp .card-title {
  color: #000000;
}
.cid-sw1cCeMQAp .mbr-text,
.cid-sw1cCeMQAp .mbr-section-btn {
  color: #353535;
}
.cid-sw1cCfj5DS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sw1cCfj5DS .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sw1cCfj5DS .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-sw1cCfDbpc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1cCfDbpc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-sw1cCfDbpc .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-sw1cCfDbpc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sw1cCfDbpc .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-sw1cCfDbpc .mbr-section-title {
  color: #4479d9;
}
.cid-sw1cCfDbpc .link {
  color: #000000;
}
.cid-sw1cCgh1sg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sw1cCgh1sg .mbr-section-title {
  color: #353535;
}
.cid-sw1cCgh1sg .mbr-text,
.cid-sw1cCgh1sg .link {
  color: #353535;
}
.cid-sw1cChp69C {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-sw1cChp69C .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twCQ2RAfgW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQ2RAfgW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twCQ2RAfgW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-twCQ2RAfgW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-twCQ2RAfgW .mbr-section-title {
  color: #4479d9;
}
.cid-twCQ2S8jxh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQ2S8jxh .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQ2S8jxh .mbr-text {
  text-align: left;
}
.cid-twCQ2SlUwd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twCQ2SlUwd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twCQ2SlUwd .row {
  flex-direction: row-reverse;
}
.cid-twCQ2SlUwd img {
  width: 100%;
}
.cid-twCQ2SGJ6T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQ2SGJ6T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twCQ2SGJ6T .row {
    flex-direction: column-reverse;
  }
  .cid-twCQ2SGJ6T .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-twCQ2SGJ6T .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-twCQ2SGJ6T .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-twCQ2SGJ6T .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twCQ2SGJ6T .card-title {
  color: #000000;
}
.cid-twCQ2SGJ6T .mbr-text,
.cid-twCQ2SGJ6T .mbr-section-btn {
  color: #353535;
}
.cid-twCQ2SZkZO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQ2SZkZO .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQ2SZkZO .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-twCQ2TgsJg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQ2TgsJg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-twCQ2TgsJg .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-twCQ2TgsJg .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twCQ2TgsJg .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-twCQ2TgsJg .mbr-section-title {
  color: #4479d9;
}
.cid-twCQ2TgsJg .link {
  color: #000000;
}
.cid-twCQ2XL9OU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQ2XL9OU .mbr-section-title {
  color: #353535;
}
.cid-twCQ2XL9OU .mbr-text,
.cid-twCQ2XL9OU .link {
  color: #353535;
}
.cid-twCQ2YcXpc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-twCQ2YcXpc .media-container-row .mbr-text {
  color: #000000;
}
.cid-twCQ2YrVWo .navbar-dropdown {
  position: relative !important;
}
.cid-twCQ2YrVWo .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-twCQ2YrVWo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-twCQ2YrVWo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-twCQ2YrVWo .dropdown-item:hover,
.cid-twCQ2YrVWo .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-twCQ2YrVWo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-twCQ2YrVWo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-twCQ2YrVWo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-twCQ2YrVWo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twCQ2YrVWo .nav-link {
  position: relative;
}
.cid-twCQ2YrVWo .container {
  display: flex;
  margin: auto;
}
.cid-twCQ2YrVWo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twCQ2YrVWo .dropdown-menu,
.cid-twCQ2YrVWo .navbar.opened {
  background: #47b5ed !important;
}
.cid-twCQ2YrVWo .nav-item:focus,
.cid-twCQ2YrVWo .nav-link:focus {
  outline: none;
}
.cid-twCQ2YrVWo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twCQ2YrVWo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twCQ2YrVWo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twCQ2YrVWo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twCQ2YrVWo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twCQ2YrVWo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twCQ2YrVWo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-twCQ2YrVWo .navbar.opened {
  transition: all 0.3s;
}
.cid-twCQ2YrVWo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twCQ2YrVWo .navbar .navbar-logo img {
  width: auto;
}
.cid-twCQ2YrVWo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twCQ2YrVWo .navbar.collapsed {
  justify-content: center;
}
.cid-twCQ2YrVWo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twCQ2YrVWo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twCQ2YrVWo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twCQ2YrVWo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twCQ2YrVWo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-twCQ2YrVWo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twCQ2YrVWo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twCQ2YrVWo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twCQ2YrVWo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twCQ2YrVWo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twCQ2YrVWo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twCQ2YrVWo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twCQ2YrVWo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-twCQ2YrVWo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twCQ2YrVWo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twCQ2YrVWo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twCQ2YrVWo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twCQ2YrVWo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twCQ2YrVWo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twCQ2YrVWo .navbar.navbar-short {
  min-height: 60px;
}
.cid-twCQ2YrVWo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-twCQ2YrVWo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-twCQ2YrVWo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twCQ2YrVWo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twCQ2YrVWo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twCQ2YrVWo .dropdown-item.active,
.cid-twCQ2YrVWo .dropdown-item:active {
  background-color: transparent;
}
.cid-twCQ2YrVWo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twCQ2YrVWo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twCQ2YrVWo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twCQ2YrVWo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-twCQ2YrVWo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twCQ2YrVWo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twCQ2YrVWo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-twCQ2YrVWo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twCQ2YrVWo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-twCQ2YrVWo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-twCQ2YrVWo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twCQ2YrVWo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQ2YrVWo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQ2YrVWo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twCQ2YrVWo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQ2YrVWo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twCQ2YrVWo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twCQ2YrVWo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQ2YrVWo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twCQ2YrVWo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twCQ2YrVWo .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-twCQ2YrVWo .navbar {
    height: 70px;
  }
  .cid-twCQ2YrVWo .navbar.opened {
    height: auto;
  }
  .cid-twCQ2YrVWo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twCQsvynwm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-twCQsvynwm .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-twCQsvynwm .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-twCQsvynwm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-twCQsvynwm .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-twCQsvynwm .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-twCQsvynwm .mbr-text,
.cid-twCQsvynwm .mbr-section-btn {
  color: #000000;
}
.cid-twCQsvynwm .mbr-section-title {
  color: #4479d9;
}
.cid-twCQsvRXIX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQsw9pM8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQsw9pM8 .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQsw9pM8 .mbr-text {
  text-align: left;
}
.cid-twCQswpuFU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQswpuFU .mbr-section-title {
  color: #000000;
}
.cid-twCQswpuFU .mbr-text,
.cid-twCQswpuFU .link {
  color: #353535;
}
.cid-twCQswODH8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twCQswODH8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twCQswODH8 .row {
  flex-direction: row-reverse;
}
.cid-twCQswODH8 img {
  width: 100%;
}
.cid-twCQsx6UYC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQsx6UYC .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQsx6UYC .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-twCQsxmNJJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQsxmNJJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-twCQsxmNJJ .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-twCQsxmNJJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twCQsxmNJJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-twCQsxmNJJ .mbr-section-title {
  color: #4479d9;
}
.cid-twCQsxmNJJ .link {
  color: #000000;
}
.cid-twCQsxHR76 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQsxHR76 .mbr-text,
.cid-twCQsxHR76 .link {
  color: #353535;
}
.cid-twCQsy9Spm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-twCQsy9Spm .media-container-row .mbr-text {
  color: #000000;
}
.cid-twCQsyqrJz .navbar-dropdown {
  position: relative !important;
}
.cid-twCQsyqrJz .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-twCQsyqrJz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-twCQsyqrJz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-twCQsyqrJz .dropdown-item:hover,
.cid-twCQsyqrJz .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-twCQsyqrJz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-twCQsyqrJz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-twCQsyqrJz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-twCQsyqrJz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twCQsyqrJz .nav-link {
  position: relative;
}
.cid-twCQsyqrJz .container {
  display: flex;
  margin: auto;
}
.cid-twCQsyqrJz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twCQsyqrJz .dropdown-menu,
.cid-twCQsyqrJz .navbar.opened {
  background: #47b5ed !important;
}
.cid-twCQsyqrJz .nav-item:focus,
.cid-twCQsyqrJz .nav-link:focus {
  outline: none;
}
.cid-twCQsyqrJz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twCQsyqrJz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twCQsyqrJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twCQsyqrJz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twCQsyqrJz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twCQsyqrJz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twCQsyqrJz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-twCQsyqrJz .navbar.opened {
  transition: all 0.3s;
}
.cid-twCQsyqrJz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twCQsyqrJz .navbar .navbar-logo img {
  width: auto;
}
.cid-twCQsyqrJz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twCQsyqrJz .navbar.collapsed {
  justify-content: center;
}
.cid-twCQsyqrJz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twCQsyqrJz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twCQsyqrJz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twCQsyqrJz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twCQsyqrJz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-twCQsyqrJz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twCQsyqrJz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twCQsyqrJz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twCQsyqrJz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twCQsyqrJz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twCQsyqrJz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twCQsyqrJz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twCQsyqrJz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-twCQsyqrJz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twCQsyqrJz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twCQsyqrJz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twCQsyqrJz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twCQsyqrJz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twCQsyqrJz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twCQsyqrJz .navbar.navbar-short {
  min-height: 60px;
}
.cid-twCQsyqrJz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-twCQsyqrJz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-twCQsyqrJz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twCQsyqrJz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twCQsyqrJz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twCQsyqrJz .dropdown-item.active,
.cid-twCQsyqrJz .dropdown-item:active {
  background-color: transparent;
}
.cid-twCQsyqrJz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twCQsyqrJz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twCQsyqrJz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twCQsyqrJz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-twCQsyqrJz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twCQsyqrJz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twCQsyqrJz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-twCQsyqrJz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twCQsyqrJz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-twCQsyqrJz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-twCQsyqrJz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twCQsyqrJz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQsyqrJz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQsyqrJz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twCQsyqrJz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQsyqrJz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twCQsyqrJz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twCQsyqrJz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQsyqrJz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twCQsyqrJz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twCQsyqrJz .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-twCQsyqrJz .navbar {
    height: 70px;
  }
  .cid-twCQsyqrJz .navbar.opened {
    height: auto;
  }
  .cid-twCQsyqrJz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twCQxeDlMF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-twCQxeDlMF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-twCQxeDlMF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-twCQxeDlMF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-twCQxeDlMF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-twCQxeDlMF .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-twCQxeDlMF .mbr-text,
.cid-twCQxeDlMF .mbr-section-btn {
  color: #000000;
}
.cid-twCQxeDlMF .mbr-section-title {
  color: #4479d9;
}
.cid-twCQxf18Yk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQxff3bg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQxff3bg .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQxff3bg .mbr-text {
  text-align: left;
}
.cid-twCQxfujSs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQxfujSs .mbr-section-title {
  color: #000000;
}
.cid-twCQxfujSs .mbr-text,
.cid-twCQxfujSs .link {
  color: #353535;
}
.cid-twCQxhoOav {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twCQxhoOav .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twCQxhoOav .row {
  flex-direction: row-reverse;
}
.cid-twCQxhoOav img {
  width: 100%;
}
.cid-twCQxnE3Pd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twCQxnE3Pd .line {
  background-color: #faaf2b;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-twCQxnE3Pd .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-twCQxzz31M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQxzz31M .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-twCQxzz31M .card-wrapper {
  padding: 3rem;
  background: #bed3f9;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-twCQxzz31M .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twCQxzz31M .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-twCQxzz31M .mbr-section-title {
  color: #4479d9;
}
.cid-twCQxzz31M .link {
  color: #000000;
}
.cid-twCQxDWEBN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twCQxDWEBN .mbr-text,
.cid-twCQxDWEBN .link {
  color: #353535;
}
.cid-twCQxGvORw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-twCQxGvORw .media-container-row .mbr-text {
  color: #000000;
}
.cid-twCQxGSIsQ .navbar-dropdown {
  position: relative !important;
}
.cid-twCQxGSIsQ .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-twCQxGSIsQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-twCQxGSIsQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-twCQxGSIsQ .dropdown-item:hover,
.cid-twCQxGSIsQ .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-twCQxGSIsQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-twCQxGSIsQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-twCQxGSIsQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-twCQxGSIsQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twCQxGSIsQ .nav-link {
  position: relative;
}
.cid-twCQxGSIsQ .container {
  display: flex;
  margin: auto;
}
.cid-twCQxGSIsQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-twCQxGSIsQ .dropdown-menu,
.cid-twCQxGSIsQ .navbar.opened {
  background: #47b5ed !important;
}
.cid-twCQxGSIsQ .nav-item:focus,
.cid-twCQxGSIsQ .nav-link:focus {
  outline: none;
}
.cid-twCQxGSIsQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twCQxGSIsQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twCQxGSIsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-twCQxGSIsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-twCQxGSIsQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twCQxGSIsQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twCQxGSIsQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-twCQxGSIsQ .navbar.opened {
  transition: all 0.3s;
}
.cid-twCQxGSIsQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twCQxGSIsQ .navbar .navbar-logo img {
  width: auto;
}
.cid-twCQxGSIsQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twCQxGSIsQ .navbar.collapsed {
  justify-content: center;
}
.cid-twCQxGSIsQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twCQxGSIsQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-twCQxGSIsQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twCQxGSIsQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twCQxGSIsQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-twCQxGSIsQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twCQxGSIsQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-twCQxGSIsQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-twCQxGSIsQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twCQxGSIsQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twCQxGSIsQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twCQxGSIsQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twCQxGSIsQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-twCQxGSIsQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twCQxGSIsQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-twCQxGSIsQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twCQxGSIsQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twCQxGSIsQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-twCQxGSIsQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-twCQxGSIsQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-twCQxGSIsQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-twCQxGSIsQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-twCQxGSIsQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-twCQxGSIsQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twCQxGSIsQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twCQxGSIsQ .dropdown-item.active,
.cid-twCQxGSIsQ .dropdown-item:active {
  background-color: transparent;
}
.cid-twCQxGSIsQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twCQxGSIsQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twCQxGSIsQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twCQxGSIsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-twCQxGSIsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twCQxGSIsQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twCQxGSIsQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-twCQxGSIsQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-twCQxGSIsQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-twCQxGSIsQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-twCQxGSIsQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twCQxGSIsQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQxGSIsQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twCQxGSIsQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twCQxGSIsQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQxGSIsQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twCQxGSIsQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twCQxGSIsQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twCQxGSIsQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-twCQxGSIsQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twCQxGSIsQ .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-twCQxGSIsQ .navbar {
    height: 70px;
  }
  .cid-twCQxGSIsQ .navbar.opened {
    height: auto;
  }
  .cid-twCQxGSIsQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twPtpz9F1c {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twPtpz9F1c .mbr-fallback-image.disabled {
  display: none;
}
.cid-twPtpz9F1c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twPtpz9F1c .mbr-section-subtitle {
  color: #4479d9;
}
.cid-svDmYPg7RG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svDmYPg7RG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #2a9b0c;
  margin-bottom: 2rem;
}
.cid-svDmYPg7RG .card-wrapper {
  padding: 3rem;
  background: #47b5ed;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-svDmYPg7RG .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-svDmYPg7RG .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-svV0oCAYrz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svV0oCAYrz .line {
  background-color: #fa1a06;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-svV0oCAYrz .mbr-text {
  color: #fa1a06;
}
.cid-svDmYQ1dht {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #47b5ed;
}
.cid-svDmYQ1dht .media-container-row .mbr-text {
  color: #000000;
}
.cid-swmKsIYttk .navbar-dropdown {
  position: relative !important;
}
.cid-swmKsIYttk .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-swmKsIYttk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-swmKsIYttk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-swmKsIYttk .dropdown-item:hover,
.cid-swmKsIYttk .dropdown-item:focus {
  background: #2a9b0c !important;
  color: white !important;
}
.cid-swmKsIYttk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-swmKsIYttk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-swmKsIYttk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-swmKsIYttk .nav-link {
  position: relative;
}
.cid-swmKsIYttk .container {
  display: flex;
  margin: auto;
}
.cid-swmKsIYttk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-swmKsIYttk .dropdown-menu,
.cid-swmKsIYttk .navbar.opened {
  background: #47b5ed !important;
}
.cid-swmKsIYttk .nav-item:focus,
.cid-swmKsIYttk .nav-link:focus {
  outline: none;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-swmKsIYttk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-swmKsIYttk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swmKsIYttk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swmKsIYttk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.opened {
  transition: all 0.3s;
}
.cid-swmKsIYttk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-swmKsIYttk .navbar .navbar-logo img {
  width: auto;
}
.cid-swmKsIYttk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-swmKsIYttk .navbar.collapsed {
  justify-content: center;
}
.cid-swmKsIYttk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swmKsIYttk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-swmKsIYttk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swmKsIYttk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-swmKsIYttk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-swmKsIYttk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swmKsIYttk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-swmKsIYttk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-swmKsIYttk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swmKsIYttk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swmKsIYttk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-swmKsIYttk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-swmKsIYttk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-swmKsIYttk .navbar.navbar-short {
  min-height: 60px;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-swmKsIYttk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-swmKsIYttk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swmKsIYttk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swmKsIYttk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swmKsIYttk .dropdown-item.active,
.cid-swmKsIYttk .dropdown-item:active {
  background-color: transparent;
}
.cid-swmKsIYttk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swmKsIYttk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-swmKsIYttk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swmKsIYttk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-swmKsIYttk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-swmKsIYttk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-swmKsIYttk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #053081;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-swmKsIYttk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-swmKsIYttk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-swmKsIYttk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-swmKsIYttk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-swmKsIYttk .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-swmKsIYttk .navbar {
    height: 70px;
  }
  .cid-swmKsIYttk .navbar.opened {
    height: auto;
  }
  .cid-swmKsIYttk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
