body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.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: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.595rem + (2.7 - 1.595) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #22a5e5 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #22a5e5 !important;
  border-color: #22a5e5 !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: #13709e !important;
  border-color: #13709e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #22a5e5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #13709e !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: #22a5e5 !important;
  border-color: #22a5e5 !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: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #22a5e5 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !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: #116690 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #22a5e5;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9effa;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !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: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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='%236592e6' %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-sMVNtk09cV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVNtk09cV nav.navbar {
  position: fixed;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVNtk09cV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVNtk09cV .dropdown-item:hover,
.cid-sMVNtk09cV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sMVNtk09cV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVNtk09cV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVNtk09cV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVNtk09cV .nav-link {
  position: relative;
}
.cid-sMVNtk09cV .container {
  display: flex;
  margin: auto;
}
.cid-sMVNtk09cV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown-menu,
.cid-sMVNtk09cV .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sMVNtk09cV .nav-item:focus,
.cid-sMVNtk09cV .nav-link:focus {
  outline: none;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVNtk09cV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVNtk09cV .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: #bed3f9;
}
.cid-sMVNtk09cV .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVNtk09cV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVNtk09cV .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVNtk09cV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVNtk09cV .navbar.collapsed {
  justify-content: center;
}
.cid-sMVNtk09cV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVNtk09cV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMVNtk09cV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVNtk09cV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVNtk09cV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVNtk09cV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVNtk09cV .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-sMVNtk09cV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVNtk09cV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVNtk09cV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVNtk09cV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVNtk09cV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVNtk09cV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVNtk09cV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVNtk09cV .dropdown-item.active,
.cid-sMVNtk09cV .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVNtk09cV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVNtk09cV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVNtk09cV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVNtk09cV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVNtk09cV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVNtk09cV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar {
    height: 70px;
  }
  .cid-sMVNtk09cV .navbar.opened {
    height: auto;
  }
  .cid-sMVNtk09cV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNTr6KcoLd {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sNTr6KcoLd .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sNTr6KcoLd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTr6KcoLd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sNTr6KcoLd .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sNTr6KcoLd .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTr6KcoLd .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sNTr6KcoLd .mbr-text,
.cid-sNTr6KcoLd .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sNMyDiYrSm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sNMyDiYrSm .mbr-section-subtitle {
  color: #353535;
}
.cid-sNMETiT3F6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNMETiT3F6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sNMETiT3F6 .row {
  flex-direction: row-reverse;
}
.cid-sNMETiT3F6 img {
  width: 100%;
}
.cid-sO557C8fa6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sO557C8fa6 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sO557C8fa6 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sO557C8fa6 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sO557C8fa6 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sO557C8fa6 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sO557C8fa6 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sO557C8fa6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sO557C8fa6 .card-title {
  color: #326dd8;
}
.cid-sO557C8fa6 .mbr-text,
.cid-sO557C8fa6 .mbr-section-btn {
  color: #353535;
}
.cid-sO54o4PZCO {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sO54o4PZCO .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sO54o4PZCO .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sO54o4PZCO .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sO54o4PZCO .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sO54o4PZCO .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sO54o4PZCO .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sO54o4PZCO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sO54o4PZCO .card-title {
  color: #326dd8;
}
.cid-sO54o4PZCO .mbr-text,
.cid-sO54o4PZCO .mbr-section-btn {
  color: #353535;
}
.cid-sMWWwwMaW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sMWWwwMaW2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sMWWwwMaW2 .row {
    text-align: center;
  }
  .cid-sMWWwwMaW2 .row > div {
    margin: auto;
  }
  .cid-sMWWwwMaW2 .social-row {
    justify-content: center;
  }
}
.cid-sMWWwwMaW2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sMWWwwMaW2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 0rem;
  }
}
.cid-sMWWwwMaW2 .mbr-text {
  color: #326dd8;
}
.cid-sMWWwwMaW2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sMWWwwMaW2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMWWwwMaW2 H5 {
  color: #326dd8;
}
.cid-sMVNtk09cV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVNtk09cV nav.navbar {
  position: fixed;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVNtk09cV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVNtk09cV .dropdown-item:hover,
.cid-sMVNtk09cV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sMVNtk09cV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVNtk09cV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVNtk09cV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVNtk09cV .nav-link {
  position: relative;
}
.cid-sMVNtk09cV .container {
  display: flex;
  margin: auto;
}
.cid-sMVNtk09cV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown-menu,
.cid-sMVNtk09cV .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sMVNtk09cV .nav-item:focus,
.cid-sMVNtk09cV .nav-link:focus {
  outline: none;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVNtk09cV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVNtk09cV .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: #bed3f9;
}
.cid-sMVNtk09cV .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVNtk09cV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVNtk09cV .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVNtk09cV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVNtk09cV .navbar.collapsed {
  justify-content: center;
}
.cid-sMVNtk09cV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVNtk09cV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMVNtk09cV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVNtk09cV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVNtk09cV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVNtk09cV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVNtk09cV .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-sMVNtk09cV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVNtk09cV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVNtk09cV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVNtk09cV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVNtk09cV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVNtk09cV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVNtk09cV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVNtk09cV .dropdown-item.active,
.cid-sMVNtk09cV .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVNtk09cV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVNtk09cV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVNtk09cV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVNtk09cV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVNtk09cV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVNtk09cV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar {
    height: 70px;
  }
  .cid-sMVNtk09cV .navbar.opened {
    height: auto;
  }
  .cid-sMVNtk09cV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNTulBITxI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sNTulBITxI .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sNTulBITxI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTulBITxI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sNTulBITxI .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sNTulBITxI .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTulBITxI .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sNTulBITxI .mbr-text,
.cid-sNTulBITxI .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sMVUwpHRtQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sMVUwpHRtQ .mbr-section-subtitle {
  color: #353535;
}
.cid-sNMFuzivpb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNMFuzivpb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sNMFuzivpb .row {
  flex-direction: row-reverse;
}
.cid-sNMFuzivpb img {
  width: 100%;
}
.cid-sO9MoTbPRR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sO9MoTbPRR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sO9MoTbPRR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sO9MoTbPRR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sO9MoTbPRR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sO9MoTbPRR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sO9MoTbPRR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sO9MoTbPRR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sO9MoTbPRR .card-title {
  color: #326dd8;
}
.cid-sO9NxsLQNE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sO9NxsLQNE .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sO9NxsLQNE .mbr-text {
  color: #326dd8;
}
.cid-sOOKVpkWeD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sOOKVpkWeD .mbr-text {
  text-align: center;
  color: #353535;
}
.cid-sPMQsuHngn {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPMQsuHngn .carousel-item {
  justify-content: center;
}
.cid-sPMQsuHngn .carousel-item.active,
.cid-sPMQsuHngn .carousel-item-next,
.cid-sPMQsuHngn .carousel-item-prev {
  display: flex;
}
.cid-sPMQsuHngn .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sPMQsuHngn .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sPMQsuHngn .carousel-control-next span {
  padding-left: 5px;
}
.cid-sPMQsuHngn .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sPMQsuHngn .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sPMQsuHngn .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sPMQsuHngn .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sPMQsuHngn .user_text {
  color: #353535;
}
.cid-sPMQsuHngn H3 {
  color: #326dd8;
}
.cid-sMWWwwMaW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sMWWwwMaW2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sMWWwwMaW2 .row {
    text-align: center;
  }
  .cid-sMWWwwMaW2 .row > div {
    margin: auto;
  }
  .cid-sMWWwwMaW2 .social-row {
    justify-content: center;
  }
}
.cid-sMWWwwMaW2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sMWWwwMaW2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 0rem;
  }
}
.cid-sMWWwwMaW2 .mbr-text {
  color: #326dd8;
}
.cid-sMWWwwMaW2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sMWWwwMaW2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMWWwwMaW2 H5 {
  color: #326dd8;
}
.cid-sMVR90GMhE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVR90GMhE nav.navbar {
  position: fixed;
}
.cid-sMVR90GMhE .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-sMVR90GMhE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVR90GMhE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVR90GMhE .dropdown-item:hover,
.cid-sMVR90GMhE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sMVR90GMhE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVR90GMhE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVR90GMhE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVR90GMhE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVR90GMhE .nav-link {
  position: relative;
}
.cid-sMVR90GMhE .container {
  display: flex;
  margin: auto;
}
.cid-sMVR90GMhE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVR90GMhE .dropdown-menu,
.cid-sMVR90GMhE .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sMVR90GMhE .nav-item:focus,
.cid-sMVR90GMhE .nav-link:focus {
  outline: none;
}
.cid-sMVR90GMhE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVR90GMhE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVR90GMhE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVR90GMhE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVR90GMhE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVR90GMhE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVR90GMhE .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: #bed3f9;
}
.cid-sMVR90GMhE .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVR90GMhE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVR90GMhE .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVR90GMhE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVR90GMhE .navbar.collapsed {
  justify-content: center;
}
.cid-sMVR90GMhE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVR90GMhE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMVR90GMhE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sMVR90GMhE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVR90GMhE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVR90GMhE .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-sMVR90GMhE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVR90GMhE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVR90GMhE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVR90GMhE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVR90GMhE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVR90GMhE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVR90GMhE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVR90GMhE .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-sMVR90GMhE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVR90GMhE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVR90GMhE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVR90GMhE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVR90GMhE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVR90GMhE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVR90GMhE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVR90GMhE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVR90GMhE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVR90GMhE .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-sMVR90GMhE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVR90GMhE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVR90GMhE .dropdown-item.active,
.cid-sMVR90GMhE .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVR90GMhE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVR90GMhE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVR90GMhE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVR90GMhE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sMVR90GMhE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVR90GMhE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVR90GMhE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVR90GMhE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVR90GMhE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVR90GMhE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sMVR90GMhE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVR90GMhE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVR90GMhE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVR90GMhE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVR90GMhE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVR90GMhE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVR90GMhE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVR90GMhE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVR90GMhE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVR90GMhE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVR90GMhE .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-sMVR90GMhE .navbar {
    height: 70px;
  }
  .cid-sMVR90GMhE .navbar.opened {
    height: auto;
  }
  .cid-sMVR90GMhE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNTui4Fi2C {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sNTui4Fi2C .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sNTui4Fi2C .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTui4Fi2C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sNTui4Fi2C .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sNTui4Fi2C .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sNTui4Fi2C .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sNTui4Fi2C .mbr-text,
.cid-sNTui4Fi2C .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sPoPnbcwSl {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sPoPnbcwSl .mbr-text {
  text-align: center;
  color: #353535;
}
.cid-sNMFqfBWXw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNMFqfBWXw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sNMFqfBWXw .row {
  flex-direction: row-reverse;
}
.cid-sNMFqfBWXw img {
  width: 100%;
}
.cid-sP17NOT8s9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sP17NOT8s9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sP17NOT8s9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sP17NOT8s9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sP17NOT8s9 .mbr-section-title {
  color: #326dd8;
}
.cid-sP17NOT8s9 .mbr-text {
  color: #353535;
}
.cid-sO5xJmiktK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sO5xJmiktK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sO5xJmiktK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sO5xJmiktK .text-wrapper {
    padding: 2rem;
  }
}
.cid-sO5xJmiktK .mbr-section-title {
  color: #326dd8;
}
.cid-sO5AsGx11q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sO5AsGx11q .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sO5AsGx11q .mbr-text {
  color: #326dd8;
}
.cid-sMXrnhBr9d {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sMXrnhBr9d .carousel-item {
  justify-content: center;
}
.cid-sMXrnhBr9d .carousel-item.active,
.cid-sMXrnhBr9d .carousel-item-next,
.cid-sMXrnhBr9d .carousel-item-prev {
  display: flex;
}
.cid-sMXrnhBr9d .carousel-controls a {
  transition: opacity .5s;
  font-size: 30px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #155ce0;
}
.cid-sMXrnhBr9d .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sMXrnhBr9d .carousel-control-next span {
  padding-left: 5px;
}
.cid-sMXrnhBr9d .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sMXrnhBr9d .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sMXrnhBr9d .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sMXrnhBr9d .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sMXrnhBr9d H3 {
  color: #326dd8;
}
.cid-sMXrnhBr9d .user_text {
  color: #353535;
}
.cid-sMWWwwMaW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sMWWwwMaW2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sMWWwwMaW2 .row {
    text-align: center;
  }
  .cid-sMWWwwMaW2 .row > div {
    margin: auto;
  }
  .cid-sMWWwwMaW2 .social-row {
    justify-content: center;
  }
}
.cid-sMWWwwMaW2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sMWWwwMaW2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 0rem;
  }
}
.cid-sMWWwwMaW2 .mbr-text {
  color: #326dd8;
}
.cid-sMWWwwMaW2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sMWWwwMaW2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMWWwwMaW2 H5 {
  color: #326dd8;
}
.cid-sMVNtk09cV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVNtk09cV nav.navbar {
  position: fixed;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVNtk09cV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVNtk09cV .dropdown-item:hover,
.cid-sMVNtk09cV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sMVNtk09cV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVNtk09cV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVNtk09cV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVNtk09cV .nav-link {
  position: relative;
}
.cid-sMVNtk09cV .container {
  display: flex;
  margin: auto;
}
.cid-sMVNtk09cV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown-menu,
.cid-sMVNtk09cV .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sMVNtk09cV .nav-item:focus,
.cid-sMVNtk09cV .nav-link:focus {
  outline: none;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVNtk09cV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVNtk09cV .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: #bed3f9;
}
.cid-sMVNtk09cV .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVNtk09cV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVNtk09cV .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVNtk09cV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVNtk09cV .navbar.collapsed {
  justify-content: center;
}
.cid-sMVNtk09cV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVNtk09cV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMVNtk09cV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVNtk09cV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVNtk09cV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVNtk09cV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVNtk09cV .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-sMVNtk09cV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVNtk09cV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVNtk09cV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVNtk09cV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVNtk09cV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVNtk09cV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVNtk09cV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVNtk09cV .dropdown-item.active,
.cid-sMVNtk09cV .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVNtk09cV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVNtk09cV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVNtk09cV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVNtk09cV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVNtk09cV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVNtk09cV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar {
    height: 70px;
  }
  .cid-sMVNtk09cV .navbar.opened {
    height: auto;
  }
  .cid-sMVNtk09cV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sO4PHOvF6X {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sO4PHOvF6X .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sO4PHOvF6X .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sO4PHOvF6X .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sO4PHOvF6X .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sO4PHOvF6X .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sO4PHOvF6X .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sO4PHOvF6X .mbr-text,
.cid-sO4PHOvF6X .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sNdbc9v5Jy {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sNdbc9v5Jy .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sNdbc9v5Jy .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sNdbc9v5Jy .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sNdbc9v5Jy .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sNdbc9v5Jy .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-sNdbc9v5Jy .card-title {
  color: #326dd8;
}
.cid-sNdbc9v5Jy P {
  color: #6592e6;
}
.cid-sNdbc9v5Jy .mbr-section-title {
  color: #326dd8;
}
.cid-sNdbc9v5Jy .mbr-section-subtitle {
  color: #326dd8;
}
.cid-sNMFAUXTIi {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNMFAUXTIi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sNMFAUXTIi .row {
  flex-direction: row-reverse;
}
.cid-sNMFAUXTIi img {
  width: 100%;
}
.cid-sOafdB83cl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOafdB83cl .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOafdB83cl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOafdB83cl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOafdB83cl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOafdB83cl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOafdB83cl .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOafdB83cl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOafdB83cl .card-title {
  color: #326dd8;
  text-align: center;
}
.cid-sMWWwwMaW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sMWWwwMaW2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sMWWwwMaW2 .row {
    text-align: center;
  }
  .cid-sMWWwwMaW2 .row > div {
    margin: auto;
  }
  .cid-sMWWwwMaW2 .social-row {
    justify-content: center;
  }
}
.cid-sMWWwwMaW2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sMWWwwMaW2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 0rem;
  }
}
.cid-sMWWwwMaW2 .mbr-text {
  color: #326dd8;
}
.cid-sMWWwwMaW2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sMWWwwMaW2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMWWwwMaW2 H5 {
  color: #326dd8;
}
.cid-sMVNtk09cV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMVNtk09cV nav.navbar {
  position: fixed;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sMVNtk09cV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sMVNtk09cV .dropdown-item:hover,
.cid-sMVNtk09cV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sMVNtk09cV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sMVNtk09cV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sMVNtk09cV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMVNtk09cV .nav-link {
  position: relative;
}
.cid-sMVNtk09cV .container {
  display: flex;
  margin: auto;
}
.cid-sMVNtk09cV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown-menu,
.cid-sMVNtk09cV .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sMVNtk09cV .nav-item:focus,
.cid-sMVNtk09cV .nav-link:focus {
  outline: none;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMVNtk09cV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMVNtk09cV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMVNtk09cV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMVNtk09cV .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: #bed3f9;
}
.cid-sMVNtk09cV .navbar.opened {
  transition: all 0.3s;
}
.cid-sMVNtk09cV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMVNtk09cV .navbar .navbar-logo img {
  width: auto;
}
.cid-sMVNtk09cV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMVNtk09cV .navbar.collapsed {
  justify-content: center;
}
.cid-sMVNtk09cV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMVNtk09cV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMVNtk09cV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMVNtk09cV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMVNtk09cV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMVNtk09cV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMVNtk09cV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMVNtk09cV .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-sMVNtk09cV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMVNtk09cV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMVNtk09cV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMVNtk09cV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMVNtk09cV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMVNtk09cV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMVNtk09cV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMVNtk09cV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMVNtk09cV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMVNtk09cV .dropdown-item.active,
.cid-sMVNtk09cV .dropdown-item:active {
  background-color: transparent;
}
.cid-sMVNtk09cV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMVNtk09cV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sMVNtk09cV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMVNtk09cV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMVNtk09cV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMVNtk09cV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMVNtk09cV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMVNtk09cV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMVNtk09cV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMVNtk09cV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMVNtk09cV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMVNtk09cV .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-sMVNtk09cV .navbar {
    height: 70px;
  }
  .cid-sMVNtk09cV .navbar.opened {
    height: auto;
  }
  .cid-sMVNtk09cV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOE7SZ0Edx {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOE7SZ0Edx .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOE7SZ0Edx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOE7SZ0Edx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOE7SZ0Edx .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOE7SZ0Edx .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOE7SZ0Edx .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOE7SZ0Edx .mbr-text,
.cid-sOE7SZ0Edx .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOyCDgZCmO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyCDgZCmO .mbr-section-subtitle {
  color: #326dd8;
}
.cid-sOyCDgZCmO .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sOs4USWRWi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOs4USWRWi img,
.cid-sOs4USWRWi .item-img {
  width: 100%;
}
.cid-sOs4USWRWi .item:focus,
.cid-sOs4USWRWi span:focus {
  outline: none;
}
.cid-sOs4USWRWi .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-sOs4USWRWi .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOs4USWRWi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sOs4USWRWi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOs4USWRWi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sOs4USWRWi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sOs4USWRWi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOs4USWRWi .mbr-section-title {
  color: #ffffff;
}
.cid-sOs4USWRWi .mbr-text,
.cid-sOs4USWRWi .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sOs4USWRWi .item-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOs4USWRWi .item-subtitle {
  text-align: left;
}
.cid-sOKqLtHZqU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sOKqLtHZqU img,
.cid-sOKqLtHZqU .item-img {
  width: 100%;
}
.cid-sOKqLtHZqU .item:focus,
.cid-sOKqLtHZqU span:focus {
  outline: none;
}
.cid-sOKqLtHZqU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOKqLtHZqU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOKqLtHZqU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sOKqLtHZqU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOKqLtHZqU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sOKqLtHZqU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sOKqLtHZqU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOKqLtHZqU .mbr-section-title {
  color: #232323;
}
.cid-sOKqLtHZqU .mbr-text,
.cid-sOKqLtHZqU .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sOKqLtHZqU .item-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOKqLtHZqU .item-subtitle {
  text-align: center;
}
.cid-sOyYjeMCCo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sOyYjeMCCo img,
.cid-sOyYjeMCCo .item-img {
  width: 100%;
}
.cid-sOyYjeMCCo .item:focus,
.cid-sOyYjeMCCo span:focus {
  outline: none;
}
.cid-sOyYjeMCCo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOyYjeMCCo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOyYjeMCCo .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sOyYjeMCCo .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOyYjeMCCo .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sOyYjeMCCo .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sOyYjeMCCo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOyYjeMCCo .mbr-section-title {
  color: #232323;
}
.cid-sOyYjeMCCo .mbr-text,
.cid-sOyYjeMCCo .mbr-section-btn {
  text-align: left;
}
.cid-sOyYjeMCCo .item-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOyYjeMCCo .item-subtitle {
  text-align: center;
}
.cid-sOyYjeMCCo .item-title DIV {
  text-align: center;
}
.cid-sNMDVF3Nkt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sNMDVF3Nkt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sNMDVF3Nkt .row {
  flex-direction: row-reverse;
}
.cid-sNMDVF3Nkt img {
  width: 100%;
}
.cid-sMWWwwMaW2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sMWWwwMaW2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sMWWwwMaW2 .row {
    text-align: center;
  }
  .cid-sMWWwwMaW2 .row > div {
    margin: auto;
  }
  .cid-sMWWwwMaW2 .social-row {
    justify-content: center;
  }
}
.cid-sMWWwwMaW2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sMWWwwMaW2 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sMWWwwMaW2 .list {
    margin-bottom: 0rem;
  }
}
.cid-sMWWwwMaW2 .mbr-text {
  color: #326dd8;
}
.cid-sMWWwwMaW2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sMWWwwMaW2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sMWWwwMaW2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sMWWwwMaW2 H5 {
  color: #326dd8;
}
.cid-sOfDqQWRY5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOfDqQWRY5 nav.navbar {
  position: fixed;
}
.cid-sOfDqQWRY5 .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-sOfDqQWRY5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOfDqQWRY5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOfDqQWRY5 .dropdown-item:hover,
.cid-sOfDqQWRY5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOfDqQWRY5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOfDqQWRY5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOfDqQWRY5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOfDqQWRY5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOfDqQWRY5 .nav-link {
  position: relative;
}
.cid-sOfDqQWRY5 .container {
  display: flex;
  margin: auto;
}
.cid-sOfDqQWRY5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOfDqQWRY5 .dropdown-menu,
.cid-sOfDqQWRY5 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOfDqQWRY5 .nav-item:focus,
.cid-sOfDqQWRY5 .nav-link:focus {
  outline: none;
}
.cid-sOfDqQWRY5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOfDqQWRY5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOfDqQWRY5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOfDqQWRY5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOfDqQWRY5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOfDqQWRY5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOfDqQWRY5 .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: #bed3f9;
}
.cid-sOfDqQWRY5 .navbar.opened {
  transition: all 0.3s;
}
.cid-sOfDqQWRY5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOfDqQWRY5 .navbar .navbar-logo img {
  width: auto;
}
.cid-sOfDqQWRY5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOfDqQWRY5 .navbar.collapsed {
  justify-content: center;
}
.cid-sOfDqQWRY5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOfDqQWRY5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOfDqQWRY5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOfDqQWRY5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOfDqQWRY5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOfDqQWRY5 .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-sOfDqQWRY5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOfDqQWRY5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOfDqQWRY5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOfDqQWRY5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOfDqQWRY5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOfDqQWRY5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOfDqQWRY5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOfDqQWRY5 .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-sOfDqQWRY5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOfDqQWRY5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOfDqQWRY5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOfDqQWRY5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOfDqQWRY5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOfDqQWRY5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOfDqQWRY5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOfDqQWRY5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOfDqQWRY5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOfDqQWRY5 .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-sOfDqQWRY5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOfDqQWRY5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOfDqQWRY5 .dropdown-item.active,
.cid-sOfDqQWRY5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sOfDqQWRY5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOfDqQWRY5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOfDqQWRY5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOfDqQWRY5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOfDqQWRY5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOfDqQWRY5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOfDqQWRY5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOfDqQWRY5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOfDqQWRY5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOfDqQWRY5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOfDqQWRY5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOfDqQWRY5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfDqQWRY5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfDqQWRY5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOfDqQWRY5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfDqQWRY5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOfDqQWRY5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOfDqQWRY5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfDqQWRY5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOfDqQWRY5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOfDqQWRY5 .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-sOfDqQWRY5 .navbar {
    height: 70px;
  }
  .cid-sOfDqQWRY5 .navbar.opened {
    height: auto;
  }
  .cid-sOfDqQWRY5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOfDqQtFxn {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOfDqQtFxn .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sOfDqQtFxn .mbr-text {
  color: #326dd8;
}
.cid-sOfDqQH45r {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sOfDqQH45r .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sOfDqQH45r .mbr-section-subtitle {
  color: #353535;
}
.cid-sOfDqRha9P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOfDqRha9P .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOfDqRha9P .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOfDqRha9P .row {
    text-align: center;
  }
  .cid-sOfDqRha9P .row > div {
    margin: auto;
  }
  .cid-sOfDqRha9P .social-row {
    justify-content: center;
  }
}
.cid-sOfDqRha9P .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfDqRha9P .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOfDqRha9P .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOfDqRha9P .list {
    margin-bottom: 0rem;
  }
}
.cid-sOfDqRha9P .mbr-text {
  color: #326dd8;
}
.cid-sOfDqRha9P .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOfDqRha9P .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOfDqRha9P div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOfDqRha9P H5 {
  color: #326dd8;
}
.cid-sOfGcorAX7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOfGcorAX7 nav.navbar {
  position: fixed;
}
.cid-sOfGcorAX7 .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-sOfGcorAX7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOfGcorAX7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOfGcorAX7 .dropdown-item:hover,
.cid-sOfGcorAX7 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOfGcorAX7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOfGcorAX7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOfGcorAX7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOfGcorAX7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOfGcorAX7 .nav-link {
  position: relative;
}
.cid-sOfGcorAX7 .container {
  display: flex;
  margin: auto;
}
.cid-sOfGcorAX7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOfGcorAX7 .dropdown-menu,
.cid-sOfGcorAX7 .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOfGcorAX7 .nav-item:focus,
.cid-sOfGcorAX7 .nav-link:focus {
  outline: none;
}
.cid-sOfGcorAX7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOfGcorAX7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOfGcorAX7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOfGcorAX7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOfGcorAX7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOfGcorAX7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOfGcorAX7 .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: #bed3f9;
}
.cid-sOfGcorAX7 .navbar.opened {
  transition: all 0.3s;
}
.cid-sOfGcorAX7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOfGcorAX7 .navbar .navbar-logo img {
  width: auto;
}
.cid-sOfGcorAX7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOfGcorAX7 .navbar.collapsed {
  justify-content: center;
}
.cid-sOfGcorAX7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOfGcorAX7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOfGcorAX7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOfGcorAX7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOfGcorAX7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOfGcorAX7 .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-sOfGcorAX7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOfGcorAX7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOfGcorAX7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOfGcorAX7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOfGcorAX7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOfGcorAX7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOfGcorAX7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOfGcorAX7 .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-sOfGcorAX7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOfGcorAX7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOfGcorAX7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOfGcorAX7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOfGcorAX7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOfGcorAX7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOfGcorAX7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOfGcorAX7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOfGcorAX7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOfGcorAX7 .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-sOfGcorAX7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOfGcorAX7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOfGcorAX7 .dropdown-item.active,
.cid-sOfGcorAX7 .dropdown-item:active {
  background-color: transparent;
}
.cid-sOfGcorAX7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOfGcorAX7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOfGcorAX7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOfGcorAX7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOfGcorAX7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOfGcorAX7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOfGcorAX7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOfGcorAX7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOfGcorAX7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOfGcorAX7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOfGcorAX7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOfGcorAX7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfGcorAX7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOfGcorAX7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOfGcorAX7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfGcorAX7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOfGcorAX7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOfGcorAX7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOfGcorAX7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOfGcorAX7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOfGcorAX7 .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-sOfGcorAX7 .navbar {
    height: 70px;
  }
  .cid-sOfGcorAX7 .navbar.opened {
    height: auto;
  }
  .cid-sOfGcorAX7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOfGcoiZw1 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOfGcoiZw1 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sOfGcoiZw1 .mbr-text {
  color: #326dd8;
}
.cid-sOfGcoP1eO {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sOfGcoP1eO .mbr-section-subtitle {
  color: #353535;
}
.cid-sOfGcoP1eO .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-sOfGcoP1eO .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sOfGcp7rYZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOfGcp7rYZ .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOfGcp7rYZ .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOfGcp7rYZ .row {
    text-align: center;
  }
  .cid-sOfGcp7rYZ .row > div {
    margin: auto;
  }
  .cid-sOfGcp7rYZ .social-row {
    justify-content: center;
  }
}
.cid-sOfGcp7rYZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOfGcp7rYZ .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOfGcp7rYZ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOfGcp7rYZ .list {
    margin-bottom: 0rem;
  }
}
.cid-sOfGcp7rYZ .mbr-text {
  color: #326dd8;
}
.cid-sOfGcp7rYZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOfGcp7rYZ .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOfGcp7rYZ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOfGcp7rYZ H5 {
  color: #326dd8;
}
.cid-sOs6bsTnvn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOs6bsTnvn nav.navbar {
  position: fixed;
}
.cid-sOs6bsTnvn .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-sOs6bsTnvn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOs6bsTnvn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOs6bsTnvn .dropdown-item:hover,
.cid-sOs6bsTnvn .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOs6bsTnvn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOs6bsTnvn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOs6bsTnvn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOs6bsTnvn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOs6bsTnvn .nav-link {
  position: relative;
}
.cid-sOs6bsTnvn .container {
  display: flex;
  margin: auto;
}
.cid-sOs6bsTnvn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOs6bsTnvn .dropdown-menu,
.cid-sOs6bsTnvn .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOs6bsTnvn .nav-item:focus,
.cid-sOs6bsTnvn .nav-link:focus {
  outline: none;
}
.cid-sOs6bsTnvn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOs6bsTnvn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOs6bsTnvn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOs6bsTnvn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOs6bsTnvn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOs6bsTnvn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOs6bsTnvn .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: #bed3f9;
}
.cid-sOs6bsTnvn .navbar.opened {
  transition: all 0.3s;
}
.cid-sOs6bsTnvn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOs6bsTnvn .navbar .navbar-logo img {
  width: auto;
}
.cid-sOs6bsTnvn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOs6bsTnvn .navbar.collapsed {
  justify-content: center;
}
.cid-sOs6bsTnvn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOs6bsTnvn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOs6bsTnvn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOs6bsTnvn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOs6bsTnvn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOs6bsTnvn .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-sOs6bsTnvn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOs6bsTnvn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOs6bsTnvn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOs6bsTnvn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOs6bsTnvn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOs6bsTnvn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOs6bsTnvn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOs6bsTnvn .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-sOs6bsTnvn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOs6bsTnvn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOs6bsTnvn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOs6bsTnvn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOs6bsTnvn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOs6bsTnvn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOs6bsTnvn .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOs6bsTnvn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOs6bsTnvn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOs6bsTnvn .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-sOs6bsTnvn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOs6bsTnvn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOs6bsTnvn .dropdown-item.active,
.cid-sOs6bsTnvn .dropdown-item:active {
  background-color: transparent;
}
.cid-sOs6bsTnvn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOs6bsTnvn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOs6bsTnvn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOs6bsTnvn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOs6bsTnvn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOs6bsTnvn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOs6bsTnvn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOs6bsTnvn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOs6bsTnvn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOs6bsTnvn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOs6bsTnvn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOs6bsTnvn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOs6bsTnvn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOs6bsTnvn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOs6bsTnvn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOs6bsTnvn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOs6bsTnvn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOs6bsTnvn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOs6bsTnvn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOs6bsTnvn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOs6bsTnvn .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-sOs6bsTnvn .navbar {
    height: 70px;
  }
  .cid-sOs6bsTnvn .navbar.opened {
    height: auto;
  }
  .cid-sOs6bsTnvn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOyi3gh1u6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOyi3gh1u6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOyi3gh1u6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyi3gh1u6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOyi3gh1u6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOyi3gh1u6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyi3gh1u6 .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOyi3gh1u6 .mbr-text,
