body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.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.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !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: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #4479d9 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.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: #4479d9 !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='%234479d9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tJZAQ0v2Lv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJZAQ0v2Lv nav.navbar {
  position: fixed;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJZAQ0v2Lv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover,
.cid-tJZAQ0v2Lv .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover span {
  color: white;
}
.cid-tJZAQ0v2Lv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJZAQ0v2Lv .nav-link {
  position: relative;
}
.cid-tJZAQ0v2Lv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown-menu,
.cid-tJZAQ0v2Lv .navbar.opened {
  background: #ffffff !important;
}
.cid-tJZAQ0v2Lv .nav-item:focus,
.cid-tJZAQ0v2Lv .nav-link:focus {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJZAQ0v2Lv .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: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.opened {
  transition: all 0.3s;
}
.cid-tJZAQ0v2Lv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJZAQ0v2Lv .navbar .navbar-logo img {
  width: auto;
}
.cid-tJZAQ0v2Lv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJZAQ0v2Lv .navbar.collapsed {
  justify-content: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJZAQ0v2Lv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJZAQ0v2Lv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJZAQ0v2Lv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJZAQ0v2Lv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJZAQ0v2Lv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJZAQ0v2Lv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown-item.active,
.cid-tJZAQ0v2Lv .dropdown-item:active {
  background-color: transparent;
}
.cid-tJZAQ0v2Lv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJZAQ0v2Lv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJZAQ0v2Lv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJZAQ0v2Lv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJZAQ0v2Lv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJZAQ0v2Lv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar {
    height: 70px;
  }
  .cid-tJZAQ0v2Lv .navbar.opened {
    height: auto;
  }
  .cid-tJZAQ0v2Lv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVMBNOmMru {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVMBNOmMru .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMBNOmMru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMBNOmMru .mbr-section-title {
  color: #112b6d;
}
#custom-html-1b {
  /* Type valid CSS here */
}
#custom-html-1b div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1b p {
  font-size: 60px;
  color: #777;
}
.cid-tVMOS1HSdG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f8fa;
}
.cid-tVMOS1HSdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMOS1HSdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMOS1HSdG .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-tVMOS1HSdG .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tVMOS1HSdG .img1 {
  background: #47b5ed;
}
.cid-tVMOS1HSdG .img2 {
  background: #ffe885;
}
.cid-tVMOS1HSdG .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-tVMOS1HSdG .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-tVMOS1HSdG .card-wrapper {
  background: #bed3f9;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tVMOS1HSdG .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tVMOS1HSdG .card-wrapper {
    flex-direction: column;
  }
  .cid-tVMOS1HSdG .card-box {
    padding: 1rem;
  }
  .cid-tVMOS1HSdG .card-box,
  .cid-tVMOS1HSdG .img-wrapper {
    width: 100%;
  }
  .cid-tVMOS1HSdG .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-tVMOS1HSdG .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-tVMOS1HSdG .card-subtitle {
  color: #0077ff;
}
.cid-tVMOS1HSdG .mbr-text,
.cid-tVMOS1HSdG .link-wrap {
  color: #555555;
}
.cid-tVMOS1HSdG .card-title,
.cid-tVMOS1HSdG .card-box {
  color: #112b6d;
}
.cid-tVMHDoeYZ5 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
.cid-tVMHDoeYZ5 .mbr-section-subtitle {
  color: #112b6d;
  text-align: center;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tVMHDoeYZ5 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #4479d9;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tVMHDoeYZ5 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tVMHDoeYZ5 .mbr-section-title {
  margin: 0;
  font-weight: 500;
}
.cid-tVMHDoeYZ5 .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tVMHDoeYZ5 .main-wrapper {
  padding: 56px 0 0 0;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before {
  position: relative;
  margin-bottom: 20px;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a {
  display: inherit;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 80px;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
  width: 80px;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(209, 107, 134, 0.3);
  color: #d16b86;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(92, 167, 219, 0.3);
  color: #5ca7db;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(156, 205, 126, 0.3);
  color: #9ccd7e;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container a .icon-wrapper.icon4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container a .icon-wrapper.icon4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(132, 138, 189, 0.3);
  color: #848abd;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step {
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_1,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_1 {
  background: #d16b86;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_2,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_2 {
  background: #5ca7db;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_3,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_3 {
  background: #9ccd7e;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper .icon-container .step_4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper .icon-container .step_4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .wrapper-without-before .icon-container .step_4,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .wrapper-without-before .icon-container .step_4 {
  background: #848abd;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .subicon-title,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .subicon-title {
  color: #404040;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon .subicon-text,
.cid-tVMHDoeYZ5 .main-wrapper .icon-main .process-icon-without-before .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-tVMHDoeYZ5 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-tVMHDoeYZ5 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-tVMHDoeYZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMHDoeYZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMHDoeYZ5 .mbr-section-title,
.cid-tVMHDoeYZ5 .underline {
  color: #112b6d;
}
.cid-tVMHDoeYZ5 .badge,
.cid-tVMHDoeYZ5 .badge_wrap {
  color: #22a5e5;
}
.cid-tVMufn8HjX {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-tVMufn8HjX .mbr-section-subtitle {
  color: #112b6d;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tVMufn8HjX .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #4479d9;
  background-color: rgba(255, 204, 1, 0.15);
  margin-bottom: 26px;
}
.cid-tVMufn8HjX .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tVMufn8HjX .mbr-section-title {
  margin: 0;
  font-weight: 500;
  margin-bottom: 46px;
  color: #404040;
}
.cid-tVMufn8HjX .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tVMufn8HjX .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-box-align: left;
  align-items: left;
  text-align: left;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.cid-tVMufn8HjX .icon-main .process-icon {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper {
  position: relative;
  margin-bottom: 20px;
  margin-right: 9px;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a {
  display: inherit;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 24px;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  font-weight: normal;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon1 {
  background-color: rgba(209, 107, 134, 0.3);
  color: #d16b86;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon2 {
  background-color: rgba(92, 167, 219, 0.3);
  color: #5ca7db;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon3 {
  background-color: rgba(156, 205, 126, 0.3);
  color: #9ccd7e;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon4 {
  background-color: rgba(132, 138, 189, 0.3);
  color: #848abd;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon5 {
  background-color: rgba(251, 157, 126, 0.3);
  color: #fb9d7e;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container a .icon-wrapper.icon6 {
  background-color: rgba(185, 126, 205, 0.3);
  color: #b97ecd;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step {
  margin: 0;
  position: absolute;
  bottom: -3px;
  left: 11px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  font-size: 11px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_1 {
  background: #d16b86;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_2 {
  background: #5ca7db;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_3 {
  background: #9ccd7e;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_4 {
  background: #848abd;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_5 {
  background: #fb9d7e;
}
.cid-tVMufn8HjX .icon-main .process-icon .wrapper .icon-container .step_6 {
  background: #b97ecd;
}
.cid-tVMufn8HjX .icon-main .process-icon .text-wrap .subicon-title {
  color: #404040;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cid-tVMufn8HjX .icon-main .process-icon .text-wrap .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #606060;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cid-tVMufn8HjX .wrapper::before {
    display: none;
  }
}
.cid-tVMufn8HjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMufn8HjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMufn8HjX .badge,
.cid-tVMufn8HjX .badge_wrap {
  color: #4479d9;
}
.cid-tVMufn8HjX .mbr-section-title,
.cid-tVMufn8HjX .underline {
  color: #112b6d;
}
.cid-tVMLzd4Q6H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-tVMLzd4Q6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMLzd4Q6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMLzd4Q6H .mbr-section-title {
  color: #ffffff;
}
.cid-tVMupuvnz7 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #4479d9;
  z-index: 1;
}
.cid-tVMupuvnz7 .card-box {
  padding: 0rem;
  height: 110px;
}
.cid-tVMupuvnz7 .card {
  max-width: 100%;
}
.cid-tVMupuvnz7 .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
}
.cid-tVMupuvnz7 .wrapper {
  width: 100%;
  display: flex;
  padding: 0 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tVMupuvnz7 .row {
  background: #4479d9;
  position: relative;
  z-index: 0;
  padding: 4rem 0;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .cid-tVMupuvnz7 .row {
    margin: 0rem;
  }
}
.cid-tVMupuvnz7 .card-wrapper {
  display: flex;
  flex-direction: column;
}
.cid-tVMupuvnz7 .card-wrapper:before {
  content: '';
  width: 2rem;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: -1;
}
.cid-tVMupuvnz7 .card-wrapper:after {
  content: '';
  width: 2rem;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -1;
}
.cid-tVMupuvnz7 .container-fluid {
  overflow: hidden;
}
.cid-tVMupuvnz7 .order {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-tVMupuvnz7 .order {
    flex-direction: column;
  }
}
.cid-tVMupuvnz7 .card-title {
  transition: all 0.3s;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tVMupuvnz7 .col-lg-x {
    -ms-flex: 0 0 33.3%;
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }
}
@media (min-width: 1600px) {
  .cid-tVMupuvnz7 .col-lg-x {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 1600px) {
  .cid-tVMupuvnz7 .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-tVMupuvnz7 .number-wrapper {
  position: relative;
  margin: 3rem auto;
  width: fit-content;
}
.cid-tVMupuvnz7 .number-wrapper:before {
  content: '';
  width: 9999px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: -1;
}
.cid-tVMupuvnz7 .number-wrapper:after {
  content: '';
  width: 9999px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 30px;
  z-index: -1;
}
.cid-tVMupuvnz7 .number-wrapper .icon-bg {
  position: absolute;
  overflow: visible;
  top: 3px;
  right: -3px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 4px;
}
.cid-tVMupuvnz7 .mbr-iconfont {
  font-size: 6rem;
  height: 100px;
}
.cid-tVMupuvnz7 .icon1 {
  color: #ffb18a;
}
.cid-tVMupuvnz7 .icon2 {
  color: #c6e1b5;
}
.cid-tVMupuvnz7 .icon3 {
  color: #a8aaff;
}
.cid-tVMupuvnz7 .icon4 {
  color: #ffb18a;
}
.cid-tVMupuvnz7 .icon5 {
  color: #72dfe9;
}
.cid-tVMupuvnz7 .number1 {
  background: #ffb18a;
}
.cid-tVMupuvnz7 .number2 {
  background: #c6e1b5;
}
.cid-tVMupuvnz7 .number3 {
  background: #a8aaff;
}
.cid-tVMupuvnz7 .number4 {
  background: #ffb18a;
}
.cid-tVMupuvnz7 .number5 {
  background: #72dfe9;
}
.cid-tVMupuvnz7 .number {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}
.cid-tVMupuvnz7 .card-text {
  color: #ffb5b5;
}
.cid-tVMupuvnz7 .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 4px;
  min-width: 20px;
  width: 20px;
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  transition: all 0.3s;
}
.cid-tVMupuvnz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMupuvnz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVNotgl4rS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f8fa;
}
.cid-tVNotgl4rS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVNotgl4rS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVNotgl4rS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVNotgl4rS .row {
  flex-direction: row-reverse;
}
.cid-tVNotgl4rS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVNotgl4rS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tVNotgl4rS .mbr-section-title {
  color: #112b6d;
}
.cid-tWrl1Ugsp7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f8fa;
}
.cid-tWrl1Ugsp7 img,
.cid-tWrl1Ugsp7 .item-img {
  width: 100%;
}
.cid-tWrl1Ugsp7 .item:focus,
.cid-tWrl1Ugsp7 span:focus {
  outline: none;
}
.cid-tWrl1Ugsp7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWrl1Ugsp7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWrl1Ugsp7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWrl1Ugsp7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWrl1Ugsp7 .item-wrapper {
  background: transparent;
}
.cid-tWrl1Ugsp7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWrl1Ugsp7 .mbr-section-title {
  color: #232323;
}
.cid-tWrl1Ugsp7 .mbr-text,
.cid-tWrl1Ugsp7 .mbr-section-btn {
  text-align: left;
}
.cid-tWrl1Ugsp7 .item-title {
  text-align: left;
}
.cid-tWrl1Ugsp7 .item-subtitle {
  text-align: center;
}
.cid-tWrl4NqAnu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWrl4NqAnu img,
.cid-tWrl4NqAnu .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tWrl4NqAnu .item:focus,
.cid-tWrl4NqAnu span:focus {
  outline: none;
}
.cid-tWrl4NqAnu .item-wrapper {
  position: relative;
}
.cid-tWrl4NqAnu .slide-content {
  position: relative;
  border-radius: 4px;
  background: #eff4ff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWrl4NqAnu .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWrl4NqAnu .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tWrl4NqAnu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWrl4NqAnu .mbr-section-title {
  color: #232323;
}
.cid-tWrl4NqAnu .mbr-text,
.cid-tWrl4NqAnu .mbr-section-btn {
  text-align: center;
}
.cid-tWrl4NqAnu .item-title {
  text-align: center;
}
.cid-tWrl4NqAnu .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tWrl4NqAnu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tWrl4NqAnu .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tWrl4NqAnu .embla__button--next,
.cid-tWrl4NqAnu .embla__button--prev {
  display: flex;
}
.cid-tWrl4NqAnu .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWrl4NqAnu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tWrl4NqAnu .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tWrl4NqAnu .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWrl4NqAnu .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWrl4NqAnu .embla__button {
    top: auto;
  }
}
.cid-tWrl4NqAnu .embla {
  position: relative;
  width: 100%;
}
.cid-tWrl4NqAnu .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tWrl4NqAnu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tWrl4NqAnu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tWrl4NqAnu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tJZLmfRAUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tJZLmfRAUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZLmfRAUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZLmfRAUX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJZLmfRAUX .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;
}
@media (max-width: 767px) {
  .cid-tJZLmfRAUX .row {
    text-align: center;
  }
  .cid-tJZLmfRAUX .social-row {
    justify-content: center;
  }
}
.cid-tJZLmfRAUX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJZLmfRAUX .mbr-text {
  color: #bbbbbb;
}
.cid-tJZLmfRAUX .mbr-iconfont {
  color: black;
}
.cid-tLMDtXcKpA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tLMDtXcKpA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLMDtXcKpA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLMDtXcKpA .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tLMDtXcKpA .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tLMDtXcKpA .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tLMDtXcKpA .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tLMDtXcKpA .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tLMDtXcKpA .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tLMDtXcKpA .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tLMDtXcKpA .btn-social {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tLMDtXcKpA .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tLMDtXcKpA [class^="socicon-"]:before,
.cid-tLMDtXcKpA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tLMDtXcKpA .mbr-social-likes {
  position: fixed;
  top: 40%;
  left: 2%;
  z-index: 1000;
}
.cid-u0RsBdwCrT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0RsBdwCrT nav.navbar {
  position: fixed;
}
.cid-u0RsBdwCrT .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-u0RsBdwCrT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0RsBdwCrT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0RsBdwCrT .dropdown-item:hover,
.cid-u0RsBdwCrT .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-u0RsBdwCrT .dropdown-item:hover span {
  color: white;
}
.cid-u0RsBdwCrT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0RsBdwCrT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0RsBdwCrT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0RsBdwCrT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0RsBdwCrT .nav-link {
  position: relative;
}
.cid-u0RsBdwCrT .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u0RsBdwCrT .container {
    flex-wrap: wrap;
  }
}
.cid-u0RsBdwCrT .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u0RsBdwCrT .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u0RsBdwCrT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0RsBdwCrT .dropdown-menu,
.cid-u0RsBdwCrT .navbar.opened {
  background: #ffffff !important;
}
.cid-u0RsBdwCrT .nav-item:focus,
.cid-u0RsBdwCrT .nav-link:focus {
  outline: none;
}
.cid-u0RsBdwCrT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0RsBdwCrT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0RsBdwCrT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0RsBdwCrT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0RsBdwCrT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0RsBdwCrT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0RsBdwCrT .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: #ffffff;
}
.cid-u0RsBdwCrT .navbar.opened {
  transition: all 0.3s;
}
.cid-u0RsBdwCrT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0RsBdwCrT .navbar .navbar-logo img {
  width: auto;
}
.cid-u0RsBdwCrT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0RsBdwCrT .navbar.collapsed {
  justify-content: center;
}
.cid-u0RsBdwCrT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0RsBdwCrT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0RsBdwCrT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-u0RsBdwCrT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0RsBdwCrT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0RsBdwCrT .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-u0RsBdwCrT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0RsBdwCrT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0RsBdwCrT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0RsBdwCrT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0RsBdwCrT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0RsBdwCrT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0RsBdwCrT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0RsBdwCrT .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-u0RsBdwCrT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0RsBdwCrT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0RsBdwCrT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0RsBdwCrT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0RsBdwCrT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0RsBdwCrT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0RsBdwCrT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0RsBdwCrT .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0RsBdwCrT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0RsBdwCrT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0RsBdwCrT .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-u0RsBdwCrT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0RsBdwCrT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0RsBdwCrT .dropdown-item.active,
.cid-u0RsBdwCrT .dropdown-item:active {
  background-color: transparent;
}
.cid-u0RsBdwCrT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0RsBdwCrT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0RsBdwCrT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0RsBdwCrT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0RsBdwCrT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0RsBdwCrT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0RsBdwCrT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0RsBdwCrT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0RsBdwCrT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0RsBdwCrT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0RsBdwCrT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0RsBdwCrT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RsBdwCrT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RsBdwCrT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0RsBdwCrT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RsBdwCrT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0RsBdwCrT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0RsBdwCrT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RsBdwCrT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0RsBdwCrT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0RsBdwCrT .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-u0RsBdwCrT .navbar {
    height: 70px;
  }
  .cid-u0RsBdwCrT .navbar.opened {
    height: auto;
  }
  .cid-u0RsBdwCrT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u10aiiakNf {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #d8f6ff;
}
.cid-u10aiiakNf .wrapper {
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.cid-u10aiiakNf .wrapper img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .cid-u10aiiakNf .wrapper {
    padding: 0;
  }
  .cid-u10aiiakNf .wrapper img {
    width: 70%;
    right: 0;
    bottom: 115px;
  }
}
@media (min-width: 992px) {
  .cid-u10aiiakNf .wrapper {
    padding: 0 6rem;
  }
}
.cid-u10aiiakNf .btn {
  border-radius: 30px;
  font-size: 16px;
}
.cid-u10aiiakNf .btn-black {
  position: relative;
  border-radius: 20px;
  padding: 2rem 4rem 2rem 1.5rem;
  transition: all .3s;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
  margin-right: 40px;
}
@media (max-width: 768px) {
  .cid-u10aiiakNf .btn-black {
    width: 100%;
    padding: 2rem 1rem;
  }
  .cid-u10aiiakNf .btn-black::after,
  .cid-u10aiiakNf .btn-black::before {
    display: none;
  }
}
.cid-u10aiiakNf .btn-black::before {
  position: absolute;
  background-color: #ff6a61;
  content: "";
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-u10aiiakNf .btn-black:hover::before {
  width: 120%;
  height: 100px;
  left: -5px;
}
.cid-u10aiiakNf .btn-black::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: all .3s;
  font-size: 20px;
  bottom: 35%;
}
.cid-u10aiiakNf .btn-black:hover::after {
  right: -15px;
  font-size: 30px;
  bottom: 28%;
}
@media (min-width: 769px) {
  .cid-u10aiiakNf .btn-black:hover {
    padding: 2rem 3.5rem 2rem 2rem;
  }
}
.cid-u10aiiakNf .mbr-section-subtitle {
  text-align: right;
  color: #2282e5;
}
.cid-u1036HoBMO {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u1036HoBMO h3,
.cid-u1036HoBMO h4,
.cid-u1036HoBMO h5,
.cid-u1036HoBMO h6,
.cid-u1036HoBMO p {
  margin: 0;
}
.cid-u1036HoBMO .section-head {
  margin-bottom: 2.5rem;
}
.cid-u1036HoBMO .mbr-section-subtitle {
  margin-top: 0.5rem;
}
.cid-u1036HoBMO .nav-tabs .nav-item.open .nav-link:focus,
.cid-u1036HoBMO .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-u1036HoBMO .nav-tabs {
  flex-wrap: nowrap;
  border-bottom: 1px solid #9fdbf8;
}
.cid-u1036HoBMO .nav-item {
  width: 100%;
  text-align: center;
}
.cid-u1036HoBMO .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}
.cid-u1036HoBMO .nav-tabs .nav-link:not(.active) {
  color: #9fdbf8;
}
.cid-u1036HoBMO .nav-link,
.cid-u1036HoBMO .nav-link.active {
  padding: 0 10px 18px;
  background-color: transparent;
}
.cid-u1036HoBMO .nav-tabs .nav-link.active {
  color: #232323;
  border-bottom: 1px solid #232323;
}
.cid-u1036HoBMO .panel-body,
.cid-u1036HoBMO .card-header {
  padding: 3rem 0;
  display: flex;
}
@media (max-width: 991px) {
  .cid-u1036HoBMO .panel-body,
  .cid-u1036HoBMO .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.cid-u1036HoBMO .image-wrap {
  width: 490px;
  margin-right: 3rem;
  flex-shrink: 0;
}
.cid-u1036HoBMO .image-wrap img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-u1036HoBMO .image-wrap {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 521px) {
  .cid-u1036HoBMO .image-wrap {
    width: 100%;
  }
}
.cid-u1036HoBMO .panel-title {
  color: #232323;
  margin-bottom: 0.6rem;
}
.cid-u1036HoBMO .panel-subtitle {
  color: #47b5ed;
}
.cid-u1036HoBMO .panel-text {
  margin-top: 1.5rem;
}
.cid-u0RtiGrtVQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u0RtiGrtVQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RtiGrtVQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0RtiGrtVQ .row {
  flex-direction: row-reverse;
}
.cid-u0RtiGrtVQ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0RtiGrtVQ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u0RtiGrtVQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u0RtiGrtVQ .mbr-section-title {
  text-align: left;
}
.cid-u0RtiGrtVQ .mbr-text,
.cid-u0RtiGrtVQ .mbr-section-btn {
  text-align: left;
}
.cid-u0RtzmiIkL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0RtzmiIkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RtzmiIkL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0RtzmiIkL .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u0RtzmiIkL .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u0RtzmiIkL .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u0RtzmiIkL .mbr-section-title {
  text-align: left;
}
.cid-u0RtzmiIkL .mbr-text,
.cid-u0RtzmiIkL .mbr-section-btn {
  text-align: left;
}
.cid-u10jxkteLL {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u10jxkteLL .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede7e2;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-u10jxkteLL .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-u10jxkteLL .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-u10jxkteLL .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-u10jxkteLL .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-u10jxkteLL .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-u10jxkteLL .items-container {
    padding-left: 6.66vw;
  }
}
.cid-u10jxkteLL .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-u10jxkteLL .item {
    margin-bottom: 3.2vw;
  }
}
.cid-u10jxkteLL .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #47b5ed;
}
@media (max-width: 991px) {
  .cid-u10jxkteLL .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-u10jxkteLL .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-u10jxkteLL .mbr-text {
  color: #000000;
}
.cid-u10gPCnsGr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u10gPCnsGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10gPCnsGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10gPCnsGr .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-u10gPCnsGr .item {
    margin-bottom: 4rem;
  }
}
.cid-u10gPCnsGr .item:last-child .icon-box:before {
  display: none;
}
.cid-u10gPCnsGr .item.last .icon-box:before {
  display: none;
}
.cid-u10gPCnsGr .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-u10gPCnsGr .icon-box {
    margin-right: 1rem;
  }
}
.cid-u10gPCnsGr .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-u10gPCnsGr span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u10gPCnsGr .card {
    margin-bottom: 2rem;
  }
  .cid-u10gPCnsGr .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u10gPCnsGr .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-u10gPCnsGr .icon-box::before {
    top: 114%;
  }
}
.cid-u10jv25R1i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u10jv25R1i p {
  margin: 0;
}
.cid-u10jv25R1i ul {
  list-style-type: none;
  padding: 0;
}
.cid-u10jv25R1i .list {
  display: flex;
  flex-direction: column;
}
.cid-u10jv25R1i .list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u10jv25R1i .list .list-item {
    flex-direction: column;
  }
}
.cid-u10jv25R1i .mbr-number {
  color: #47b5ed;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-u10jv25R1i .mbr-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-u10jv25R1i .line {
  width: 5px;
  background-color: #47b5ed;
  margin-right: 3rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-u10jv25R1i .line {
    width: 100%;
    height: 5px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cid-u10jv25R1i .mbr-section-title {
  color: #33d5ad;
  margin-bottom: 2rem;
}
.cid-u4bfwiDxOh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u4bfwiDxOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4bfwiDxOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4bfwiDxOh .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-u4bfwiDxOh .container {
    max-width: 1400px;
  }
}
.cid-u4bfwiDxOh .card {
  margin: auto;
}
.cid-u4bfwiDxOh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-u4bfwiDxOh .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u4bfwiDxOh .row {
  justify-content: center;
}
.cid-u4bfu9aR3R {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f8fa;
}
.cid-u4bfu9aR3R .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-u4bfu9aR3R .mbr-section-title {
  margin: 0;
  color: #112b6d;
}
.cid-u4bfu9aR3R .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-u4bfu9aR3R .card-img span {
  color: #112b6d;
}
.cid-u4bfu9aR3R .row-item {
  margin-bottom: 2rem;
}
.cid-u4bfu9aR3R .row-item:hover .wrapper {
  background: linear-gradient(90deg, #2282e5, #9fdbf8);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-u4bfu9aR3R .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-u4bfu9aR3R .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-u4bfu9aR3R .wrapper {
  padding: 2.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-u4bfu9aR3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4bfu9aR3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10cAORwU4 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ceefff;
}
.cid-u10cAORwU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10cAORwU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10cAORwU4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u10cAORwU4 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-u4beTZaKFd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4beTZaKFd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4beTZaKFd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4beTZaKFd .timeline-element {
  position: relative;
}
.cid-u4beTZaKFd .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-u4beTZaKFd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u4beTZaKFd .mbr-section-title,
.cid-u4beTZaKFd .mbr-section-subtitle,
.cid-u4beTZaKFd .timeline-date {
  text-align: center;
}
.cid-u4beTZaKFd .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-u4beTZaKFd .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-u4beTZaKFd .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-u4beTZaKFd .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-u4beTZaKFd .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-u4beTZaKFd .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u4beTZaKFd .timeline-date-wrapper,
  .cid-u4beTZaKFd .timeline-text-wrapper,
  .cid-u4beTZaKFd .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-u4beTZaKFd .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-u4beTZaKFd .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u4beTZaKFd .timeline-date-wrapper,
  .cid-u4beTZaKFd .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u4beTZaKFd .timeline-date-wrapper,
  .cid-u4beTZaKFd .timeline-text-wrapper,
  .cid-u4beTZaKFd .image-wrapper {
    padding: 2rem;
  }
}
.cid-u10jvT7kYR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u10jvT7kYR img,
.cid-u10jvT7kYR .item-img {
  width: 100%;
}
.cid-u10jvT7kYR .item:focus,
.cid-u10jvT7kYR span:focus {
  outline: none;
}
.cid-u10jvT7kYR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u10jvT7kYR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u10jvT7kYR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u10jvT7kYR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u10jvT7kYR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u10jvT7kYR .mbr-section-title {
  color: #232323;
}
.cid-u10jvT7kYR .mbr-text,
.cid-u10jvT7kYR .mbr-section-btn {
  text-align: left;
}
.cid-u10jvT7kYR .item-title {
  text-align: left;
}
.cid-u10jvT7kYR .item-subtitle {
  text-align: center;
}
.cid-u10jwxblAe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-u10jwxblAe img,
.cid-u10jwxblAe .item-img {
  width: 100%;
}
.cid-u10jwxblAe .item:focus,
.cid-u10jwxblAe span:focus {
  outline: none;
}
.cid-u10jwxblAe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u10jwxblAe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u10jwxblAe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u10jwxblAe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u10jwxblAe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u10jwxblAe .mbr-section-title {
  color: #232323;
}
.cid-u10jwxblAe .mbr-text,
.cid-u10jwxblAe .mbr-section-btn {
  text-align: center;
}
.cid-u10jwxblAe .item-title {
  text-align: center;
}
.cid-u10jwxblAe .item-subtitle {
  text-align: left;
}
.cid-u0RsBbUHSL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u0RsBbUHSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RsBbUHSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0RsBbUHSL .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u0RsBbUHSL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u0RsBbUHSL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0RsBbUHSL .card-wrapper {
    padding: 4rem;
  }
}
.cid-u0RsBbUHSL .mbr-text,
.cid-u0RsBbUHSL .mbr-section-btn {
  color: #ffffff;
}
.cid-u0RsBbUHSL .card-title,
.cid-u0RsBbUHSL .card-box {
  text-align: left;
}
.cid-u0RsBcXocX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0RsBcXocX img,
.cid-u0RsBcXocX .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u0RsBcXocX .item:focus,
.cid-u0RsBcXocX span:focus {
  outline: none;
}
.cid-u0RsBcXocX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0RsBcXocX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0RsBcXocX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0RsBcXocX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0RsBcXocX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0RsBcXocX .mbr-section-title {
  color: #232323;
}
.cid-u0RsBcXocX .mbr-text,
.cid-u0RsBcXocX .mbr-section-btn {
  text-align: center;
}
.cid-u0RsBcXocX .item-title {
  text-align: center;
}
.cid-u0RsBcXocX .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-u4bghzpvba {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4bghzpvba .mbr-text {
  color: #103178;
}
.cid-u4bghzpvba .mbr-section-subtitle {
  color: #103178;
}
.cid-u4bghzpvba p {
  line-height: 2;
}
.cid-u0RsBebkYj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u0RsBebkYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RsBebkYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0RsBebkYj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0RsBebkYj .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;
}
@media (max-width: 767px) {
  .cid-u0RsBebkYj .row {
    text-align: center;
  }
  .cid-u0RsBebkYj .social-row {
    justify-content: center;
  }
}
.cid-u0RsBebkYj .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u0RsBebkYj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0RsBebkYj .list {
    margin-bottom: 0rem;
  }
}
.cid-u0RsBebkYj .mbr-text {
  color: #bbbbbb;
}
.cid-u0RsBebkYj .mbr-iconfont {
  color: black;
}
.cid-tZK8yqEmzV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZK8yqEmzV nav.navbar {
  position: fixed;
}
.cid-tZK8yqEmzV .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-tZK8yqEmzV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tZK8yqEmzV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tZK8yqEmzV .dropdown-item:hover,
.cid-tZK8yqEmzV .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tZK8yqEmzV .dropdown-item:hover span {
  color: white;
}
.cid-tZK8yqEmzV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZK8yqEmzV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZK8yqEmzV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZK8yqEmzV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZK8yqEmzV .nav-link {
  position: relative;
}
.cid-tZK8yqEmzV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZK8yqEmzV .container {
    flex-wrap: wrap;
  }
}
.cid-tZK8yqEmzV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZK8yqEmzV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tZK8yqEmzV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZK8yqEmzV .dropdown-menu,
.cid-tZK8yqEmzV .navbar.opened {
  background: #ffffff !important;
}
.cid-tZK8yqEmzV .nav-item:focus,
.cid-tZK8yqEmzV .nav-link:focus {
  outline: none;
}
.cid-tZK8yqEmzV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZK8yqEmzV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZK8yqEmzV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZK8yqEmzV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZK8yqEmzV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZK8yqEmzV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZK8yqEmzV .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: #ffffff;
}
.cid-tZK8yqEmzV .navbar.opened {
  transition: all 0.3s;
}
.cid-tZK8yqEmzV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZK8yqEmzV .navbar .navbar-logo img {
  width: auto;
}
.cid-tZK8yqEmzV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZK8yqEmzV .navbar.collapsed {
  justify-content: center;
}
.cid-tZK8yqEmzV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZK8yqEmzV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZK8yqEmzV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tZK8yqEmzV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZK8yqEmzV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZK8yqEmzV .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-tZK8yqEmzV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZK8yqEmzV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZK8yqEmzV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZK8yqEmzV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZK8yqEmzV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZK8yqEmzV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZK8yqEmzV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZK8yqEmzV .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-tZK8yqEmzV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZK8yqEmzV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZK8yqEmzV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZK8yqEmzV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZK8yqEmzV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZK8yqEmzV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tZK8yqEmzV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tZK8yqEmzV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZK8yqEmzV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZK8yqEmzV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZK8yqEmzV .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-tZK8yqEmzV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZK8yqEmzV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZK8yqEmzV .dropdown-item.active,
.cid-tZK8yqEmzV .dropdown-item:active {
  background-color: transparent;
}
.cid-tZK8yqEmzV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZK8yqEmzV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZK8yqEmzV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZK8yqEmzV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tZK8yqEmzV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZK8yqEmzV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZK8yqEmzV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZK8yqEmzV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZK8yqEmzV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tZK8yqEmzV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZK8yqEmzV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZK8yqEmzV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZK8yqEmzV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZK8yqEmzV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZK8yqEmzV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZK8yqEmzV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZK8yqEmzV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZK8yqEmzV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZK8yqEmzV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZK8yqEmzV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZK8yqEmzV .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-tZK8yqEmzV .navbar {
    height: 70px;
  }
  .cid-tZK8yqEmzV .navbar.opened {
    height: auto;
  }
  .cid-tZK8yqEmzV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZK8yomwDR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-tZK8yomwDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZK8yomwDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZK8yomwDR .row {
  flex-direction: row-reverse;
}
.cid-tZK8yomwDR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tZK8yomwDR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tZK8yomwDR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tZK8yomwDR .mbr-section-title {
  text-align: center;
}
.cid-tZK8yomwDR .mbr-text,
.cid-tZK8yomwDR .mbr-section-btn {
  text-align: center;
}
.cid-tZK9WwbMsl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tZK9WwbMsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZK9WwbMsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZK9WwbMsl .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tZK9WwbMsl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZK9WwbMsl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZK9WwbMsl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZK9WwbMsl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tZK9WwbMsl .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tZK9WwbMsl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZK8yqisdQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.webp");
}
.cid-tZK8yqisdQ .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tZK8yqisdQ img,
.cid-tZK8yqisdQ .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZK8yqisdQ .item:focus,
.cid-tZK8yqisdQ span:focus {
  outline: none;
}
.cid-tZK8yqisdQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZK8yqisdQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZK8yqisdQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZK8yqisdQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZK8yqisdQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZK8yqisdQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZK8yqisdQ .mbr-text,
.cid-tZK8yqisdQ .mbr-section-btn {
  text-align: center;
}
.cid-tZK8yqisdQ .item-title {
  text-align: center;
}
.cid-tZK8yqisdQ .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tZK8yqisdQ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tZK8ypJtKt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tZK8ypJtKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZK8ypJtKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZK8ypJtKt .nav-tabs .nav-item.open .nav-link:focus,
.cid-tZK8ypJtKt .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tZK8ypJtKt .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-tZK8ypJtKt .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tZK8ypJtKt .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tZK8ypJtKt .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tZK8ypJtKt .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tZK8ypJtKt .nav-link,
.cid-tZK8ypJtKt .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tZK8ypJtKt .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-tZK8ypJtKt H4 {
  text-align: center;
}
.cid-tZK8ypJtKt H3 {
  text-align: center;
}
.cid-tZKbUgjgia {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.webp");
}
.cid-tZKbUgjgia .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-tZKbUgjgia img,
.cid-tZKbUgjgia .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZKbUgjgia .item:focus,
.cid-tZKbUgjgia span:focus {
  outline: none;
}
.cid-tZKbUgjgia .item-wrapper {
  position: relative;
}
.cid-tZKbUgjgia .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZKbUgjgia .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZKbUgjgia .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tZKbUgjgia .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZKbUgjgia .mbr-section-title {
  color: #232323;
}
.cid-tZKbUgjgia .mbr-text,
.cid-tZKbUgjgia .mbr-section-btn {
  text-align: center;
}
.cid-tZKbUgjgia .item-title {
  text-align: center;
}
.cid-tZKbUgjgia .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tZKbUgjgia .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tZKbUgjgia .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tZKbUgjgia .embla__button--next,
.cid-tZKbUgjgia .embla__button--prev {
  display: flex;
}
.cid-tZKbUgjgia .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tZKbUgjgia .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tZKbUgjgia .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tZKbUgjgia .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tZKbUgjgia .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tZKbUgjgia .embla__button {
    top: auto;
  }
}
.cid-tZKbUgjgia .embla {
  position: relative;
  width: 100%;
}
.cid-tZKbUgjgia .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tZKbUgjgia .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tZKbUgjgia .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tZKbUgjgia .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tZK8yr23gP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tZK8yr23gP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZK8yr23gP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZK8yr23gP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZK8yr23gP .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;
}
@media (max-width: 767px) {
  .cid-tZK8yr23gP .row {
    text-align: center;
  }
  .cid-tZK8yr23gP .social-row {
    justify-content: center;
  }
}
.cid-tZK8yr23gP .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tZK8yr23gP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZK8yr23gP .list {
    margin-bottom: 0rem;
  }
}
.cid-tZK8yr23gP .mbr-text {
  color: #bbbbbb;
}
.cid-tZK8yr23gP .mbr-iconfont {
  color: black;
}
.cid-u0RwIwNMAE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u0RwIwNMAE nav.navbar {
  position: fixed;
}
.cid-u0RwIwNMAE .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-u0RwIwNMAE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u0RwIwNMAE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u0RwIwNMAE .dropdown-item:hover,
.cid-u0RwIwNMAE .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-u0RwIwNMAE .dropdown-item:hover span {
  color: white;
}
.cid-u0RwIwNMAE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u0RwIwNMAE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u0RwIwNMAE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u0RwIwNMAE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u0RwIwNMAE .nav-link {
  position: relative;
}
.cid-u0RwIwNMAE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u0RwIwNMAE .container {
    flex-wrap: wrap;
  }
}
.cid-u0RwIwNMAE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u0RwIwNMAE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u0RwIwNMAE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u0RwIwNMAE .dropdown-menu,
.cid-u0RwIwNMAE .navbar.opened {
  background: #ffffff !important;
}
.cid-u0RwIwNMAE .nav-item:focus,
.cid-u0RwIwNMAE .nav-link:focus {
  outline: none;
}
.cid-u0RwIwNMAE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u0RwIwNMAE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u0RwIwNMAE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u0RwIwNMAE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u0RwIwNMAE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u0RwIwNMAE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u0RwIwNMAE .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: #ffffff;
}
.cid-u0RwIwNMAE .navbar.opened {
  transition: all 0.3s;
}
.cid-u0RwIwNMAE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u0RwIwNMAE .navbar .navbar-logo img {
  width: auto;
}
.cid-u0RwIwNMAE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u0RwIwNMAE .navbar.collapsed {
  justify-content: center;
}
.cid-u0RwIwNMAE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u0RwIwNMAE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u0RwIwNMAE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-u0RwIwNMAE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u0RwIwNMAE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u0RwIwNMAE .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-u0RwIwNMAE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u0RwIwNMAE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u0RwIwNMAE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u0RwIwNMAE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u0RwIwNMAE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u0RwIwNMAE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u0RwIwNMAE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u0RwIwNMAE .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-u0RwIwNMAE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u0RwIwNMAE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u0RwIwNMAE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u0RwIwNMAE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u0RwIwNMAE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u0RwIwNMAE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u0RwIwNMAE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u0RwIwNMAE .navbar.navbar-short {
  min-height: 60px;
}
.cid-u0RwIwNMAE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u0RwIwNMAE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u0RwIwNMAE .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-u0RwIwNMAE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u0RwIwNMAE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u0RwIwNMAE .dropdown-item.active,
.cid-u0RwIwNMAE .dropdown-item:active {
  background-color: transparent;
}
.cid-u0RwIwNMAE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u0RwIwNMAE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u0RwIwNMAE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u0RwIwNMAE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u0RwIwNMAE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u0RwIwNMAE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u0RwIwNMAE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u0RwIwNMAE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u0RwIwNMAE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u0RwIwNMAE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u0RwIwNMAE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u0RwIwNMAE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RwIwNMAE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u0RwIwNMAE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u0RwIwNMAE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RwIwNMAE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u0RwIwNMAE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u0RwIwNMAE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u0RwIwNMAE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u0RwIwNMAE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0RwIwNMAE .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-u0RwIwNMAE .navbar {
    height: 70px;
  }
  .cid-u0RwIwNMAE .navbar.opened {
    height: auto;
  }
  .cid-u0RwIwNMAE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-3q {
  /* Type valid CSS here */
}
#custom-html-3q div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3q p {
  font-size: 60px;
  color: #777;
}
.cid-u0ZYqzEfj9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u0ZYqzEfj9 .row {
  align-items: center;
  padding: 0 12px;
}
@media (min-width: 992px) {
  .cid-u0ZYqzEfj9 .row {
    padding: 0 16px;
  }
}
.cid-u0ZYqzEfj9 .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 100px;
  border-radius: 10px;
  background-color: #9fdbf8;
}
@media (max-width: 767px) {
  .cid-u0ZYqzEfj9 .content-wrapper {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cid-u0ZYqzEfj9 .content-wrapper {
    padding: 40px;
  }
}
.cid-u0ZYqzEfj9 .image-wrapper {
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.cid-u0ZYqzEfj9 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-u0ZYqzEfj9 .mbr-section-title {
  margin-bottom: 1.425rem;
  width: 100%;
}
.cid-u0ZYqzEfj9 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 20px;
}
.cid-u0ZYqzEfj9 .item-container {
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u0ZYqzEfj9 .item-container {
    margin-top: 0;
  }
}
.cid-u0ZYqzEfj9 .item {
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.cid-u0ZYqzEfj9 .item:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .cid-u0ZYqzEfj9 .item {
    flex-direction: column;
  }
}
.cid-u0ZYqzEfj9 .icon-box {
  background: #ffffff;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 24px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u0ZYqzEfj9 .icon-box {
    margin-right: 0;
  }
}
.cid-u0ZYqzEfj9 .text-box {
  flex-grow: 1;
}
.cid-u0ZYqzEfj9 .number-text {
  color: #4479d9;
}
.cid-u0ZYqzEfj9 .icon-text {
  color: #111111;
}
.cid-u0ZYqzEfj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0ZYqzEfj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1004uOhNM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1004uOhNM h3,
.cid-u1004uOhNM h4,
.cid-u1004uOhNM h5,
.cid-u1004uOhNM h6,
.cid-u1004uOhNM p {
  margin: 0;
}
.cid-u1004uOhNM .section-head {
  margin-bottom: 2.5rem;
}
.cid-u1004uOhNM .mbr-section-subtitle {
  margin-top: 0.5rem;
}
.cid-u1004uOhNM .nav-tabs .nav-item.open .nav-link:focus,
.cid-u1004uOhNM .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-u1004uOhNM .nav-tabs {
  flex-wrap: nowrap;
  border-bottom: 1px solid #9fdbf8;
}
.cid-u1004uOhNM .nav-item {
  width: 100%;
  text-align: center;
}
.cid-u1004uOhNM .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0 !important;
}
.cid-u1004uOhNM .nav-tabs .nav-link:not(.active) {
  color: #9fdbf8;
}
.cid-u1004uOhNM .nav-link,
.cid-u1004uOhNM .nav-link.active {
  padding: 0 10px 18px;
  background-color: transparent;
}
.cid-u1004uOhNM .nav-tabs .nav-link.active {
  color: #232323;
  border-bottom: 1px solid #232323;
}
.cid-u1004uOhNM .panel-body,
.cid-u1004uOhNM .card-header {
  padding: 3rem 0;
  display: flex;
}
@media (max-width: 991px) {
  .cid-u1004uOhNM .panel-body,
  .cid-u1004uOhNM .card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.cid-u1004uOhNM .image-wrap {
  width: 490px;
  margin-right: 3rem;
  flex-shrink: 0;
}
.cid-u1004uOhNM .image-wrap img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .cid-u1004uOhNM .image-wrap {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 521px) {
  .cid-u1004uOhNM .image-wrap {
    width: 100%;
  }
}
.cid-u1004uOhNM .panel-title {
  color: #232323;
  margin-bottom: 0.6rem;
}
.cid-u1004uOhNM .panel-subtitle {
  color: #47b5ed;
}
.cid-u1004uOhNM .panel-text {
  margin-top: 1.5rem;
}
.cid-u0RwItTiSd {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u0RwIueJoi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u0RwIueJoi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RwIueJoi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u0RwIueJoi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u0RwIueJoi .row {
  flex-direction: row-reverse;
}
.cid-u0RwIueJoi img {
  width: 100%;
}
.cid-u1000eQtYP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u1000eQtYP .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u1000eQtYP .panel-title {
  display: flex;
  align-items: center;
}
.cid-u1000eQtYP .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 3rem !important;
  color: #47b5ed;
}
.cid-u1000eQtYP .panel-body,
.cid-u1000eQtYP .card-header {
  padding: 1rem 0;
}
.cid-u1000eQtYP .panel-body {
  display: flex;
  justify-content: flex-end;
}
.cid-u1000eQtYP .panel-title-edit {
  color: #14142b;
  display: flex;
  align-items: center;
}
.cid-u1000eQtYP .panel-text {
  max-width: 466px;
  color: #8c8c95;
}
.cid-u1000eQtYP .card-header {
  padding: 28px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
}
.cid-u1000eQtYP .section-head {
  margin-bottom: 56px;
}
.cid-u1000eQtYP .card {
  margin-bottom: 32px;
}
.cid-u1000eQtYP H3 {
  color: #14142b;
}
@media (max-width: 768px) {
  .cid-u1000eQtYP .panel-text {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 1000px) {
  .cid-u1000eQtYP .panel-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u0RwIwe3Oi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u0RwIwe3Oi img,
.cid-u0RwIwe3Oi .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u0RwIwe3Oi .item:focus,
.cid-u0RwIwe3Oi span:focus {
  outline: none;
}
.cid-u0RwIwe3Oi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0RwIwe3Oi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0RwIwe3Oi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u0RwIwe3Oi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0RwIwe3Oi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u0RwIwe3Oi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u0RwIwe3Oi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0RwIwe3Oi .mbr-section-title {
  color: #232323;
}
.cid-u0RwIwe3Oi .mbr-text,
.cid-u0RwIwe3Oi .mbr-section-btn {
  text-align: center;
}
.cid-u0RwIwe3Oi .item-title {
  text-align: center;
}
.cid-u0RwIwe3Oi .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-u0RwIxpppN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-u0RwIxpppN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0RwIxpppN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0RwIxpppN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u0RwIxpppN .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;
}
@media (max-width: 767px) {
  .cid-u0RwIxpppN .row {
    text-align: center;
  }
  .cid-u0RwIxpppN .social-row {
    justify-content: center;
  }
}
.cid-u0RwIxpppN .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-u0RwIxpppN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0RwIxpppN .list {
    margin-bottom: 0rem;
  }
}
.cid-u0RwIxpppN .mbr-text {
  color: #bbbbbb;
}
.cid-u0RwIxpppN .mbr-iconfont {
  color: black;
}
.cid-tJZAQ0v2Lv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJZAQ0v2Lv nav.navbar {
  position: fixed;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJZAQ0v2Lv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover,
.cid-tJZAQ0v2Lv .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover span {
  color: white;
}
.cid-tJZAQ0v2Lv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJZAQ0v2Lv .nav-link {
  position: relative;
}
.cid-tJZAQ0v2Lv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown-menu,
.cid-tJZAQ0v2Lv .navbar.opened {
  background: #ffffff !important;
}
.cid-tJZAQ0v2Lv .nav-item:focus,
.cid-tJZAQ0v2Lv .nav-link:focus {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJZAQ0v2Lv .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: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.opened {
  transition: all 0.3s;
}
.cid-tJZAQ0v2Lv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJZAQ0v2Lv .navbar .navbar-logo img {
  width: auto;
}
.cid-tJZAQ0v2Lv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJZAQ0v2Lv .navbar.collapsed {
  justify-content: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJZAQ0v2Lv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJZAQ0v2Lv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJZAQ0v2Lv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJZAQ0v2Lv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJZAQ0v2Lv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJZAQ0v2Lv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown-item.active,
.cid-tJZAQ0v2Lv .dropdown-item:active {
  background-color: transparent;
}
.cid-tJZAQ0v2Lv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJZAQ0v2Lv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJZAQ0v2Lv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJZAQ0v2Lv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJZAQ0v2Lv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJZAQ0v2Lv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar {
    height: 70px;
  }
  .cid-tJZAQ0v2Lv .navbar.opened {
    height: auto;
  }
  .cid-tJZAQ0v2Lv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7Gd1VUUFe {
  display: flex;
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/qr-codes-world-1-1024x1024.webp");
}
.cid-u7Gd1VUUFe .mbr-overlay {
  background-color: #2e5986;
  opacity: 0.4;
}
.cid-u7Gd1VUUFe .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-u7Gd1VUUFe {
    align-items: center;
  }
  .cid-u7Gd1VUUFe .row {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u7Gd1VUUFe .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u7Gd1VUUFe {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u7Gd1VUUFe .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u7Gd1VUUFe .content-wrap {
    width: 100%;
  }
}
.cid-u7Gd1VUUFe .mbr-section-title {
  text-align: left;
}
.cid-u7Gd1VUUFe .mbr-text,
.cid-u7Gd1VUUFe .mbr-section-btn {
  text-align: left;
}
.cid-tKKGHTTt1K {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-tKKGHTTt1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKKGHTTt1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKKGHTTt1K .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tKKGHTTt1K .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tKKGHTTt1K .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tKKGHTTt1K .mbr-section-title {
  text-align: left;
}
.cid-tKKGHTTt1K .mbr-text,
.cid-tKKGHTTt1K .mbr-section-btn {
  text-align: left;
}
.cid-tL9MxVdnAg {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tLvJwVf6SK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tLvJwVf6SK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLvJwVf6SK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tLvJwVf6SK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tLvJwVf6SK .row {
  flex-direction: row-reverse;
}
.cid-tLvJwVf6SK img {
  width: 100%;
}
.cid-tLvL0f6V2M {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tLvL0f6V2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLvL0f6V2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLvL0f6V2M .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tLvL0f6V2M .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tLvL0f6V2M .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tLvL0f6V2M .card-wrapper {
    padding: 4rem;
  }
}
.cid-tLvL0f6V2M .mbr-text,
.cid-tLvL0f6V2M .mbr-section-btn {
  color: #ffffff;
}
.cid-tLvL0f6V2M .card-title,
.cid-tLvL0f6V2M .card-box {
  text-align: left;
}
.cid-tLvKWz00dB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tLvKWz00dB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLvKWz00dB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLvKWz00dB .nav-tabs .nav-item.open .nav-link:focus,
.cid-tLvKWz00dB .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tLvKWz00dB .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-tLvKWz00dB .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tLvKWz00dB .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tLvKWz00dB .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tLvKWz00dB .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tLvKWz00dB .nav-link,
.cid-tLvKWz00dB .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tLvKWz00dB .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-tLvKWz00dB H4 {
  text-align: center;
}
.cid-tLvKWz00dB H3 {
  text-align: center;
}
.cid-tWV5QLLqG4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWV5QLLqG4 img,
.cid-tWV5QLLqG4 .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tWV5QLLqG4 .item:focus,
.cid-tWV5QLLqG4 span:focus {
  outline: none;
}
.cid-tWV5QLLqG4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWV5QLLqG4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWV5QLLqG4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tWV5QLLqG4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWV5QLLqG4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tWV5QLLqG4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tWV5QLLqG4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWV5QLLqG4 .mbr-section-title {
  color: #232323;
}
.cid-tWV5QLLqG4 .mbr-text,
.cid-tWV5QLLqG4 .mbr-section-btn {
  text-align: center;
}
.cid-tWV5QLLqG4 .item-title {
  text-align: center;
}
.cid-tWV5QLLqG4 .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tJZLmfRAUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tJZLmfRAUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZLmfRAUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZLmfRAUX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJZLmfRAUX .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;
}
@media (max-width: 767px) {
  .cid-tJZLmfRAUX .row {
    text-align: center;
  }
  .cid-tJZLmfRAUX .social-row {
    justify-content: center;
  }
}
.cid-tJZLmfRAUX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJZLmfRAUX .mbr-text {
  color: #bbbbbb;
}
.cid-tJZLmfRAUX .mbr-iconfont {
  color: black;
}
.cid-u10hgVQt1D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u10hgVQt1D .mbr-fallback-image.disabled {
  display: none;
}
.cid-u10hgVQt1D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u10hgVQt1D .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-u10hgVQt1D .item {
    margin-bottom: 4rem;
  }
}
.cid-u10hgVQt1D .item:last-child .icon-box:before {
  display: none;
}
.cid-u10hgVQt1D .item.last .icon-box:before {
  display: none;
}
.cid-u10hgVQt1D .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-u10hgVQt1D .icon-box {
    margin-right: 1rem;
  }
}
.cid-u10hgVQt1D .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-u10hgVQt1D span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u10hgVQt1D .card {
    margin-bottom: 2rem;
  }
  .cid-u10hgVQt1D .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u10hgVQt1D .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-u10hgVQt1D .icon-box::before {
    top: 114%;
  }
}
.cid-u10hhuRRUp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u10hhuRRUp p {
  margin: 0;
}
.cid-u10hhuRRUp ul {
  list-style-type: none;
  padding: 0;
}
.cid-u10hhuRRUp .list {
  display: flex;
  flex-direction: column;
}
.cid-u10hhuRRUp .list .list-item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-u10hhuRRUp .list .list-item {
    flex-direction: column;
  }
}
.cid-u10hhuRRUp .mbr-number {
  color: #47b5ed;
  margin-right: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-u10hhuRRUp .mbr-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-u10hhuRRUp .line {
  width: 5px;
  background-color: #47b5ed;
  margin-right: 3rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-u10hhuRRUp .line {
    width: 100%;
    height: 5px;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cid-u10hhuRRUp .mbr-section-title {
  color: #33d5ad;
  margin-bottom: 2rem;
}
.cid-u10hFxSHwj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u10hFxSHwj img,
.cid-u10hFxSHwj .item-img {
  width: 100%;
}
.cid-u10hFxSHwj .item:focus,
.cid-u10hFxSHwj span:focus {
  outline: none;
}
.cid-u10hFxSHwj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u10hFxSHwj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u10hFxSHwj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u10hFxSHwj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u10hFxSHwj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u10hFxSHwj .mbr-section-title {
  color: #232323;
}
.cid-u10hFxSHwj .mbr-text,
.cid-u10hFxSHwj .mbr-section-btn {
  text-align: left;
}
.cid-u10hFxSHwj .item-title {
  text-align: left;
}
.cid-u10hFxSHwj .item-subtitle {
  text-align: center;
}
.cid-u10hFMEjlv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-u10hFMEjlv img,
.cid-u10hFMEjlv .item-img {
  width: 100%;
}
.cid-u10hFMEjlv .item:focus,
.cid-u10hFMEjlv span:focus {
  outline: none;
}
.cid-u10hFMEjlv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-u10hFMEjlv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u10hFMEjlv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u10hFMEjlv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u10hFMEjlv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u10hFMEjlv .mbr-section-title {
  color: #232323;
}
.cid-u10hFMEjlv .mbr-text,
.cid-u10hFMEjlv .mbr-section-btn {
  text-align: center;
}
.cid-u10hFMEjlv .item-title {
  text-align: center;
}
.cid-u10hFMEjlv .item-subtitle {
  text-align: left;
}
.cid-tJZAQ0v2Lv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJZAQ0v2Lv nav.navbar {
  position: fixed;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJZAQ0v2Lv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover,
.cid-tJZAQ0v2Lv .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover span {
  color: white;
}
.cid-tJZAQ0v2Lv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJZAQ0v2Lv .nav-link {
  position: relative;
}
.cid-tJZAQ0v2Lv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown-menu,
.cid-tJZAQ0v2Lv .navbar.opened {
  background: #ffffff !important;
}
.cid-tJZAQ0v2Lv .nav-item:focus,
.cid-tJZAQ0v2Lv .nav-link:focus {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJZAQ0v2Lv .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: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.opened {
  transition: all 0.3s;
}
.cid-tJZAQ0v2Lv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJZAQ0v2Lv .navbar .navbar-logo img {
  width: auto;
}
.cid-tJZAQ0v2Lv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJZAQ0v2Lv .navbar.collapsed {
  justify-content: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJZAQ0v2Lv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJZAQ0v2Lv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJZAQ0v2Lv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJZAQ0v2Lv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJZAQ0v2Lv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJZAQ0v2Lv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown-item.active,
.cid-tJZAQ0v2Lv .dropdown-item:active {
  background-color: transparent;
}
.cid-tJZAQ0v2Lv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJZAQ0v2Lv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJZAQ0v2Lv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJZAQ0v2Lv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJZAQ0v2Lv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJZAQ0v2Lv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar {
    height: 70px;
  }
  .cid-tJZAQ0v2Lv .navbar.opened {
    height: auto;
  }
  .cid-tJZAQ0v2Lv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5qB87Vro3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #202020;
}
.cid-u5qB87Vro3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qB87Vro3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .container {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .content-wrapper {
    margin-bottom: 66px;
  }
}
.cid-u5qB87Vro3 .content-wrapper .content-wrap {
  margin-bottom: 66px;
}
.cid-u5qB87Vro3 .content-wrapper .content-wrap .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  margin-bottom: 16px;
  background-color: #ffffff;
}
.cid-u5qB87Vro3 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u5qB87Vro3 .content-wrapper .content-wrap .text-wrap .mbr-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-u5qB87Vro3 .content-wrapper .content-wrap .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .content-wrapper .card-wrapper {
    display: block;
  }
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper .number-wrap {
  position: relative;
  width: 72px;
  display: inline-flex;
  justify-content: center;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .content-wrapper .card-wrapper .number-wrap {
    margin: 0;
    display: block;
    width: 100%;
    margin-bottom: 28px;
  }
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper .number-wrap .mbr-number {
  position: relative;
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c7b1ff;
  border-radius: 100%;
  z-index: 1;
  margin-bottom: 0;
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper .number-wrap::before {
  content: '';
  position: absolute;
  top: 1px;
  width: 1px;
  height: 200vh;
  background-color: #ffffff;
  opacity: .33;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .content-wrapper .card-wrapper .number-wrap::before {
    display: none;
  }
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper .card-wrap .card-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .content-wrapper .card-wrapper .card-wrap .card-title {
    margin-bottom: 28px;
  }
}
.cid-u5qB87Vro3 .content-wrapper .card-wrapper .card-wrap .card-text {
  margin-bottom: 0;
}
.cid-u5qB87Vro3 .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .image-wrapper {
    justify-content: center;
  }
}
.cid-u5qB87Vro3 .image-wrapper .image-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border: 1px solid #bbbbbb;
  border-radius: 3rem !important;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .image-wrapper .image-wrap {
    border-radius: 2rem !important;
  }
}
.cid-u5qB87Vro3 .image-wrapper .image-wrap img {
  width: 300px;
  height: 600px;
  border-radius: 3rem !important;
  border: 10px solid #141414;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u5qB87Vro3 .image-wrapper .image-wrap img {
    width: 200px;
    height: 400px;
    border-radius: 2rem !important;
    border: 6px solid #141414;
  }
}
.cid-u5qB87Vro3 .mbr-desc {
  color: #202020;
}
.cid-u5qB87Vro3 .mbr-section-title {
  color: #ffffff;
}
.cid-u5qB87Vro3 .mbr-text {
  color: #ffffff;
}
.cid-u5qB87Vro3 .card-title {
  color: #ffffff;
}
.cid-u5qB87Vro3 .card-text {
  color: #ffffff;
}
.cid-u5qB87Vro3 .card-number {
  color: #202020;
}
.cid-u5qzcRfytT {
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-u5qzcRfytT .container-fluid {
    padding-left: 0;
  }
}
.cid-u5qzcRfytT .mbr-text,
.cid-u5qzcRfytT .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-u5qzcRfytT .mbr-text,
  .cid-u5qzcRfytT .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u5qzcRfytT .mbr-text,
  .cid-u5qzcRfytT .mbr-section-title {
    text-align: center;
  }
}
.cid-u5qzcRfytT a.btn {
  height: 100%;
  margin: 0;
}
.cid-u5qzcRfytT .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-u5qzcRfytT .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u5qzcRfytT .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u5qzcRfytT .justify-content-center {
  align-items: center;
}
.cid-u5qzd9rmdo {
  background-color: #fafafa;
}
.cid-u5qzd9rmdo .mbr-text,
.cid-u5qzd9rmdo .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-u5qzd9rmdo .mbr-text,
  .cid-u5qzd9rmdo .mbr-section-title {
    text-align: center;
  }
}
.cid-u5qzd9rmdo a.btn {
  height: 100%;
  margin: 0;
}
.cid-u5qzd9rmdo .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-u5qzd9rmdo .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u5qzd9rmdo .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-u5qzd9rmdo .content-wrapper {
    flex-direction: column-reverse;
  }
}
.cid-u5qzd9rmdo .justify-content-center {
  align-items: center;
}
.cid-u5qAcca7rU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5qAcca7rU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qAcca7rU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-u5qAcca7rU .container {
    padding: 0 12px;
  }
}
.cid-u5qAcca7rU .row {
  justify-content: center;
}
.cid-u5qAcca7rU .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .card {
    margin-bottom: 32px;
  }
}
.cid-u5qAcca7rU .card .card_1 {
  background-color: #fdf2ec;
}
.cid-u5qAcca7rU .card .card_2 {
  background-color: #f8f3ff;
}
.cid-u5qAcca7rU .card .card_3 {
  background-color: #ecf7fd;
}
.cid-u5qAcca7rU .card .card-wrapper {
  padding: 32px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .card .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-u5qAcca7rU .card .card-wrapper .best-price {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
}
.cid-u5qAcca7rU .card .card-wrapper .best-price .mbr-best {
  display: inline-flex;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 4px 10px;
  background-color: #e3b4fa;
}
.cid-u5qAcca7rU .card .card-wrapper .title-wrap {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .card .card-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-u5qAcca7rU .card .card-wrapper .title-wrap .mbr-card-title {
  min-width: 150px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u5qAcca7rU .card .card-wrapper .title-wrap .mbr-card-title {
    min-width: 130px;
  }
}
.cid-u5qAcca7rU .card .card-wrapper .title-wrap .mbr-price {
  line-height: 100%;
  margin-bottom: 0;
}
.cid-u5qAcca7rU .card .card-wrapper .title-wrap .mbr-desc {
  margin: 16px 0 0;
}
.cid-u5qAcca7rU .card .card-wrapper .list-wrap .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cid-u5qAcca7rU .card .card-wrapper .list-wrap .list-item .mbr-list {
  margin-bottom: 0;
}
.cid-u5qAcca7rU .card .card-wrapper .list-wrap .list-item .dot {
  height: 95%;
  width: 100%;
  border-bottom: 1px dashed #666666;
}
.cid-u5qAcca7rU .card .card-wrapper .list-wrap .list-item .mbr-iconfont {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-left: 12px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6928;
  color: #ffffff;
}
.cid-u5qAcca7rU .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-u5qAcca7rU .mbr-best,
.cid-u5qAcca7rU .best-price {
  color: #222222;
  text-align: center;
}
.cid-u5qAcca7rU .mbr-card-title {
  color: #222222;
}
.cid-u5qAcca7rU .mbr-price {
  color: #222222;
  text-align: center;
}
.cid-u5qAcca7rU .mbr-desc {
  color: #222222;
  text-align: center;
}
.cid-u5qAcca7rU .mbr-list {
  color: #222222;
}
.cid-u5qAcca7rU .mbr-card-title,
.cid-u5qAcca7rU .mbr-section-btn {
  text-align: center;
}
.cid-u5qAVaV3WU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #d8f6ff;
}
.cid-u5qAVaV3WU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qAVaV3WU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5qAVaV3WU .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-u5qAVaV3WU .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-u5qAVaV3WU .container {
    padding: 0 20px;
  }
}
.cid-u5qAVaV3WU .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-u5qAVaV3WU .content-wrapper {
    padding: 46px 0;
  }
}
.cid-u5qAVaV3WU .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-u5qAVaV3WU .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u5qAVaV3WU .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u5qAVaV3WU .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 20px;
    width: 100%;
  }
}
.cid-u5qAVaV3WU .content-wrapper .image-wrapper img {
  display: inline-flex;
  width: 50%;
  border-radius: 20px !important;
  object-fit: cover;
  height: 280px;
}
@media (max-width: 992px) {
  .cid-u5qAVaV3WU .content-wrapper .image-wrapper img {
    width: 100%;
  }
}
.cid-u5qAVaV3WU .content-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-u5qAVaV3WU .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-u5qAVaV3WU .mbr-section-title {
  color: #000000;
}
.cid-u5qAVaV3WU .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-u5qAVaV3WU .mbr-text,
.cid-u5qAVaV3WU .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-u5qAVaV3WU .mbr-section-title,
.cid-u5qAVaV3WU .mbr-section-btn,
.cid-u5qAVaV3WU .image-wrapper {
  text-align: center;
}
.cid-u5qAYnhraW {
  overflow: hidden;
  background-color: #fffa76;
}
.cid-u5qAYnhraW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qAYnhraW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .container {
    padding: 0 24px;
  }
}
.cid-u5qAYnhraW .card {
  justify-content: center;
}
.cid-u5qAYnhraW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .title-wrapper .mbr-section-title {
    margin-bottom: 80px;
  }
}
.cid-u5qAYnhraW .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-u5qAYnhraW .image-wrapper .image-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border: 1px solid #bbbbbb;
  border-radius: 3rem !important;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .image-wrapper .image-wrap {
    border-radius: 2rem !important;
  }
}
.cid-u5qAYnhraW .image-wrapper .image-wrap img {
  width: 300px;
  height: 600px;
  border-radius: 3rem !important;
  border: 10px solid #141414;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .image-wrapper .image-wrap img {
    width: 200px;
    height: 400px;
    border-radius: 2rem !important;
    border: 6px solid #141414;
  }
}
.cid-u5qAYnhraW .image-wrapper .block-wrap {
  position: absolute;
  width: 180px;
  height: 120%;
  transform: rotate(-30deg);
  background-color: #202020;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .image-wrapper .block-wrap {
    width: 100px;
  }
}
.cid-u5qAYnhraW .image-wrapper .mbr-iconfont {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 100%;
  font-size: 56px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202020;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .image-wrapper .mbr-iconfont {
    display: none;
  }
}
.cid-u5qAYnhraW .image-wrapper .icon_1 {
  border-radius: 1rem;
  top: 6rem;
  left: 5%;
}
.cid-u5qAYnhraW .image-wrapper .icon_2 {
  bottom: 6rem;
  left: 5%;
}
.cid-u5qAYnhraW .image-wrapper .icon_3 {
  bottom: 10rem;
  right: 0;
}
@media (max-width: 992px) {
  .cid-u5qAYnhraW .text-wrapper {
    margin-top: 80px;
  }
}
.cid-u5qAYnhraW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5qAYnhraW .mbr-section-title {
  color: #202020;
}
.cid-u5qAYnhraW .mbr-text,
.cid-u5qAYnhraW .text-wrap {
  color: #202020;
}
.cid-u5qBinUyyn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u5qBinUyyn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qBinUyyn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5qBinUyyn .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u5qBinUyyn .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u5qBinUyyn .container {
    padding: 0 24px;
  }
}
.cid-u5qBinUyyn .content-wrapper {
  padding: 32px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 700px;
}
@media (max-width: 992px) {
  .cid-u5qBinUyyn .content-wrapper {
    padding: 0;
  }
}
.cid-u5qBinUyyn .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .75rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u5qBinUyyn .content-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 35%;
  padding: 32px;
  background-color: #ffffff;
  border-radius: .75rem !important;
}
@media (max-width: 1200px) {
  .cid-u5qBinUyyn .content-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-u5qBinUyyn .content-wrapper .card-wrap {
    padding: 24px;
    width: 100%;
  }
}
.cid-u5qBinUyyn .content-wrapper .card-wrap .icon-wrapper {
  margin-bottom: 24px;
}
.cid-u5qBinUyyn .content-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #47b5ed;
  color: #ffffff;
  font-size: 32px;
}
.cid-u5qBinUyyn .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-u5qBinUyyn .content-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-u5qBinUyyn .mbr-section-title {
  color: #141414;
}
.cid-u5qBinUyyn .mbr-desc {
  color: #141414;
}
.cid-u5qBinUyyn .mbr-text {
  color: #141414;
}
.cid-u5qCnriXG6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u5qCnriXG6 .container {
    padding: 0 22px;
  }
}
.cid-u5qCnriXG6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  padding: 5px;
}
@media (max-width: 767px) {
  .cid-u5qCnriXG6 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u5qCnriXG6 .embla__slide .slide-content {
  width: 100%;
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-u5qCnriXG6 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5qCnriXG6 .embla__slide .slide-content .item-content {
    padding: 10px 20px;
  }
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content:hover .item-number,
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content:focus .item-number {
  -webkit-text-stroke-color: transparent;
  -webkit-text-fill-color: #000000;
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content:hover .icon-wrapper .mbr-iconfont,
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content:focus .icon-wrapper .mbr-iconfont {
  transform: rotate(0);
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content .item-number {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000000;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease-in-out;
  min-width: 45px;
  margin-bottom: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-u5qCnriXG6 .embla__slide .slide-content .item-content .item-number {
    min-width: 35px;
  }
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content .item-title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-u5qCnriXG6 .embla__slide .slide-content .item-content .icon-wrapper {
    display: none;
  }
}
.cid-u5qCnriXG6 .embla__slide .slide-content .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 30px;
  transform: rotate(-45deg);
  margin-left: 20px;
  color: #22a5e5;
  transition: all 0.3s ease-in-out;
}
.cid-u5qCnriXG6 .embla__slide .slide-content a {
  display: block;
}
.cid-u5qCnriXG6 .embla__button--next,
.cid-u5qCnriXG6 .embla__button--prev {
  display: flex;
}
.cid-u5qCnriXG6 .embla__button {
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: #4479d9 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .7 !important;
}
.cid-u5qCnriXG6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u5qCnriXG6 .embla__button:hover {
  opacity: 1 !important;
}
.cid-u5qCnriXG6 .embla__button.embla__button--prev {
  left: 0;
}
@media (max-width: 992px) {
  .cid-u5qCnriXG6 .embla__button.embla__button--prev {
    left: 20px;
  }
}
.cid-u5qCnriXG6 .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 992px) {
  .cid-u5qCnriXG6 .embla__button.embla__button--next {
    right: 20px;
  }
}
.cid-u5qCnriXG6 .card {
  justify-content: center;
}
.cid-u5qCnriXG6 .embla {
  position: relative;
  width: 100%;
  padding: 0 40px;
  margin-right: 32px;
}
@media (max-width: 992px) {
  .cid-u5qCnriXG6 .embla {
    margin: 0 0 20px;
    padding: 0;
  }
}
.cid-u5qCnriXG6 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u5qCnriXG6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u5qCnriXG6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u5qCnriXG6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u5qCnriXG6 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-u5qCnriXG6 .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-u5qCnriXG6 .mbr-section-title {
  color: #ffffff;
}
.cid-u5qCnriXG6 .mbr-text {
  color: #232323;
}
.cid-u5qCnriXG6 .mbr-section-title,
.cid-u5qCnriXG6 .mbr-section-btn {
  color: #232323;
}
.cid-u5qCnriXG6 .item-title {
  color: #22a5e5;
}
.cid-tJZLmfRAUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tJZLmfRAUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZLmfRAUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZLmfRAUX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJZLmfRAUX .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;
}
@media (max-width: 767px) {
  .cid-tJZLmfRAUX .row {
    text-align: center;
  }
  .cid-tJZLmfRAUX .social-row {
    justify-content: center;
  }
}
.cid-tJZLmfRAUX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJZLmfRAUX .mbr-text {
  color: #bbbbbb;
}
.cid-tJZLmfRAUX .mbr-iconfont {
  color: black;
}
.cid-u5qM514LW5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u5qM514LW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qM514LW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qM514LW5 .container {
    padding: 0 16px;
  }
}
.cid-u5qM514LW5 .title-wrapper {
  position: relative;
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-u5qM514LW5 .title-wrapper {
    padding-right: 0;
  }
}
.cid-u5qM514LW5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-u5qM514LW5 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u5qM514LW5 .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-u5qM514LW5 .title-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u5qM514LW5 .title-wrapper .line {
  position: absolute;
  left: 70px;
  width: 1px;
  height: 100vh;
  border-left: 2px dashed #08323c;
}
@media (max-width: 992px) {
  .cid-u5qM514LW5 .title-wrapper .line {
    display: none;
  }
}
.cid-u5qM514LW5 .card {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-u5qM514LW5 .card {
    margin-bottom: 40px;
  }
}
.cid-u5qM514LW5 .card .icon-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u5qM514LW5 .card .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-u5qM514LW5 .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-u5qM514LW5 .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9fdbf8;
  opacity: .2;
  border-radius: 100%;
}
.cid-u5qM514LW5 .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #9fdbf8;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-u5qM514LW5 .card .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u5qM514LW5 .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5qM514LW5 .mbr-section-title {
  color: #08323C;
}
.cid-u5qM514LW5 .mbr-text {
  color: #08323C;
}
.cid-u5qMloEf3t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u5qMloEf3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qMloEf3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qMloEf3t .container {
    padding: 0 16px;
  }
}
.cid-u5qMloEf3t .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-u5qMloEf3t .title-wrapper .title-wrap {
  position: relative;
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-u5qMloEf3t .title-wrapper .title-wrap {
    padding-right: 0;
  }
}
.cid-u5qMloEf3t .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-u5qMloEf3t .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u5qMloEf3t .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-u5qMloEf3t .title-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u5qMloEf3t .title-wrapper .line {
  position: absolute;
  top: -24rem;
  left: 70px;
  width: 80%;
  height: 80%;
  border: 2px dashed #08323c;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 16px;
}
@media (max-width: 992px) {
  .cid-u5qMloEf3t .title-wrapper .line {
    display: none;
  }
}
.cid-u5qMloEf3t .card .card-wrapper {
  padding: 24px;
  margin-bottom: 32px;
  background-color: #9fdbf8;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-u5qMloEf3t .card .card-wrapper {
    margin-bottom: 20px;
  }
}
.cid-u5qMloEf3t .card .card-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u5qMloEf3t .card .card-wrapper .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-u5qMloEf3t .card .card-wrapper .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-u5qMloEf3t .card .card-wrapper .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-u5qMloEf3t .card .card-wrapper .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-u5qMloEf3t .card .card-wrapper .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u5qMloEf3t .card .card-wrapper .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5qMloEf3t .mbr-section-title {
  color: #08323C;
}
.cid-u5qMloEf3t .mbr-text {
  color: #08323C;
}
.cid-u5qMvYIn4G {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-u5qMvYIn4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5qMvYIn4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u5qMvYIn4G .container {
    padding: 0 16px;
  }
}
.cid-u5qMvYIn4G .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u5qMvYIn4G .card {
    margin-bottom: 60px;
  }
}
.cid-u5qMvYIn4G .card .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u5qMvYIn4G .card .icon-wrapper {
    margin-bottom: 30px;
  }
}
.cid-u5qMvYIn4G .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-u5qMvYIn4G .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: .6;
  border-radius: 100%;
}
.cid-u5qMvYIn4G .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #ffffff;
  color: #08323c;
  border-radius: 100%;
  z-index: 1;
}
.cid-u5qMvYIn4G .card .content-wrapper .mbr-section-title {
  margin-bottom: 14px;
}
.cid-u5qMvYIn4G .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u5qMvYIn4G .mbr-section-title {
  color: #08323C;
}
.cid-u5qMvYIn4G .mbr-text {
  color: #08323C;
}
.cid-tJZAQ0v2Lv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJZAQ0v2Lv nav.navbar {
  position: fixed;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJZAQ0v2Lv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover,
.cid-tJZAQ0v2Lv .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover span {
  color: white;
}
.cid-tJZAQ0v2Lv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJZAQ0v2Lv .nav-link {
  position: relative;
}
.cid-tJZAQ0v2Lv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown-menu,
.cid-tJZAQ0v2Lv .navbar.opened {
  background: #ffffff !important;
}
.cid-tJZAQ0v2Lv .nav-item:focus,
.cid-tJZAQ0v2Lv .nav-link:focus {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJZAQ0v2Lv .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: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.opened {
  transition: all 0.3s;
}
.cid-tJZAQ0v2Lv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJZAQ0v2Lv .navbar .navbar-logo img {
  width: auto;
}
.cid-tJZAQ0v2Lv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJZAQ0v2Lv .navbar.collapsed {
  justify-content: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJZAQ0v2Lv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJZAQ0v2Lv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJZAQ0v2Lv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJZAQ0v2Lv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJZAQ0v2Lv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJZAQ0v2Lv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown-item.active,
.cid-tJZAQ0v2Lv .dropdown-item:active {
  background-color: transparent;
}
.cid-tJZAQ0v2Lv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJZAQ0v2Lv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJZAQ0v2Lv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJZAQ0v2Lv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJZAQ0v2Lv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJZAQ0v2Lv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar {
    height: 70px;
  }
  .cid-tJZAQ0v2Lv .navbar.opened {
    height: auto;
  }
  .cid-tJZAQ0v2Lv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uh4R3ALsck {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ade4ff;
}
.cid-uh4R3ALsck .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh4R3ALsck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uh4R3ALsck .row {
  justify-content: center;
}
.cid-uh4R3ALsck .mbr-form {
  padding: 40px 45px;
}
@media (max-width: 992px) {
  .cid-uh4R3ALsck .mbr-form {
    padding: 32px 24px;
  }
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .mbr-section-title {
  margin-bottom: 11px;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .mbr-text {
  margin-bottom: 22px;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group {
  margin-bottom: 25px !important;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-control-label {
  width: 100%;
  padding: 0 10px 5px 0;
  margin: 0;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-control {
  padding: 0 20px;
  background-color: #ffffff;
  min-height: 60px;
  border-radius: 100px;
  box-shadow: none;
  border: none !important;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-control::placeholder {
  color: #2e5986;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-control:hover,
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-control:focus {
  border: none !important;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin: 0;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-check .form-check-input {
  border-radius: 0;
  border: 2px solid #2e5986;
  background-color: transparent;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group .form-check .form-check-label {
  width: 100%;
  padding-top: 4px;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .form-group textarea {
  padding: 10px 20px 0;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .mbr-section-btn {
  width: 100% !important;
}
.cid-uh4R3ALsck .mbr-form .dragArea.row .mbr-section-btn .btn {
  min-height: 54px;
}
.cid-uh4R3ALsck .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-uh4R3ALsck .mbr-text {
  color: #6e716f;
  text-align: center;
}
.cid-uh4R3ALsck LABEL {
  color: #000000;
}
.cid-uh4R3ALsck H1 {
  color: #2e5986;
}
.cid-uh4R3ALsck P {
  color: #232323;
}
.cid-tJZLmfRAUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tJZLmfRAUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZLmfRAUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZLmfRAUX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJZLmfRAUX .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;
}
@media (max-width: 767px) {
  .cid-tJZLmfRAUX .row {
    text-align: center;
  }
  .cid-tJZLmfRAUX .social-row {
    justify-content: center;
  }
}
.cid-tJZLmfRAUX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJZLmfRAUX .mbr-text {
  color: #bbbbbb;
}
.cid-tJZLmfRAUX .mbr-iconfont {
  color: black;
}
.cid-tJZAQ0v2Lv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJZAQ0v2Lv nav.navbar {
  position: fixed;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJZAQ0v2Lv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover,
.cid-tJZAQ0v2Lv .dropdown-item:focus {
  background: #4479d9 !important;
  color: white !important;
}
.cid-tJZAQ0v2Lv .dropdown-item:hover span {
  color: white;
}
.cid-tJZAQ0v2Lv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJZAQ0v2Lv .nav-link {
  position: relative;
}
.cid-tJZAQ0v2Lv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJZAQ0v2Lv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown-menu,
.cid-tJZAQ0v2Lv .navbar.opened {
  background: #ffffff !important;
}
.cid-tJZAQ0v2Lv .nav-item:focus,
.cid-tJZAQ0v2Lv .nav-link:focus {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJZAQ0v2Lv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJZAQ0v2Lv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJZAQ0v2Lv .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: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.opened {
  transition: all 0.3s;
}
.cid-tJZAQ0v2Lv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJZAQ0v2Lv .navbar .navbar-logo img {
  width: auto;
}
.cid-tJZAQ0v2Lv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJZAQ0v2Lv .navbar.collapsed {
  justify-content: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJZAQ0v2Lv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJZAQ0v2Lv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJZAQ0v2Lv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJZAQ0v2Lv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJZAQ0v2Lv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJZAQ0v2Lv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJZAQ0v2Lv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJZAQ0v2Lv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJZAQ0v2Lv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJZAQ0v2Lv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJZAQ0v2Lv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJZAQ0v2Lv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJZAQ0v2Lv .dropdown-item.active,
.cid-tJZAQ0v2Lv .dropdown-item:active {
  background-color: transparent;
}
.cid-tJZAQ0v2Lv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJZAQ0v2Lv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tJZAQ0v2Lv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJZAQ0v2Lv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJZAQ0v2Lv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJZAQ0v2Lv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJZAQ0v2Lv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJZAQ0v2Lv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJZAQ0v2Lv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJZAQ0v2Lv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJZAQ0v2Lv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJZAQ0v2Lv .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-tJZAQ0v2Lv .navbar {
    height: 70px;
  }
  .cid-tJZAQ0v2Lv .navbar.opened {
    height: auto;
  }
  .cid-tJZAQ0v2Lv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxoxUzpNlh {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uxoxUzpNlh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxoxUzpNlh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNNQgFohqA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #22a5e5;
}
.cid-uNNQgFohqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNNQgFohqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uNNQgFohqA .container {
    padding: 0 16px;
  }
}
.cid-uNNQgFohqA .card {
  justify-content: center;
}
.cid-uNNQgFohqA .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #ade4ff;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uNNQgFohqA .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNNQgFohqA .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uNNQgFohqA .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uNNQgFohqA .mbr-section-title {
  color: #000000;
}
.cid-uNNQgFohqA .mbr-text {
  color: #000000;
}
.cid-uNNQgFohqA .mbr-desc {
  color: #ffffff;
}
.cid-uNNQgFohqA .mbr-section-title,
.cid-uNNQgFohqA .title-wrapper {
  text-align: center;
  color: #232323;
}
.cid-uNNQgFohqA .mbr-text,
.cid-uNNQgFohqA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uh4SQ2Gmrh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uh4SQ2Gmrh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uh4SQ2Gmrh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uh4SQ2Gmrh .container {
    padding: 0 12px;
  }
}
.cid-uh4SQ2Gmrh .row {
  justify-content: center;
}
.cid-uh4SQ2Gmrh .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .card {
    margin-bottom: 32px;
  }
}
.cid-uh4SQ2Gmrh .card .card_1 {
  background-color: #ddf4ff;
}
.cid-uh4SQ2Gmrh .card .card_2 {
  background-color: #ade4ff;
}
.cid-uh4SQ2Gmrh .card .card_3 {
  background-color: #ecf7fd;
}
.cid-uh4SQ2Gmrh .card .card-wrapper {
  padding: 32px;
  border: 3px solid #bed3f9;
  box-shadow: 4px 4px #bed3f9;
  border-radius: 32px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: visible;
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .card .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uh4SQ2Gmrh .card .card-wrapper .best-price {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .best-price .mbr-best {
  display: inline-flex;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 7px 50px;
  background-color: #ff6928;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap {
    margin-bottom: 20px;
  }
}
.cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap .mbr-card-title {
  min-width: 150px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap .mbr-card-title {
    min-width: 130px;
  }
}
.cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap .mbr-price {
  line-height: 100%;
  margin-bottom: 0;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .title-wrap .mbr-desc {
  margin: 16px 0 0;
  font-size: 1.5rem;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .list-wrap .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .list-wrap .list-item .mbr-list {
  margin-bottom: 0;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .list-wrap .list-item .dot {
  height: 95%;
  width: 30%;
  border-bottom: 1px dashed #666666;
}
.cid-uh4SQ2Gmrh .card .card-wrapper .list-wrap .list-item .mbr-iconfont {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-left: 12px;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6928;
  color: #ffffff;
}
.cid-uh4SQ2Gmrh .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uh4SQ2Gmrh .mbr-best,
.cid-uh4SQ2Gmrh .best-price {
  color: #ffffff;
  text-align: center;
}
.cid-uh4SQ2Gmrh .mbr-card-title {
  color: #222222;
}
.cid-uh4SQ2Gmrh .mbr-price {
  color: #222222;
  text-align: center;
}
.cid-uh4SQ2Gmrh .mbr-desc {
  color: #222222;
  text-align: center;
}
.cid-uh4SQ2Gmrh .mbr-list {
  color: #222222;
}
.cid-uh4SQ2Gmrh .mbr-card-title,
.cid-uh4SQ2Gmrh .mbr-section-btn {
  text-align: center;
}
.cid-uh4SQ2Gmrh .seco {
  width: 50%;
}
.cid-uh4SQ2Gmrh .mbr-section-btn {
  margin-top: 24px;
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .cid-uh4SQ2Gmrh .mbr-section-btn {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.cid-uh4SQ2Gmrh .custom-section-btn {
  width: 95%;
  margin-left: 0;
}
.cid-uh4SQ2Gmrh .custom-section-btn .btn {
  width: 100%;
  min-height: 85px;
}
.cid-uh4SQ2Gmrh .mb4 {
  padding-bottom: 2rem;
}
.cid-uTzWkyorml {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uTzWkyorml .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTzWkyorml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTzWkyorml .mbr-section-subtitle {
  text-align: justify;
}
.cid-uhzsPf2cGI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uhzsPf2cGI .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-uhzsPf2cGI .wrap-img {
  border-bottom: 1px solid #e2e3e9;
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-uhzsPf2cGI .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-uhzsPf2cGI .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-uhzsPf2cGI .shadow:hover .mbr-iconfont,
.cid-uhzsPf2cGI .shadow:hover .number,
.cid-uhzsPf2cGI .shadow:hover .card-title {
  color: #47b5ed !important;
}
.cid-uhzsPf2cGI .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-uhzsPf2cGI .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-uhzsPf2cGI .card-title {
  color: #14142b;
  margin-bottom: 6px;
  text-align: center;
  transition: 0.35s;
}
.cid-uhzsPf2cGI .title-block {
  margin-bottom: 56px;
}
.cid-uhzsPf2cGI .card-text {
  color: #8c8c95;
  text-align: center;
}
.cid-uhzsPf2cGI H3 {
  color: #14142b;
  text-align: center;
}
.cid-uhzsPf2cGI .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 39px 32px 48px;
}
.cid-uhzsPf2cGI .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-uhzsPf2cGI .link-title {
  display: inline-block;
}
.cid-uhzsPf2cGI .episode {
  color: #ffffff;
}
.cid-uhzsPf2cGI .img-title {
  color: #ffffff;
}
.cid-uhzsPf2cGI .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-uhzsPf2cGI .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uhzsPf2cGI .mbr-section-title {
  color: #8c8c95;
}
@media (max-width: 860px) {
  .cid-uhzsPf2cGI .title-block {
    flex-direction: column;
  }
  .cid-uhzsPf2cGI .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
.cid-uhzsPf2cGI .item.features-image {
  margin-top: 35px;
}
.cid-uhzsPf2cGI .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-uhzsPf2cGI .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-uhzsPf2cGI .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-uhzsPf2cGI .item.features-image:nth-child(4) {
    margin-top: 35px;
  }
  .cid-uhzsPf2cGI .item.features-image:nth-child(3) {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .cid-uhzsPf2cGI .item.features-image:nth-child(2) {
    margin-top: 35px;
  }
}
.cid-uKBbkzxrDE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ddf4ff;
}
.cid-uKBbkzxrDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKBbkzxrDE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKBbkzxrDE .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uKBbkzxrDE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKBbkzxrDE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKBbkzxrDE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKBbkzxrDE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKBbkzxrDE .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uKBbkzxrDE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tJZLmfRAUX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tJZLmfRAUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJZLmfRAUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tJZLmfRAUX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tJZLmfRAUX .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;
}
@media (max-width: 767px) {
  .cid-tJZLmfRAUX .row {
    text-align: center;
  }
  .cid-tJZLmfRAUX .social-row {
    justify-content: center;
  }
}
.cid-tJZLmfRAUX .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tJZLmfRAUX .list {
    margin-bottom: 0rem;
  }
}
.cid-tJZLmfRAUX .mbr-text {
  color: #bbbbbb;
}
.cid-tJZLmfRAUX .mbr-iconfont {
  color: black;
}
