body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: #6592e6 !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: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u7oREkdiKX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7oREkdiKX .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uj53KfyAsL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj5fxKGb7o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugj1dcPww1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugj1dcPww1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugj1dcPww1 .row {
  flex-direction: row-reverse;
}
.cid-ugj1dcPww1 img {
  width: 100%;
}
.cid-ugj2JVWsa9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uivzgvhDA0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
@media (max-width: 991px) {
  .cid-uivzgvhDA0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uivzgvhDA0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uivzgvhDA0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhVc5GrCFO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugj5SzTHAI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7rWU9XkqT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7rWU9XkqT .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicDU8eKEj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7rXfEKy5t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rXfEKy5t .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rXfEKy5t img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rXfEKy5t .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CAaXpPzL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6CAaXpPzL .mbr-section-subtitle {
  text-align: center;
}
.cid-u6CAaXpPzL .mbr-text {
  text-align: center;
}
.cid-u7ru1L2O1p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7ru1L2O1p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7ru1L2O1p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7ru1L2O1p .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8YLcABk4B {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8YM6NGrMF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8YM6NGrMF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8YM6NGrMF .row {
  flex-direction: row-reverse;
}
.cid-u8YM6NGrMF img {
  width: 100%;
}
.cid-u8YLdiTc9z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8YLe0RXC0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8YOcvCASO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8YOcvCASO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8YOcvCASO .row {
  flex-direction: row-reverse;
}
.cid-u8YOcvCASO img {
  width: 100%;
}
.cid-u8YPRRr52A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8YQfsAy1X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8YQfsAy1X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8YQfsAy1X .row {
  flex-direction: row-reverse;
}
.cid-u8YQfsAy1X img {
  width: 100%;
}
.cid-u8YQJ5zLOt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8YRivszQu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8YRivszQu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8YRivszQu .row {
  flex-direction: row-reverse;
}
.cid-u8YRivszQu img {
  width: 100%;
}
.cid-u8YROC0ibU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8YReYJr8L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8YReYJr8L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8YReYJr8L .row {
  flex-direction: row-reverse;
}
.cid-u8YReYJr8L img {
  width: 100%;
}
.cid-u93GMnWdTo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u93HtBvEQO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u93HtBvEQO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u93HtBvEQO .row {
  flex-direction: row-reverse;
}
.cid-u93HtBvEQO img {
  width: 100%;
}
.cid-u93HvatLqF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u93HvatLqF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u93HvatLqF .row {
  flex-direction: row-reverse;
}
.cid-u93HvatLqF img {
  width: 100%;
}
.cid-ujkfaiLEbK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ujkfaiLEbK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujkfaiLEbK .row {
  flex-direction: row-reverse;
}
.cid-ujkfaiLEbK img {
  width: 100%;
}
.cid-u93IOKsonp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6CAaZf20u {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CAaZf20u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CAaZf20u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CAaZf20u .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7rwbAgjcB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rwbAgjcB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rwbAgjcB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rwbAgjcB .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7rwbAgjcB .mbr-text {
  text-align: left;
}
.cid-u8oRk8wouI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8oRk8wouI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8oRk8wouI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8oRk8wouI .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8oRk8wouI .mbr-text {
  text-align: left;
}
.cid-u6CAb05pdU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CAb05pdU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CAb05pdU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CAb05pdU .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8oUzq1xUG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8oUzq1xUG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8oUzq1xUG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8oUzq1xUG .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8oKlhKiXL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8oKlhKiXL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8oKlhKiXL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8oKlhKiXL .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7rAMIJcKX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .cid-u7rAMIJcKX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rAMIJcKX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rAMIJcKX .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CAb1XyLi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CAb1XyLi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CAb1XyLi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CAb1XyLi .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CAb2yHKJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u6CAb2yHKJ .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6CAb31E5e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
}
.cid-u6CAb31E5e .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6CAb3uNer {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CAb3uNer .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CAb3uNer img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CAb3uNer .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8pi0906BN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8pi0906BN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8pi0906BN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8pi0906BN .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CAb5PkQ2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CAb5PkQ2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CAb5PkQ2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CAb5PkQ2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8qbhV6wiR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8qbhV6wiR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8qbhV6wiR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8qbhV6wiR .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8qhQFbNrT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8qhQFbNrT .mbr-text {
  text-align: center;
}
.cid-u8vtOrXUoM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u8vtOrXUoM .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8vtECTiqQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8vtECTiqQ img,
.cid-u8vtECTiqQ .item-img {
  width: 100%;
}
.cid-u8vtECTiqQ .item:focus,
.cid-u8vtECTiqQ span:focus {
  outline: none;
}
.cid-u8vtECTiqQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8vtECTiqQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8vtECTiqQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8vtECTiqQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u8vtECTiqQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8vtECTiqQ .mbr-section-title {
  color: #232323;
}
.cid-u8vtECTiqQ .mbr-text,
.cid-u8vtECTiqQ .mbr-section-btn {
  text-align: left;
}
.cid-u8vtECTiqQ .item-title {
  text-align: left;
}
.cid-u8vtECTiqQ .item-subtitle {
  text-align: center;
}
.cid-uevWQxd9sb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uevWQxd9sb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uevWQxd9sb .panel-group {
  border: none;
}
.cid-uevWQxd9sb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uevWQxd9sb .panel-body,
.cid-uevWQxd9sb .card-header {
  padding: 1rem 0;
}
.cid-uevWQxd9sb .panel-title-edit {
  color: #000000;
}
.cid-uevWQxd9sb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uicDRX8CQ3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAvI2HUFF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAvI2HUFF .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicEvVuBqw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7rCQslSBx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rCQslSBx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rCQslSBx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rCQslSBx .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9fWQr0WYe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u9fXwRDtpC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9fXwRDtpC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9fXwRDtpC .row {
  flex-direction: row-reverse;
}
.cid-u9fXwRDtpC img {
  width: 100%;
}
.cid-u9fXzCY676 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-u6xeOpk0Lu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeOpk0Lu .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeOpk0Lu .mbr-text {
  text-align: center;
}
.cid-u6xeRe4VIu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeRe4VIu .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeRe4VIu .mbr-text {
  text-align: center;
}
.cid-u6xeRMa9jJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeRMa9jJ .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeRMa9jJ .mbr-text {
  text-align: center;
}
.cid-u6xeSoj2BE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeSoj2BE .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeSoj2BE .mbr-text {
  text-align: center;
}
.cid-u9g2QaRin3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9g2QaRin3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9g2QaRin3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9g2QaRin3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6xeSVpzbH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeSVpzbH .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeSVpzbH .mbr-text {
  text-align: center;
}
.cid-u9fTUHu9mY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .cid-u9fTUHu9mY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9fTUHu9mY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9fTUHu9mY .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6xeTupaie {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeTupaie .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeTupaie .mbr-text {
  text-align: center;
}
.cid-u6xeU2mdH8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeU2mdH8 .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeU2mdH8 .mbr-text {
  text-align: center;
}
.cid-u6xeUwYKBM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeUwYKBM .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeUwYKBM .mbr-text {
  text-align: center;
}
.cid-u6xeV4YfV6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeV4YfV6 .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeV4YfV6 .mbr-text {
  text-align: center;
}
.cid-u6xeVDKV7z {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeVDKV7z .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeVDKV7z .mbr-text {
  text-align: center;
}
.cid-u6xeWeqWzn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xeWeqWzn .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xeWeqWzn .mbr-text {
  text-align: center;
}
.cid-u6xgDdekiD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6xgDdekiD .mbr-section-subtitle {
  text-align: center;
}
.cid-u6xgDdekiD .mbr-text {
  text-align: center;
}
.cid-u6xvFHPVle {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u6xvFHPVle .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8oZstEgpv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8oZstEgpv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8oZstEgpv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8oZstEgpv .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6vqXfVVbP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vqXfVVbP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vqXfVVbP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vqXfVVbP .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6vqXgkFbf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vqXgkFbf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vqXgkFbf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vqXgkFbf .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6xhmiALjQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6xhmiALjQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6xhmiALjQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6xhmiALjQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8oZYPNe9u {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8oZYPNe9u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8oZYPNe9u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8oZYPNe9u .text-wrapper {
    padding: 2rem;
  }
}
.cid-uew7wXDzp3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uew7wXDzp3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uew7wXDzp3 .row {
  flex-direction: row-reverse;
}
.cid-uew7wXDzp3 img {
  width: 100%;
}
.cid-uew7g2qlK7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-u8p0p1kWA2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8p0p1kWA2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8p0p1kWA2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8p0p1kWA2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6BeWbdWvL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-u6BeWbdWvL .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u6BeWbdWvL .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u6BeWbdWvL .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-u6BeWbdWvL .panel-body,
.cid-u6BeWbdWvL .card-header {
  padding: 1rem 0;
}
.cid-u6BeWbdWvL .panel-title-edit {
  color: #000000;
}
.cid-u8vxukAPKF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8vxukAPKF img,
.cid-u8vxukAPKF .item-img {
  width: 100%;
}
.cid-u8vxukAPKF .item:focus,
.cid-u8vxukAPKF span:focus {
  outline: none;
}
.cid-u8vxukAPKF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8vxukAPKF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8vxukAPKF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8vxukAPKF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u8vxukAPKF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8vxukAPKF .mbr-section-title {
  color: #232323;
}
.cid-u8vxukAPKF .mbr-text,
.cid-u8vxukAPKF .mbr-section-btn {
  text-align: left;
}
.cid-u8vxukAPKF .item-title {
  text-align: left;
}
.cid-u8vxukAPKF .item-subtitle {
  text-align: center;
}
.cid-uew8u5WSou {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe7e7;
}
.cid-uew8u5WSou .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uew8u5WSou .panel-group {
  border: none;
}
.cid-uew8u5WSou .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uew8u5WSou .panel-body,
.cid-uew8u5WSou .card-header {
  padding: 1rem 0;
}
.cid-uew8u5WSou .panel-title-edit {
  color: #000000;
  text-align: center;
}
.cid-uew8u5WSou .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uicEJY0bwo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugArFKi6g9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugArFKi6g9 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicEUsXp9i {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugj6Uy311v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugj6Uy311v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugj6Uy311v .row {
  flex-direction: row-reverse;
}
.cid-ugj6Uy311v img {
  width: 100%;
}
.cid-u7rFRYncwP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rFRYncwP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rFRYncwP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rFRYncwP .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7rItHiCMC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rItHiCMC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rItHiCMC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rItHiCMC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95iKZXe84 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-u7rIuINbMC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rIuINbMC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rIuINbMC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rIuINbMC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7rIBL2gEy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7rIBL2gEy .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6vv4RZFPz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vv4RZFPz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vv4RZFPz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vv4RZFPz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95jwyz7uI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-u6vv4SrTA0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vv4SrTA0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vv4SrTA0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vv4SrTA0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8qCT7pNlP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8qCT7pNlP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8qCT7pNlP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8qCT7pNlP .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8qD6z78zT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8qD6z78zT .mbr-text {
  text-align: center;
}
.cid-u8qD6z78zT P {
  text-align: center;
}
.cid-uicEPVRAU3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAwnKCAMf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAwnKCAMf .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicF61fdja {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8p2edNOwH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8p2edNOwH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8p2edNOwH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8p2edNOwH .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6vv5EqNRl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6vv5EqNRl .mbr-section-subtitle {
  text-align: center;
}
.cid-u6vv5EqNRl .mbr-text {
  text-align: center;
}
.cid-u6yXG5iOED {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXG5iOED .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXG5iOED .mbr-text {
  text-align: center;
}
.cid-u6yXH27jR6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXH27jR6 .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXH27jR6 .mbr-text {
  text-align: center;
}
.cid-u6yXHMX40l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXHMX40l .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXHMX40l .mbr-text {
  text-align: center;
}
.cid-u6yXIyuB0Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXIyuB0Q .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXIyuB0Q .mbr-text {
  text-align: center;
}
.cid-u6yXJg4q2w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXJg4q2w .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXJg4q2w .mbr-text {
  text-align: center;
}
.cid-u6yXK2cAUJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXK2cAUJ .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXK2cAUJ .mbr-text {
  text-align: center;
}
.cid-u6yXKHlvzP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6yXKHlvzP .mbr-section-subtitle {
  text-align: center;
}
.cid-u6yXKHlvzP .mbr-text {
  text-align: center;
}
.cid-u7rLWoWLP4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7rLWoWLP4 .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6vv5EFOwO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vv5EFOwO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vv5EFOwO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vv5EFOwO .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6vv5F96do {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vv5F96do .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vv5F96do img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vv5F96do .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6EsNu5YpO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u6EsNu5YpO .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6EsXZULH2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6EsXZULH2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6EsXZULH2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6EsXZULH2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6Et0YqjUi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6Et0YqjUi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6Et0YqjUi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6Et0YqjUi .text-wrapper {
    padding: 2rem;
  }
}
.cid-u88TbsdD6E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-u88TbsdD6E .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8pkLHbmMp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8pkLHbmMp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8pkLHbmMp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8pkLHbmMp .text-wrapper {
    padding: 2rem;
  }
}
.cid-uewkl7xU8T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uewkl7xU8T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uewkl7xU8T .row {
  flex-direction: row-reverse;
}
.cid-uewkl7xU8T img {
  width: 100%;
}
.cid-uewkAYB6pL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-u8pkJUkjxC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8pkJUkjxC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8pkJUkjxC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8pkJUkjxC .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6EtrRbucc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-u6EtrRbucc .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u6EtrRbucc .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u6EtrRbucc .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-u6EtrRbucc .panel-body,
.cid-u6EtrRbucc .card-header {
  padding: 1rem 0;
}
.cid-u6EtrRbucc .panel-title-edit {
  color: #000000;
}
.cid-u8FzHGDgrk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8FzHGDgrk img,
.cid-u8FzHGDgrk .item-img {
  width: 100%;
}
.cid-u8FzHGDgrk .item:focus,
.cid-u8FzHGDgrk span:focus {
  outline: none;
}
.cid-u8FzHGDgrk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8FzHGDgrk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8FzHGDgrk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8FzHGDgrk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u8FzHGDgrk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8FzHGDgrk .mbr-section-title {
  color: #232323;
}
.cid-u8FzHGDgrk .mbr-text,
.cid-u8FzHGDgrk .mbr-section-btn {
  text-align: left;
}
.cid-u8FzHGDgrk .item-title {
  text-align: left;
}
.cid-u8FzHGDgrk .item-subtitle {
  text-align: center;
}
.cid-u8FzU4E9iF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8FzU4E9iF img,
.cid-u8FzU4E9iF .item-img {
  width: 100%;
}
.cid-u8FzU4E9iF .item:focus,
.cid-u8FzU4E9iF span:focus {
  outline: none;
}
.cid-u8FzU4E9iF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8FzU4E9iF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8FzU4E9iF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8FzU4E9iF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u8FzU4E9iF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8FzU4E9iF .mbr-section-title {
  color: #232323;
}
.cid-u8FzU4E9iF .mbr-text,
.cid-u8FzU4E9iF .mbr-section-btn {
  text-align: left;
}
.cid-u8FzU4E9iF .item-title {
  text-align: left;
}
.cid-u8FzU4E9iF .item-subtitle {
  text-align: center;
}
.cid-uewloDADKN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uewloDADKN .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uewloDADKN .panel-group {
  border: none;
}
.cid-uewloDADKN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uewloDADKN .panel-body,
.cid-uewloDADKN .card-header {
  padding: 1rem 0;
}
.cid-uewloDADKN .panel-title-edit {
  color: #000000;
}
.cid-uewloDADKN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uicFbUVORh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAsvI1IZ2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAsvI1IZ2 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicFlPja7d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugj8RMKd27 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugj8RMKd27 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugj8RMKd27 .row {
  flex-direction: row-reverse;
}
.cid-ugj8RMKd27 img {
  width: 100%;
}
.cid-ugj8TGlZG6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-u7rMr3U72G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7rMr3U72G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7rMr3U72G img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7rMr3U72G .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6vv64EMPC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6vv64EMPC .mbr-section-subtitle {
  text-align: center;
}
.cid-u6vv64EMPC .mbr-text {
  text-align: center;
}
.cid-u6vv64Y8H4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6vv64Y8H4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6vv64Y8H4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6vv64Y8H4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CNOKWAqO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u6CNOKWAqO .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6CO3FxMI7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CO3FxMI7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CO3FxMI7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CO3FxMI7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uiwNP8Iz0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9JUybiMeE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9JUybiMeE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9JUybiMeE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9JUybiMeE .text-wrapper {
    padding: 2rem;
  }
}
.cid-ueqchlyFe2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9K0415swV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9K0415swV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9K0415swV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9K0415swV .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9JVlCdfQN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-u9JVlCdfQN .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ueqeBMWU7j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ueqeBMWU7j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ueqeBMWU7j img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ueqeBMWU7j .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9K01NxyC8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9K01NxyC8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9K01NxyC8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9K01NxyC8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9K725SQmu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9K725SQmu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9K725SQmu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9K725SQmu .text-wrapper {
    padding: 2rem;
  }
}
.cid-uewobVEeUp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebe7e7;
}
@media (max-width: 991px) {
  .cid-uewobVEeUp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uewobVEeUp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uewobVEeUp .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6CP1Sqmlq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6CP1Sqmlq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6CP1Sqmlq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u6CP1Sqmlq .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6COBrtMmb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u6COBrtMmb .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6CPRTeUqg {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u6CPRTeUqg .mbr-section-subtitle {
  text-align: center;
}
.cid-u6CPRTeUqg .mbr-text {
  text-align: center;
}
.cid-uicFhpJAeU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugArb41MFQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugArb41MFQ .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicFqUobxy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8HnbO3SQE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HnbO3SQE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HnbO3SQE .row {
  flex-direction: row-reverse;
}
.cid-u8HnbO3SQE img {
  width: 100%;
}
.cid-u8HldqNBIE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HldqNBIE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HldqNBIE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8HldqNBIE .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8HoEPFPX1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HoEPFPX1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HoEPFPX1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8HoEPFPX1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8HlfuDxoP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HlfuDxoP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HlfuDxoP .row {
  flex-direction: row-reverse;
}
.cid-u8HlfuDxoP img {
  width: 100%;
}
.cid-u8HlfuDxoP .mbr-text {
  text-align: left;
}
.cid-u8HlgyJ849 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HlgyJ849 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HlgyJ849 .row {
  flex-direction: row-reverse;
}
.cid-u8HlgyJ849 img {
  width: 100%;
}
.cid-u8HlgyJ849 .mbr-text {
  text-align: left;
}
.cid-u8Hlh5BTtq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8Hlh5BTtq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8Hlh5BTtq .row {
  flex-direction: row-reverse;
}
.cid-u8Hlh5BTtq img {
  width: 100%;
}
.cid-u8Hlh5BTtq .mbr-text {
  text-align: left;
}
.cid-u8HlhO4o4Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8HlhO4o4Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8HlhO4o4Y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8HlhO4o4Y .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8HlhO4o4Y .mbr-description {
  text-align: left;
}
.cid-u8HziEromS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u8HziEromS .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8HljytbCh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8HljytbCh .mbr-section-subtitle {
  text-align: center;
}
.cid-u8HljytbCh .mbr-text {
  text-align: center;
}
.cid-u94vZPyVyJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u94vZPyVyJ .row {
  flex-direction: row-reverse;
}
.cid-u94vZPyVyJ .video-wrapper iframe {
  width: 100%;
}
.cid-u94vZPyVyJ .mbr-section-title,
.cid-u94vZPyVyJ .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u94vZPyVyJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u94QXMqZp2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u94QXMqZp2 .mbr-section-subtitle {
  text-align: center;
}
.cid-u94QXMqZp2 .mbr-text {
  text-align: center;
}
.cid-u94LQaVSkU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u94Lgpnlsd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u94Lgpnlsd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u94Lgpnlsd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u94Lgpnlsd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uicFx1Xebv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAsFJhlZR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAsFJhlZR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicFHI7BJq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uexXmKOhF8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uexXmKOhF8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uexXmKOhF8 .row {
  flex-direction: row-reverse;
}
.cid-uexXmKOhF8 img {
  width: 100%;
}
.cid-uexXmL5S3I {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uexXmL5S3I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uexXmL5S3I img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uexXmL5S3I .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhLpcttxdO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-uhKS9i4wre {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhKS9i4wre .mbr-text {
  text-align: center;
}
.cid-uhLnxHGcVg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhLnxHGcVg .mbr-text {
  text-align: center;
}
.cid-uhOsHAS5xV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhOsHAS5xV .mbr-text {
  text-align: center;
}
.cid-uicFDBCm3s {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uhV9AZAFTi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhV9AZAFTi .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uicEhlw6gU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhV9AZYD2A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9AZYD2A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9AZYD2A .row {
  flex-direction: row-reverse;
}
.cid-uhV9AZYD2A img {
  width: 100%;
}
.cid-uhV9B0jtZF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-uhV9B0wVb7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B0wVb7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B0wVb7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B0wVb7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B0PlOa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhV9B0PlOa .mbr-section-subtitle {
  text-align: center;
}
.cid-uhV9B0PlOa .mbr-text {
  text-align: center;
}
.cid-uhV9B13cCu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .cid-uhV9B13cCu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B13cCu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B13cCu .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B1isFx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B1isFx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B1isFx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B1isFx .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B1zUPz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B1zUPz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B1zUPz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B1zUPz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B1TWUs {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B1TWUs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B1TWUs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B1TWUs .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B2cxlB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B2cxlB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B2cxlB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B2cxlB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B2tPuK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B2tPuK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B2tPuK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B2tPuK .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B2Ojsy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhV9B2Ojsy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhV9B2Ojsy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhV9B2Ojsy .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhV9B3fIIQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uhV9B3fIIQ img,
.cid-uhV9B3fIIQ .item-img {
  width: 100%;
}
.cid-uhV9B3fIIQ .item:focus,
.cid-uhV9B3fIIQ span:focus {
  outline: none;
}
.cid-uhV9B3fIIQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uhV9B3fIIQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhV9B3fIIQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhV9B3fIIQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhV9B3fIIQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhV9B3fIIQ .mbr-section-title {
  color: #232323;
}
.cid-uhV9B3fIIQ .mbr-text,
.cid-uhV9B3fIIQ .mbr-section-btn {
  text-align: left;
}
.cid-uhV9B3fIIQ .item-title {
  text-align: left;
}
.cid-uhV9B3fIIQ .item-subtitle {
  text-align: center;
}
.cid-uhV9B3PfDb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhV9B3PfDb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uhV9B3PfDb .panel-group {
  border: none;
}
.cid-uhV9B3PfDb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uhV9B3PfDb .panel-body,
.cid-uhV9B3PfDb .card-header {
  padding: 1rem 0;
}
.cid-uhV9B3PfDb .panel-title-edit {
  color: #000000;
}
.cid-uhV9B3PfDb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uicElaLhdn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uiAzSOqzrj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiAzSOqzrj .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uiAzSODG6S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiAzSOO6VL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiAzSOO6VL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiAzSOO6VL .row {
  flex-direction: row-reverse;
}
.cid-uiAzSOO6VL img {
  width: 100%;
}
.cid-uiAAmKuIZl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiAAmKuIZl .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uiAAmKOYJ3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiAAmL3xiO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiAAmL3xiO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiAAmL3xiO .row {
  flex-direction: row-reverse;
}
.cid-uiAAmL3xiO img {
  width: 100%;
}
.cid-uj3f33ZrMi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3f33ZrMi .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uj3f34ctnS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uj3f34pijD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj3f34pijD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uj3f34pijD .row {
  flex-direction: row-reverse;
}
.cid-uj3f34pijD img {
  width: 100%;
}
.cid-uj3f34MJvM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj3f34MJvM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uj3f34MJvM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uj3f34MJvM .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujn4raroNU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-ujn4raroNU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ujn4raroNU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ujn4raroNU .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-ujn4raroNU .panel-body,
.cid-ujn4raroNU .card-header {
  padding: 1rem 0;
}
.cid-ujn4raroNU .panel-title-edit {
  color: #000000;
}
.cid-ujm5Jn8viF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ujm5Jn8viF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujm5Jn8viF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujm5Jn8viF .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujn4rQ8Oey {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-ujn4rQ8Oey .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ujn4rQ8Oey .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ujn4rQ8Oey .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-ujn4rQ8Oey .panel-body,
.cid-ujn4rQ8Oey .card-header {
  padding: 1rem 0;
}
.cid-ujn4rQ8Oey .panel-title-edit {
  color: #000000;
}
.cid-ujm6hjVBJP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ujm6hjVBJP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujm6hjVBJP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujm6hjVBJP .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujn4sKkXz4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ebe7e7;
}
.cid-ujn4sKkXz4 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ujn4sKkXz4 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ujn4sKkXz4 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-ujn4sKkXz4 .panel-body,
.cid-ujn4sKkXz4 .card-header {
  padding: 1rem 0;
}
.cid-ujn4sKkXz4 .panel-title-edit {
  color: #000000;
}
.cid-uj3f36nah6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ujn4oSGmeo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ujn4oSGmeo .nav-tabs .nav-item.open .nav-link:focus,
.cid-ujn4oSGmeo .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ujn4oSGmeo .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-ujn4oSGmeo .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-ujn4oSGmeo .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-ujn4oSGmeo .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-ujn4oSGmeo .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-ujn4oSGmeo .nav-link,
.cid-ujn4oSGmeo .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-ujn4oSGmeo .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-ujn4oSGmeo H4 {
  text-align: center;
}
.cid-ujn4oSGmeo H3 {
  text-align: center;
}