.cid-sOyi3gh1u6 .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOs6vmIHt2 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sOs6vmIHt2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sOs6vmIHt2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sOs6vmIHt2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sOs6vmIHt2 .mbr-section-title {
  color: #326dd8;
}
.cid-sOs6vmIHt2 .mbr-text {
  color: #353535;
}
.cid-sOs8hkAlqv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sOs8hkAlqv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sOs8hkAlqv .row {
  flex-direction: row-reverse;
}
.cid-sOs8hkAlqv img {
  width: 100%;
}
.cid-sOs8hkAlqv .mbr-text {
  color: #353535;
}
.cid-sOycxBmjGQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOycxBmjGQ .mbr-section-subtitle {
  color: #353535;
}
.cid-sOs72Giiyd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-sOs72Giiyd img,
.cid-sOs72Giiyd .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sOs72Giiyd .item:focus,
.cid-sOs72Giiyd span:focus {
  outline: none;
}
.cid-sOs72Giiyd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOs72Giiyd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOs72Giiyd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOs72Giiyd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sOs72Giiyd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOs72Giiyd .mbr-section-title {
  color: #326dd8;
}
.cid-sOs72Giiyd .mbr-text,
.cid-sOs72Giiyd .mbr-section-btn {
  text-align: left;
}
.cid-sOs72Giiyd .item-title {
  text-align: left;
}
.cid-sOs72Giiyd .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sOyihSpNUx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyihSpNUx .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOyihSpNUx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyihSpNUx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOyihSpNUx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyihSpNUx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOyihSpNUx .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOyihSpNUx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOyihSpNUx .mbr-text,
.cid-sOyihSpNUx .mbr-section-btn {
  color: #326dd8;
  text-align: center;
}
.cid-sOyihSpNUx .card-title {
  color: #353535;
}
.cid-sOE5M8Q9EX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE5M8Q9EX img {
  width: 120px;
  margin: auto;
}
.cid-sOE5M8Q9EX .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE5M8Q9EX .card {
    max-width: 12.5%;
  }
}
.cid-sOE5M8Q9EX .mbr-section-title {
  color: #326dd8;
}
.cid-sOs6btcO2V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOs6btcO2V .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOs6btcO2V .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOs6btcO2V .row {
    text-align: center;
  }
  .cid-sOs6btcO2V .row > div {
    margin: auto;
  }
  .cid-sOs6btcO2V .social-row {
    justify-content: center;
  }
}
.cid-sOs6btcO2V .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOs6btcO2V .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOs6btcO2V .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOs6btcO2V .list {
    margin-bottom: 0rem;
  }
}
.cid-sOs6btcO2V .mbr-text {
  color: #326dd8;
}
.cid-sOs6btcO2V .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOs6btcO2V .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOs6btcO2V div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOs6btcO2V H5 {
  color: #326dd8;
}
.cid-sOyjUvlotK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOyjUvlotK nav.navbar {
  position: fixed;
}
.cid-sOyjUvlotK .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-sOyjUvlotK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOyjUvlotK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOyjUvlotK .dropdown-item:hover,
.cid-sOyjUvlotK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOyjUvlotK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOyjUvlotK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOyjUvlotK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOyjUvlotK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOyjUvlotK .nav-link {
  position: relative;
}
.cid-sOyjUvlotK .container {
  display: flex;
  margin: auto;
}
.cid-sOyjUvlotK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOyjUvlotK .dropdown-menu,
.cid-sOyjUvlotK .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOyjUvlotK .nav-item:focus,
.cid-sOyjUvlotK .nav-link:focus {
  outline: none;
}
.cid-sOyjUvlotK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOyjUvlotK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOyjUvlotK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOyjUvlotK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOyjUvlotK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOyjUvlotK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOyjUvlotK .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: #bed3f9;
}
.cid-sOyjUvlotK .navbar.opened {
  transition: all 0.3s;
}
.cid-sOyjUvlotK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOyjUvlotK .navbar .navbar-logo img {
  width: auto;
}
.cid-sOyjUvlotK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOyjUvlotK .navbar.collapsed {
  justify-content: center;
}
.cid-sOyjUvlotK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOyjUvlotK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOyjUvlotK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOyjUvlotK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOyjUvlotK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOyjUvlotK .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-sOyjUvlotK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOyjUvlotK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOyjUvlotK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOyjUvlotK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOyjUvlotK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOyjUvlotK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOyjUvlotK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOyjUvlotK .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-sOyjUvlotK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOyjUvlotK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOyjUvlotK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOyjUvlotK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOyjUvlotK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOyjUvlotK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOyjUvlotK .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOyjUvlotK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOyjUvlotK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOyjUvlotK .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-sOyjUvlotK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOyjUvlotK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOyjUvlotK .dropdown-item.active,
.cid-sOyjUvlotK .dropdown-item:active {
  background-color: transparent;
}
.cid-sOyjUvlotK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOyjUvlotK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOyjUvlotK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOyjUvlotK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOyjUvlotK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOyjUvlotK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOyjUvlotK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOyjUvlotK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOyjUvlotK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOyjUvlotK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOyjUvlotK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOyjUvlotK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyjUvlotK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyjUvlotK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOyjUvlotK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyjUvlotK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOyjUvlotK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOyjUvlotK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyjUvlotK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOyjUvlotK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOyjUvlotK .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-sOyjUvlotK .navbar {
    height: 70px;
  }
  .cid-sOyjUvlotK .navbar.opened {
    height: auto;
  }
  .cid-sOyjUvlotK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOyjUw9MDY {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOyjUw9MDY .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOyjUw9MDY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyjUw9MDY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOyjUw9MDY .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOyjUw9MDY .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyjUw9MDY .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOyjUw9MDY .mbr-text,
.cid-sOyjUw9MDY .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOyl05aQPD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyl05aQPD .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyoRxsQwd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyoRxsQwd .mbr-section-subtitle {
  color: #353535;
  text-align: center;
}
.cid-sOyjUxhB5i {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sOyjUxhB5i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sOyjUxhB5i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sOyjUxhB5i .text-wrapper {
    padding: 2rem;
  }
}
.cid-sOyjUxhB5i .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-sOyjUxhB5i .mbr-text {
  color: #326dd8;
  text-align: center;
}
.cid-sOyqtl7RlL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyqtl7RlL .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyqEAfmIE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sOyqEAfmIE .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyjUy8j93 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sOyjUy8j93 img,
.cid-sOyjUy8j93 .item-img {
  width: 100%;
}
.cid-sOyjUy8j93 .item:focus,
.cid-sOyjUy8j93 span:focus {
  outline: none;
}
.cid-sOyjUy8j93 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOyjUy8j93 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOyjUy8j93 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOyjUy8j93 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sOyjUy8j93 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOyjUy8j93 .mbr-section-title {
  color: #326dd8;
}
.cid-sOyjUy8j93 .mbr-text,
.cid-sOyjUy8j93 .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-sOyjUy8j93 .item-title {
  text-align: left;
}
.cid-sOyjUy8j93 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-sOyjUyyTg5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyjUyyTg5 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOyjUyyTg5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyjUyyTg5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOyjUyyTg5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyjUyyTg5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOyjUyyTg5 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOyjUyyTg5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOyjUyyTg5 .mbr-text,
.cid-sOyjUyyTg5 .mbr-section-btn {
  color: #326dd8;
  text-align: center;
}
.cid-sOE4GKLUOA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE4GKLUOA img {
  width: 120px;
  margin: auto;
}
.cid-sOE4GKLUOA .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE4GKLUOA .card {
    max-width: 12.5%;
  }
}
.cid-sOE4GKLUOA .mbr-section-title {
  color: #326dd8;
}
.cid-sOyjUyN4w3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOyjUyN4w3 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOyjUyN4w3 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyjUyN4w3 .row {
    text-align: center;
  }
  .cid-sOyjUyN4w3 .row > div {
    margin: auto;
  }
  .cid-sOyjUyN4w3 .social-row {
    justify-content: center;
  }
}
.cid-sOyjUyN4w3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOyjUyN4w3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOyjUyN4w3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyjUyN4w3 .list {
    margin-bottom: 0rem;
  }
}
.cid-sOyjUyN4w3 .mbr-text {
  color: #326dd8;
}
.cid-sOyjUyN4w3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOyjUyN4w3 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOyjUyN4w3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOyjUyN4w3 H5 {
  color: #326dd8;
}
.cid-sOyu3Bqz4S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOyu3Bqz4S nav.navbar {
  position: fixed;
}
.cid-sOyu3Bqz4S .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-sOyu3Bqz4S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOyu3Bqz4S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOyu3Bqz4S .dropdown-item:hover,
.cid-sOyu3Bqz4S .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOyu3Bqz4S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOyu3Bqz4S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOyu3Bqz4S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOyu3Bqz4S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOyu3Bqz4S .nav-link {
  position: relative;
}
.cid-sOyu3Bqz4S .container {
  display: flex;
  margin: auto;
}
.cid-sOyu3Bqz4S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOyu3Bqz4S .dropdown-menu,
.cid-sOyu3Bqz4S .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOyu3Bqz4S .nav-item:focus,
.cid-sOyu3Bqz4S .nav-link:focus {
  outline: none;
}
.cid-sOyu3Bqz4S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOyu3Bqz4S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOyu3Bqz4S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOyu3Bqz4S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOyu3Bqz4S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOyu3Bqz4S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOyu3Bqz4S .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: #bed3f9;
}
.cid-sOyu3Bqz4S .navbar.opened {
  transition: all 0.3s;
}
.cid-sOyu3Bqz4S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOyu3Bqz4S .navbar .navbar-logo img {
  width: auto;
}
.cid-sOyu3Bqz4S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOyu3Bqz4S .navbar.collapsed {
  justify-content: center;
}
.cid-sOyu3Bqz4S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOyu3Bqz4S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOyu3Bqz4S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOyu3Bqz4S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOyu3Bqz4S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOyu3Bqz4S .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-sOyu3Bqz4S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOyu3Bqz4S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOyu3Bqz4S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOyu3Bqz4S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOyu3Bqz4S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOyu3Bqz4S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOyu3Bqz4S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOyu3Bqz4S .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-sOyu3Bqz4S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOyu3Bqz4S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOyu3Bqz4S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOyu3Bqz4S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOyu3Bqz4S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOyu3Bqz4S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOyu3Bqz4S .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOyu3Bqz4S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOyu3Bqz4S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOyu3Bqz4S .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-sOyu3Bqz4S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOyu3Bqz4S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOyu3Bqz4S .dropdown-item.active,
.cid-sOyu3Bqz4S .dropdown-item:active {
  background-color: transparent;
}
.cid-sOyu3Bqz4S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOyu3Bqz4S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOyu3Bqz4S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOyu3Bqz4S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOyu3Bqz4S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOyu3Bqz4S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOyu3Bqz4S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOyu3Bqz4S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOyu3Bqz4S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOyu3Bqz4S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOyu3Bqz4S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOyu3Bqz4S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyu3Bqz4S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyu3Bqz4S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOyu3Bqz4S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyu3Bqz4S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOyu3Bqz4S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOyu3Bqz4S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyu3Bqz4S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOyu3Bqz4S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOyu3Bqz4S .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-sOyu3Bqz4S .navbar {
    height: 70px;
  }
  .cid-sOyu3Bqz4S .navbar.opened {
    height: auto;
  }
  .cid-sOyu3Bqz4S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOyu3Cervq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOyu3Cervq .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOyu3Cervq .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyu3Cervq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOyu3Cervq .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOyu3Cervq .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyu3Cervq .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOyu3Cervq .mbr-text,
.cid-sOyu3Cervq .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOyu3D3D5t {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyu3D3D5t .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyu3D3D5t .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sOyu3DwfDt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyu3DwfDt .mbr-section-subtitle {
  color: #353535;
  text-align: left;
}
.cid-sOyu3DVSjm {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sOyu3DVSjm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sOyu3DVSjm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sOyu3DVSjm .text-wrapper {
    padding: 2rem;
  }
}
.cid-sOyu3DVSjm .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-sOyu3DVSjm .mbr-text {
  color: #326dd8;
  text-align: center;
}
.cid-sOyu3FXXXo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyu3FXXXo .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOyu3FXXXo .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyu3FXXXo .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOyu3FXXXo .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyu3FXXXo .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOyu3FXXXo .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOyu3FXXXo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOyu3FXXXo .mbr-text,
.cid-sOyu3FXXXo .mbr-section-btn {
  color: #353535;
}
.cid-sOyu3FXXXo .card-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOyxTViaT6 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sOyxTViaT6 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sOyxTViaT6 .mbr-text {
  color: #326dd8;
}
.cid-sOE690LMx4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE690LMx4 img {
  width: 120px;
  margin: auto;
}
.cid-sOE690LMx4 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE690LMx4 .card {
    max-width: 12.5%;
  }
}
.cid-sOE690LMx4 .mbr-section-title {
  color: #326dd8;
}
.cid-sOyu3GcKOv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOyu3GcKOv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOyu3GcKOv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyu3GcKOv .row {
    text-align: center;
  }
  .cid-sOyu3GcKOv .row > div {
    margin: auto;
  }
  .cid-sOyu3GcKOv .social-row {
    justify-content: center;
  }
}
.cid-sOyu3GcKOv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOyu3GcKOv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOyu3GcKOv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyu3GcKOv .list {
    margin-bottom: 0rem;
  }
}
.cid-sOyu3GcKOv .mbr-text {
  color: #326dd8;
}
.cid-sOyu3GcKOv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOyu3GcKOv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOyu3GcKOv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOyu3GcKOv H5 {
  color: #326dd8;
}
.cid-sOyyhADEcS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOyyhADEcS nav.navbar {
  position: fixed;
}
.cid-sOyyhADEcS .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-sOyyhADEcS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOyyhADEcS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOyyhADEcS .dropdown-item:hover,
.cid-sOyyhADEcS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOyyhADEcS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOyyhADEcS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOyyhADEcS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOyyhADEcS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOyyhADEcS .nav-link {
  position: relative;
}
.cid-sOyyhADEcS .container {
  display: flex;
  margin: auto;
}
.cid-sOyyhADEcS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOyyhADEcS .dropdown-menu,
.cid-sOyyhADEcS .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOyyhADEcS .nav-item:focus,
.cid-sOyyhADEcS .nav-link:focus {
  outline: none;
}
.cid-sOyyhADEcS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOyyhADEcS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOyyhADEcS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOyyhADEcS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOyyhADEcS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOyyhADEcS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOyyhADEcS .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: #bed3f9;
}
.cid-sOyyhADEcS .navbar.opened {
  transition: all 0.3s;
}
.cid-sOyyhADEcS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOyyhADEcS .navbar .navbar-logo img {
  width: auto;
}
.cid-sOyyhADEcS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOyyhADEcS .navbar.collapsed {
  justify-content: center;
}
.cid-sOyyhADEcS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOyyhADEcS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOyyhADEcS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOyyhADEcS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOyyhADEcS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOyyhADEcS .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-sOyyhADEcS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOyyhADEcS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOyyhADEcS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOyyhADEcS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOyyhADEcS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOyyhADEcS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOyyhADEcS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOyyhADEcS .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-sOyyhADEcS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOyyhADEcS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOyyhADEcS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOyyhADEcS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOyyhADEcS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOyyhADEcS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOyyhADEcS .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOyyhADEcS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOyyhADEcS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOyyhADEcS .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-sOyyhADEcS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOyyhADEcS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOyyhADEcS .dropdown-item.active,
.cid-sOyyhADEcS .dropdown-item:active {
  background-color: transparent;
}
.cid-sOyyhADEcS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOyyhADEcS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOyyhADEcS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOyyhADEcS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOyyhADEcS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOyyhADEcS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOyyhADEcS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOyyhADEcS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOyyhADEcS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOyyhADEcS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOyyhADEcS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOyyhADEcS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyyhADEcS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOyyhADEcS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOyyhADEcS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyyhADEcS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOyyhADEcS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOyyhADEcS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOyyhADEcS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOyyhADEcS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOyyhADEcS .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-sOyyhADEcS .navbar {
    height: 70px;
  }
  .cid-sOyyhADEcS .navbar.opened {
    height: auto;
  }
  .cid-sOyyhADEcS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOyyhBtArd {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOyyhBtArd .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOyyhBtArd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyyhBtArd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOyyhBtArd .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOyyhBtArd .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOyyhBtArd .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOyyhBtArd .mbr-text,
.cid-sOyyhBtArd .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOyyhD7sLH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyyhD7sLH .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyyhD7sLH .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sOyyhDyGyn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyyhDyGyn .mbr-section-subtitle {
  color: #353535;
  text-align: left;
}
.cid-sOyyhDyGyn .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sOyzxQRglr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyzxQRglr img,
.cid-sOyzxQRglr .item-img {
  width: 100%;
}
.cid-sOyzxQRglr .item:focus,
.cid-sOyzxQRglr span:focus {
  outline: none;
}
.cid-sOyzxQRglr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOyzxQRglr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOyzxQRglr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOyzxQRglr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sOyzxQRglr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOyzxQRglr .mbr-section-title {
  color: #232323;
}
.cid-sOyzxQRglr .mbr-text,
.cid-sOyzxQRglr .mbr-section-btn {
  text-align: left;
}
.cid-sOyzxQRglr .item-title {
  text-align: left;
}
.cid-sOyzxQRglr .item-subtitle {
  text-align: center;
}
.cid-sOyzxQRglr .mbr-section-subtitle {
  color: #353535;
}
.cid-sOyyhE7CWB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOyyhE7CWB .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOyyhE7CWB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyyhE7CWB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOyyhE7CWB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyyhE7CWB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOyyhE7CWB .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOyyhE7CWB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOyyhE7CWB .mbr-text,
.cid-sOyyhE7CWB .mbr-section-btn {
  color: #353535;
}
.cid-sOyyhE7CWB .card-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOE7EgEK7l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE7EgEK7l img {
  width: 120px;
  margin: auto;
}
.cid-sOE7EgEK7l .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE7EgEK7l .card {
    max-width: 12.5%;
  }
}
.cid-sOE7EgEK7l .mbr-section-title {
  color: #326dd8;
}
.cid-sOyyhEuutD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOyyhEuutD .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOyyhEuutD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOyyhEuutD .row {
    text-align: center;
  }
  .cid-sOyyhEuutD .row > div {
    margin: auto;
  }
  .cid-sOyyhEuutD .social-row {
    justify-content: center;
  }
}
.cid-sOyyhEuutD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOyyhEuutD .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOyyhEuutD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOyyhEuutD .list {
    margin-bottom: 0rem;
  }
}
.cid-sOyyhEuutD .mbr-text {
  color: #326dd8;
}
.cid-sOyyhEuutD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOyyhEuutD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOyyhEuutD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOyyhEuutD H5 {
  color: #326dd8;
}
.cid-sOz0uhPIEG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sOz0uhPIEG nav.navbar {
  position: fixed;
}
.cid-sOz0uhPIEG .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-sOz0uhPIEG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sOz0uhPIEG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sOz0uhPIEG .dropdown-item:hover,
.cid-sOz0uhPIEG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sOz0uhPIEG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sOz0uhPIEG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sOz0uhPIEG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sOz0uhPIEG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sOz0uhPIEG .nav-link {
  position: relative;
}
.cid-sOz0uhPIEG .container {
  display: flex;
  margin: auto;
}
.cid-sOz0uhPIEG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sOz0uhPIEG .dropdown-menu,
.cid-sOz0uhPIEG .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sOz0uhPIEG .nav-item:focus,
.cid-sOz0uhPIEG .nav-link:focus {
  outline: none;
}
.cid-sOz0uhPIEG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sOz0uhPIEG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOz0uhPIEG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sOz0uhPIEG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOz0uhPIEG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOz0uhPIEG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOz0uhPIEG .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: #bed3f9;
}
.cid-sOz0uhPIEG .navbar.opened {
  transition: all 0.3s;
}
.cid-sOz0uhPIEG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sOz0uhPIEG .navbar .navbar-logo img {
  width: auto;
}
.cid-sOz0uhPIEG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sOz0uhPIEG .navbar.collapsed {
  justify-content: center;
}
.cid-sOz0uhPIEG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sOz0uhPIEG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sOz0uhPIEG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sOz0uhPIEG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOz0uhPIEG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOz0uhPIEG .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-sOz0uhPIEG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOz0uhPIEG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sOz0uhPIEG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sOz0uhPIEG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sOz0uhPIEG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOz0uhPIEG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOz0uhPIEG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOz0uhPIEG .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-sOz0uhPIEG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sOz0uhPIEG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOz0uhPIEG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sOz0uhPIEG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sOz0uhPIEG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sOz0uhPIEG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sOz0uhPIEG .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOz0uhPIEG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sOz0uhPIEG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sOz0uhPIEG .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-sOz0uhPIEG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOz0uhPIEG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOz0uhPIEG .dropdown-item.active,
.cid-sOz0uhPIEG .dropdown-item:active {
  background-color: transparent;
}
.cid-sOz0uhPIEG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOz0uhPIEG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOz0uhPIEG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOz0uhPIEG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sOz0uhPIEG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOz0uhPIEG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOz0uhPIEG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sOz0uhPIEG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sOz0uhPIEG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sOz0uhPIEG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sOz0uhPIEG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sOz0uhPIEG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOz0uhPIEG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sOz0uhPIEG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sOz0uhPIEG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOz0uhPIEG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sOz0uhPIEG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sOz0uhPIEG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sOz0uhPIEG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sOz0uhPIEG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sOz0uhPIEG .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-sOz0uhPIEG .navbar {
    height: 70px;
  }
  .cid-sOz0uhPIEG .navbar.opened {
    height: auto;
  }
  .cid-sOz0uhPIEG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOz0uiibKl {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sOz0uiibKl .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sOz0uiibKl .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOz0uiibKl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sOz0uiibKl .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sOz0uiibKl .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sOz0uiibKl .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sOz0uiibKl .mbr-text,
.cid-sOz0uiibKl .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sOz0uiN4Ml {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOz0uiN4Ml .mbr-section-subtitle {
  color: #353535;
}
.cid-sOz0uiN4Ml .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sOz1JsgbDC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sOz1JsgbDC .mbr-section-subtitle {
  color: #353535;
}
.cid-sOz1JsgbDC .mbr-section-title {
  color: #326dd8;
}
.cid-sOz0XnqFUw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOz0XnqFUw img,
.cid-sOz0XnqFUw .item-img {
  width: 100%;
}
.cid-sOz0XnqFUw .item:focus,
.cid-sOz0XnqFUw span:focus {
  outline: none;
}
.cid-sOz0XnqFUw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOz0XnqFUw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOz0XnqFUw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOz0XnqFUw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sOz0XnqFUw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOz0XnqFUw .mbr-section-title {
  color: #232323;
}
.cid-sOz0XnqFUw .mbr-text,
.cid-sOz0XnqFUw .mbr-section-btn {
  text-align: left;
}
.cid-sOz0XnqFUw .item-title {
  text-align: left;
}
.cid-sOz0XnqFUw .item-subtitle {
  text-align: center;
}
.cid-sOz2cZAQT0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sOz2cZAQT0 .mbr-section-subtitle {
  color: #353535;
}
.cid-sOz2cZAQT0 .mbr-section-title {
  color: #326dd8;
}
.cid-sOz2cZAQT0 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sOz0ujzW7U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOz0ujzW7U .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sOz0ujzW7U .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sOz0ujzW7U .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sOz0ujzW7U .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOz0ujzW7U .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-sOz0ujzW7U .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-sOz0ujzW7U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sOz0ujzW7U .mbr-text,
.cid-sOz0ujzW7U .mbr-section-btn {
  color: #353535;
}
.cid-sOz0ujzW7U .card-title {
  text-align: center;
  color: #326dd8;
}
.cid-sOz33H1nTM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOz33H1nTM img,
.cid-sOz33H1nTM .item-img {
  width: 100%;
}
.cid-sOz33H1nTM .item:focus,
.cid-sOz33H1nTM span:focus {
  outline: none;
}
.cid-sOz33H1nTM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sOz33H1nTM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sOz33H1nTM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sOz33H1nTM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sOz33H1nTM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sOz33H1nTM .mbr-section-title {
  color: #326dd8;
}
.cid-sOz33H1nTM .mbr-text,
.cid-sOz33H1nTM .mbr-section-btn {
  text-align: left;
}
.cid-sOz33H1nTM .item-title {
  text-align: left;
}
.cid-sOz33H1nTM .item-subtitle {
  text-align: center;
}
.cid-sOz0ujNYO9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sOz0ujNYO9 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sOz0ujNYO9 .mbr-text {
  color: #326dd8;
}
.cid-sOE6eSjllZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE6eSjllZ img {
  width: 120px;
  margin: auto;
}
.cid-sOE6eSjllZ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE6eSjllZ .card {
    max-width: 12.5%;
  }
}
.cid-sOE6eSjllZ .mbr-section-title {
  color: #326dd8;
}
.cid-sOz0ujXLys {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sOz0ujXLys .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sOz0ujXLys .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sOz0ujXLys .row {
    text-align: center;
  }
  .cid-sOz0ujXLys .row > div {
    margin: auto;
  }
  .cid-sOz0ujXLys .social-row {
    justify-content: center;
  }
}
.cid-sOz0ujXLys .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sOz0ujXLys .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sOz0ujXLys .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sOz0ujXLys .list {
    margin-bottom: 0rem;
  }
}
.cid-sOz0ujXLys .mbr-text {
  color: #326dd8;
}
.cid-sOz0ujXLys .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sOz0ujXLys .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sOz0ujXLys div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sOz0ujXLys H5 {
  color: #326dd8;
}
.cid-sODDuO42NP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sODDuO42NP nav.navbar {
  position: fixed;
}
.cid-sODDuO42NP .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-sODDuO42NP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sODDuO42NP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sODDuO42NP .dropdown-item:hover,
.cid-sODDuO42NP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sODDuO42NP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sODDuO42NP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sODDuO42NP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sODDuO42NP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sODDuO42NP .nav-link {
  position: relative;
}
.cid-sODDuO42NP .container {
  display: flex;
  margin: auto;
}
.cid-sODDuO42NP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sODDuO42NP .dropdown-menu,
.cid-sODDuO42NP .navbar.opened {
  background: #bed3f9 !important;
}
.cid-sODDuO42NP .nav-item:focus,
.cid-sODDuO42NP .nav-link:focus {
  outline: none;
}
.cid-sODDuO42NP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sODDuO42NP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sODDuO42NP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sODDuO42NP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sODDuO42NP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sODDuO42NP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sODDuO42NP .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: #bed3f9;
}
.cid-sODDuO42NP .navbar.opened {
  transition: all 0.3s;
}
.cid-sODDuO42NP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sODDuO42NP .navbar .navbar-logo img {
  width: auto;
}
.cid-sODDuO42NP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sODDuO42NP .navbar.collapsed {
  justify-content: center;
}
.cid-sODDuO42NP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sODDuO42NP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sODDuO42NP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.1rem);
  }
}
.cid-sODDuO42NP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sODDuO42NP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sODDuO42NP .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-sODDuO42NP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sODDuO42NP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sODDuO42NP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sODDuO42NP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sODDuO42NP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sODDuO42NP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sODDuO42NP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sODDuO42NP .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-sODDuO42NP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sODDuO42NP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sODDuO42NP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sODDuO42NP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sODDuO42NP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sODDuO42NP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sODDuO42NP .navbar.navbar-short {
  min-height: 60px;
}
.cid-sODDuO42NP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sODDuO42NP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sODDuO42NP .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-sODDuO42NP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sODDuO42NP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sODDuO42NP .dropdown-item.active,
.cid-sODDuO42NP .dropdown-item:active {
  background-color: transparent;
}
.cid-sODDuO42NP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sODDuO42NP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sODDuO42NP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sODDuO42NP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bed3f9;
}
.cid-sODDuO42NP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sODDuO42NP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sODDuO42NP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sODDuO42NP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sODDuO42NP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sODDuO42NP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #22a5e5;
}
.cid-sODDuO42NP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sODDuO42NP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sODDuO42NP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sODDuO42NP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sODDuO42NP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sODDuO42NP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sODDuO42NP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sODDuO42NP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sODDuO42NP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sODDuO42NP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sODDuO42NP .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-sODDuO42NP .navbar {
    height: 70px;
  }
  .cid-sODDuO42NP .navbar.opened {
    height: auto;
  }
  .cid-sODDuO42NP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sODDuOE9rC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-sODDuOE9rC .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sODDuOE9rC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sODDuOE9rC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sODDuOE9rC .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sODDuOE9rC .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sODDuOE9rC .mbr-section-title {
  color: #326dd8;
  text-align: center;
}
.cid-sODDuOE9rC .mbr-text,
.cid-sODDuOE9rC .mbr-section-btn {
  text-align: center;
  color: #326dd8;
}
.cid-sODDuPeti0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sODDuPeti0 .mbr-section-subtitle {
  color: #353535;
}
.cid-sODDuPeti0 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sODDuPxqI2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sODDuPxqI2 .mbr-section-subtitle {
  color: #353535;
  text-align: left;
}
.cid-sODDuPxqI2 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sODEyxqqAW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sODEyxqqAW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sODEyxqqAW .row {
  flex-direction: row-reverse;
}
.cid-sODEyxqqAW img {
  width: 100%;
}
.cid-sODENZmG5F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sODENZmG5F .mbr-section-subtitle {
  color: #353535;
}
.cid-sODF2PYChM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sODF2PYChM .mbr-section-subtitle {
  color: #353535;
}
.cid-sODI4hXjeJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sODI4hXjeJ .mbr-section-subtitle {
  color: #353535;
}
.cid-sODFxWWxug {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sODFxWWxug .container {
    max-width: 1400px;
  }
}
.cid-sODFxWWxug .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sODFxWWxug .card-wrapper {
  margin-top: 3rem;
}
.cid-sODFxWWxug .row {
  justify-content: center;
}
.cid-sODFxWWxug .mbr-section-title {
  color: #353535;
}
.cid-sODFh3FoEm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sODFh3FoEm .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sODFh3FoEm .mbr-text {
  color: #326dd8;
}
.cid-sOE7yVJE9l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sOE7yVJE9l img {
  width: 120px;
  margin: auto;
}
.cid-sOE7yVJE9l .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sOE7yVJE9l .card {
    max-width: 12.5%;
  }
}
.cid-sOE7yVJE9l .mbr-section-title {
  color: #326dd8;
}
.cid-sODDuQzpje {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bed3f9;
}
.cid-sODDuQzpje .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sODDuQzpje .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sODDuQzpje .row {
    text-align: center;
  }
  .cid-sODDuQzpje .row > div {
    margin: auto;
  }
  .cid-sODDuQzpje .social-row {
    justify-content: center;
  }
}
.cid-sODDuQzpje .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sODDuQzpje .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-sODDuQzpje .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sODDuQzpje .list {
    margin-bottom: 0rem;
  }
}
.cid-sODDuQzpje .mbr-text {
  color: #326dd8;
}
.cid-sODDuQzpje .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sODDuQzpje .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sODDuQzpje div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sODDuQzpje H5 {
  color: #326dd8;
}
