body {
  font-family: Albert Sans;
}
.display-1 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 10rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 12.5rem;
}
.display-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 3.3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.25rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 7rem;
    font-size: calc( 4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (4.1499999999999995rem + (10 - 4.1499999999999995) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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-2 {
  line-height: 1;
}
.display-5 {
  line-height: 1;
}
.display-7 {
  line-height: 1.2;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .display-2 {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}
/* 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: #17003b !important;
}
.bg-success {
  background-color: #6bffc7 !important;
}
.bg-info {
  background-color: #6500e0 !important;
}
.bg-warning {
  background-color: #fffa63 !important;
}
.bg-danger {
  background-color: #ffb18a !important;
}
.btn-primary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-primary,
.btn-primary:active {
  background-color: #17003b !important;
  border-color: #17003b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-primary:hover {
  box-shadow: none;
  color: #17003b !important;
}
.btn-primary:hover:before {
  transform: translateX(0);
}
.btn-secondary {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff57be !important;
  border-color: #ff57be !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff009c !important;
  border-color: #ff009c !important;
}
.btn-secondary:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  box-shadow: none;
  color: #ff57be !important;
}
.btn-secondary:hover:before {
  transform: translateX(0);
}
.btn-info {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-info,
.btn-info:active {
  background-color: #6500e0 !important;
  border-color: #6500e0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3e0089 !important;
  border-color: #3e0089 !important;
}
.btn-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-info:hover {
  box-shadow: none;
  color: #6500e0 !important;
}
.btn-info:hover:before {
  transform: translateX(0);
}
.btn-success {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-success,
.btn-success:active {
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
  color: #006b43 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #00140d !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #006b43 !important;
  background-color: #14ffa6 !important;
  border-color: #14ffa6 !important;
}
.btn-success:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-success:hover {
  box-shadow: none;
  color: #6bffc7 !important;
}
.btn-success:hover:before {
  transform: translateX(0);
}
.btn-warning {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
  color: #636000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0c0c00 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #636000 !important;
  background-color: #fff70c !important;
  border-color: #fff70c !important;
}
.btn-warning:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-warning:hover {
  box-shadow: none;
  color: #fffa63 !important;
}
.btn-warning:hover:before {
  transform: translateX(0);
}
.btn-danger {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-danger:hover {
  box-shadow: none;
  color: #ffb18a !important;
}
.btn-danger:hover:before {
  transform: translateX(0);
}
.btn-white {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-white:hover {
  box-shadow: none;
  color: #fafafa !important;
}
.btn-white:hover:before {
  transform: translateX(0);
}
.btn-black {
  margin-right: 2rem;
  position: relative;
  border: 0;
  border-radius: 0px;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  background-color: inherit;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  transform: translateX(-102%);
  transition: all 0.3s;
}
.btn-black:hover {
  box-shadow: none;
  color: #232323 !important;
}
.btn-black:hover:before {
  transform: translateX(0);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #17003b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #17003b !important;
  border-color: #17003b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff57be;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff009c !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: #ff57be !important;
  border-color: #ff57be !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6500e0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #3e0089 !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: #6500e0 !important;
  border-color: #6500e0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6bffc7;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #14ffa6 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #006b43 !important;
  background-color: #6bffc7 !important;
  border-color: #6bffc7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fffa63;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff70c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #636000 !important;
  background-color: #fffa63 !important;
  border-color: #fffa63 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb18a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff7733 !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: #ffb18a !important;
  border-color: #ffb18a !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: #17003b !important;
}
.text-secondary {
  color: #ff57be !important;
}
.text-success {
  color: #6bffc7 !important;
}
.text-info {
  color: #6500e0 !important;
}
.text-warning {
  color: #fffa63 !important;
}
.text-danger {
  color: #ffb18a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #17003b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff57be !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6bffc7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #6500e0 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fffa63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffb18a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #17003b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6500e0;
}
.alert-warning {
  background-color: #fffa63;
}
.alert-danger {
  background-color: #ffb18a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #17003b;
  border-color: #17003b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #17003b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7821ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d2adff;
}
.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: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #17003b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #17003b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #17003b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #17003b;
}
.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: #17003b;
  border-bottom-color: #17003b;
}
.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: #17003b !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: #ff57be !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='%2317003b' %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-tqJ3oa7HGE {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/istockphoto-1310977357-612x408.jpg");
  overflow: hidden;
}
.cid-tqJ3oa7HGE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ3oa7HGE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ3oa7HGE path {
  fill: #17003b;
}
@keyframes wave3 {
  0% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
  50% {
    transform: scaleY(1.1) translate(-50%, -50%);
  }
  100% {
    transform: scaleY(0.9) translate(-50%, -50%);
  }
}
.cid-tqJ3oa7HGE b,
.cid-tqJ3oa7HGE strong {
  font-weight: 900;
}
.cid-tqJ3oa7HGE svg {
  position: absolute;
  top: 30px;
  left: 45%;
  right: 50%;
  animation: 5s ease infinite wave3;
  transform-origin: top;
  transform: scaleY(0.8) translate(-50%, -50%);
}
.cid-tqJ3oa7HGE a {
  font-weight: 900;
  background: #ff57be;
}
.cid-tqJ3oa7HGE .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ3oa7HGE .mbr-text,
.cid-tqJ3oa7HGE .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ3oa7HGE .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqJ3ClteMg {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-tqJ3ClteMg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ3ClteMg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave2 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
.cid-tqJ3ClteMg #gentle-wave {
  fill: #17003b;
}
.cid-tqJ3ClteMg .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-tqJ3ClteMg b {
  font-weight: 900;
}
.cid-tqJ3ClteMg .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tqJ3ClteMg img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqJ3ClteMg img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqJ3ClteMg .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqJ3ClteMg .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqJ3ClteMg .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqJ3ClteMg .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqJ3ClteMg .row {
  align-items: center;
}
.cid-tqJ3ClteMg .mbr-section-title {
  color: #ffffff;
}
.cid-tqJ3ClteMg .mbr-text,
.cid-tqJ3ClteMg .mbr-section-btn {
  color: #ffffff;
}
.cid-tqJ3ClteMg .mbr-link,
.cid-tqJ3ClteMg .link-wrapper {
  color: #ffffff;
}
.cid-tqJ3ABTmeu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqJ3ABTmeu .item-subtitle {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  color: #17003b;
}
.cid-tqJ3ABTmeu .item-subtitle:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  left: 0;
  background: #6bffc7;
  z-index: -1;
}
.cid-tqJ3ABTmeu .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tqJ3ABTmeu .item-wrapper:hover .item-subtitle:before {
  width: 0%;
}
@media (min-width: 992px) {
  .cid-tqJ3ABTmeu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqJ3ABTmeu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqJ3ABTmeu b,
.cid-tqJ3ABTmeu strong {
  font-weight: 900;
}
.cid-tqJ3ABTmeu img,
.cid-tqJ3ABTmeu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tqJ3ABTmeu .item:focus,
.cid-tqJ3ABTmeu span:focus {
  outline: none;
}
.cid-tqJ3ABTmeu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqJ3ABTmeu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqJ3ABTmeu .mbr-section-title {
  color: #17003b;
}
.cid-tqJ3ABTmeu .mbr-text,
.cid-tqJ3ABTmeu .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tqJ3ABTmeu .item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqJ3ABTmeu .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ3ABTmeu .item-subtitle,
.cid-tqJ3ABTmeu .item-content {
  text-align: center;
}
.cid-tqJ4Lz1YWs {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-tqJ4Lz1YWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ4Lz1YWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqJ4Lz1YWs b,
.cid-tqJ4Lz1YWs strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqJ4Lz1YWs img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqJ4Lz1YWs img {
    padding-bottom: 2rem;
  }
}
.cid-tqJ4Lz1YWs .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqJ4Lz1YWs .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqJ4Lz1YWs .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqJ4Lz1YWs .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqJ4Lz1YWs .row {
  align-items: center;
}
.cid-tqJ4Lz1YWs .mbr-section-title {
  color: #ffffff;
}
.cid-tqJ4Lz1YWs .mbr-text,
.cid-tqJ4Lz1YWs .mbr-section-btn {
  color: #ffffff;
}
.cid-tqJ4Lz1YWs .mbr-link,
.cid-tqJ4Lz1YWs .link-wrapper {
  color: #ffffff;
}
.cid-tqJ4Lz1YWs .mbr-text,
.cid-tqJ4Lz1YWs .text-wrapper {
  color: #ffffff;
}
.cid-tqJ4Lz1YWs .mbr-link,
.cid-tqJ4Lz1YWs .text-wrapper,
.cid-tqJ4Lz1YWs path {
  color: #17003b;
}
.cid-tqJ4yhl4dX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqJ4yhl4dX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ4yhl4dX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ4yhl4dX .mbr-section-title {
  text-align: center;
  color: #17003b;
}
.cid-tqJ4yhl4dX .mbr-text,
.cid-tqJ4yhl4dX .mbr-section-btn {
  text-align: left;
  color: #17003b;
}
.cid-tqJ4yhl4dX b,
.cid-tqJ4yhl4dX strong {
  font-weight: 900;
}
.cid-tqJ4yhl4dX .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-txT7wu6hUW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-txT7wu6hUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT7wu6hUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txT7wu6hUW h3,
.cid-txT7wu6hUW a {
  font-weight: 900;
}
.cid-txT7wu6hUW a {
  background: #6bffc7;
}
.cid-txT7wu6hUW .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-txT7wu6hUW .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-txT7wu6hUW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-txT7wu6hUW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-txT7wu6hUW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-txT7wu6hUW .mbr-section-title {
  color: #ffffff;
}
.cid-tqJ47Lt4tP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ47Lt4tP p {
  text-align: center;
}
.cid-tqJ47Lt4tP .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ47Lt4tP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ47Lt4tP .logo-footer {
  line-height: normal;
}
.cid-tqJ47Lt4tP .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ47Lt4tP li {
  overflow: hidden;
}
.cid-tqJ47Lt4tP .icon-transition span {
  display: block;
}
.cid-tqJ47Lt4tP .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ47Lt4tP .list-inline-item a {
  display: block;
}
.cid-tqJ47Lt4tP .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ47Lt4tP .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ47Lt4tP .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ47Lt4tP .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ47Lt4tP .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ47Lt4tP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ47Lt4tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ47Lt4tP .logo-footer {
    text-align: center;
  }
  .cid-tqJ47Lt4tP .social-media {
    justify-content: center;
  }
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: relative !important;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-txTx3lwZ1q .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-txTx3lwZ1q .navbar.opened {
  transition: all 0.3s;
}
.cid-txTx3lwZ1q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txTx3lwZ1q .navbar .navbar-logo img {
  width: auto;
}
.cid-txTx3lwZ1q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar.collapsed {
  justify-content: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txTx3lwZ1q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txTx3lwZ1q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txTx3lwZ1q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txTx3lwZ1q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txTx3lwZ1q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txTx3lwZ1q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-txTx3lwZ1q .navbar.navbar-short {
  min-height: 60px;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txTx3lwZ1q .navbar-logo {
  margin: 0;
}
.cid-txTx3lwZ1q .container,
.cid-txTx3lwZ1q .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .container,
  .cid-txTx3lwZ1q .container-fluid {
    justify-content: space-between;
  }
}
.cid-txTx3lwZ1q .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar-brand {
    display: none;
  }
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txTx3lwZ1q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txTx3lwZ1q .dropdown-item:hover,
.cid-txTx3lwZ1q .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-txTx3lwZ1q .dropdown-item:hover span {
  color: white;
}
.cid-txTx3lwZ1q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txTx3lwZ1q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txTx3lwZ1q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txTx3lwZ1q .nav-link {
  position: relative;
}
.cid-txTx3lwZ1q .container {
  display: flex;
  margin: auto;
}
.cid-txTx3lwZ1q .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown-menu,
.cid-txTx3lwZ1q .navbar.opened {
  background: #17003b !important;
}
.cid-txTx3lwZ1q .nav-item:focus,
.cid-txTx3lwZ1q .nav-link:focus {
  outline: none;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txTx3lwZ1q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txTx3lwZ1q .dropdown-item.active,
.cid-txTx3lwZ1q .dropdown-item:active {
  background-color: transparent;
}
.cid-txTx3lwZ1q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txTx3lwZ1q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txTx3lwZ1q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txTx3lwZ1q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txTx3lwZ1q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txTx3lwZ1q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar {
    height: 70px;
  }
  .cid-txTx3lwZ1q .navbar.opened {
    height: auto;
  }
  .cid-txTx3lwZ1q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: relative !important;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-txTx3lwZ1q .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-txTx3lwZ1q .navbar.opened {
  transition: all 0.3s;
}
.cid-txTx3lwZ1q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txTx3lwZ1q .navbar .navbar-logo img {
  width: auto;
}
.cid-txTx3lwZ1q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar.collapsed {
  justify-content: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txTx3lwZ1q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txTx3lwZ1q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txTx3lwZ1q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txTx3lwZ1q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txTx3lwZ1q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txTx3lwZ1q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-txTx3lwZ1q .navbar.navbar-short {
  min-height: 60px;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txTx3lwZ1q .navbar-logo {
  margin: 0;
}
.cid-txTx3lwZ1q .container,
.cid-txTx3lwZ1q .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .container,
  .cid-txTx3lwZ1q .container-fluid {
    justify-content: space-between;
  }
}
.cid-txTx3lwZ1q .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar-brand {
    display: none;
  }
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txTx3lwZ1q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txTx3lwZ1q .dropdown-item:hover,
.cid-txTx3lwZ1q .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-txTx3lwZ1q .dropdown-item:hover span {
  color: white;
}
.cid-txTx3lwZ1q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txTx3lwZ1q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txTx3lwZ1q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txTx3lwZ1q .nav-link {
  position: relative;
}
.cid-txTx3lwZ1q .container {
  display: flex;
  margin: auto;
}
.cid-txTx3lwZ1q .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown-menu,
.cid-txTx3lwZ1q .navbar.opened {
  background: #17003b !important;
}
.cid-txTx3lwZ1q .nav-item:focus,
.cid-txTx3lwZ1q .nav-link:focus {
  outline: none;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txTx3lwZ1q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txTx3lwZ1q .dropdown-item.active,
.cid-txTx3lwZ1q .dropdown-item:active {
  background-color: transparent;
}
.cid-txTx3lwZ1q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txTx3lwZ1q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txTx3lwZ1q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txTx3lwZ1q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txTx3lwZ1q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txTx3lwZ1q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar {
    height: 70px;
  }
  .cid-txTx3lwZ1q .navbar.opened {
    height: auto;
  }
  .cid-txTx3lwZ1q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txTobfcL1V {
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/istockphoto-1313842801-612x408.jpg");
}
.cid-txTobfcL1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobfcL1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobfcL1V .mbr-section-title {
  text-align: center;
  color: #17003b;
}
.cid-txTobfcL1V .mbr-text,
.cid-txTobfcL1V .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-txTobfcL1V b,
.cid-txTobfcL1V strong {
  font-weight: 900;
}
.cid-txTobfcL1V .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-txTobiApzh {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-txTobiApzh .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobiApzh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobiApzh .mbr-text,
.cid-txTobiApzh .mbr-section-btn {
  text-align: left;
}
.cid-txTobjLOPb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #17003b;
}
.cid-txTobjLOPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobjLOPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobjLOPb .mbr-section-title {
  color: #ffffff;
}
.cid-txTobjLOPb .mbr-text {
  color: #ffffff;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-txTobjLOPb .mbr-text {
    margin-top: 24px;
  }
}
.cid-txTobjLOPb .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-txTobjLOPb .tabl-container {
    margin-top: 24px;
  }
}
.cid-txTobjLOPb .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cid-txTobjLOPb .frame-item {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #ffffff;
}
.cid-txTobjLOPb .card-text {
  color: #ffffff;
  flex-grow: 1;
}
.cid-txTobl2Dxu {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-txTobl2Dxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobl2Dxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobl2Dxu .text-primary {
  background-color: #6bffc7;
}
.cid-txTobl2Dxu .mbr-section-title {
  color: #17003b;
  text-align: left;
}
.cid-txTobm4DhF {
  background-color: #ffffff;
}
.cid-txTobm4DhF .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobm4DhF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTobm4DhF .row {
    padding: 0 24px;
  }
}
.cid-txTobm4DhF .text-wrapper {
  padding: 0 0 0 100px;
}
@media (max-width: 992px) {
  .cid-txTobm4DhF .text-wrapper {
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-txTobm4DhF .text-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-txTobm4DhF .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-txTobm4DhF .image-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-txTobm4DhF .image-wrap {
    justify-content: center;
  }
}
.cid-txTobm4DhF .image-wrap .image-wrapper:first-child {
  padding: 7rem 20px 0 0;
}
@media (max-width: 992px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper:first-child {
    padding: 0;
  }
}
.cid-txTobm4DhF .image-wrap .image-wrapper .card {
  max-width: 290px;
  min-width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #17003b;
}
@media (max-width: 1200px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .card {
    min-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .card {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .card {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .card {
    height: 200px;
  }
}
.cid-txTobm4DhF .image-wrap .image-wrapper .image {
  max-width: 290px;
  min-width: 200px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .image {
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .image {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txTobm4DhF .image-wrap .image-wrapper .image {
    height: 200px;
  }
}
.cid-txTobm4DhF .mbr-section-title {
  color: #FFF6EB;
}
.cid-txTobm4DhF .mbr-text {
  color: #17003b;
}
.cid-txTobm4DhF .mbr-section-title,
.cid-txTobm4DhF .mbr-section-btn {
  color: #17003b;
}
.cid-txTobnmt2M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTobnmt2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobnmt2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobnmt2M .text-primary {
  background-color: #6bffc7;
}
.cid-txTobnmt2M .mbr-section-title {
  color: #17003b;
  text-align: left;
}
.cid-txTobog7l2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTobog7l2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobog7l2 .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-txTobog7l2 .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-txTobog7l2 .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-txTobog7l2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobog7l2 img {
  border-radius: 3rem;
}
.cid-txTobog7l2 .mbr-text,
.cid-txTobog7l2 .mbr-section-btn {
  color: #ffffff;
}
.cid-txTobqDnhZ {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txTobqDnhZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobqDnhZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobqDnhZ .mbr-text,
.cid-txTobqDnhZ .mbr-section-btn {
  text-align: left;
}
.cid-txTobqDnhZ .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-txTobqDnhZ .mbr-section-subtitle {
  text-align: center;
  color: #3d2e7c;
}
.cid-txTobrFL5Y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txTobrFL5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobrFL5Y .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTobrFL5Y .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTobrFL5Y img {
  border-radius: 1rem;
}
.cid-txTobrFL5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobrFL5Y .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTobrFL5Y .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTobrFL5Y .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTobrFL5Y .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTobrFL5Y .mbr-section-subtitle,
.cid-txTobrFL5Y .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTobrFL5Y .mbr-text,
.cid-txTobrFL5Y .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-txTpinfA64 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTpinfA64 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-txTpinfA64 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-txTpinfA64 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-txTpinfA64 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #17003b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTobsIhlb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTobsIhlb .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobsIhlb h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-txTobsIhlb h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #17003b;
  z-index: -1;
}
.cid-txTobsIhlb h1 a:hover {
  color: inherit !important;
}
.cid-txTobsIhlb .subtitle-wrap {
  background: white;
  width: fit-content;
  border: 2px dashed currentColor;
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-txTobsIhlb .subtitle-wrap span {
  margin: 0 1rem;
}
.cid-txTobsIhlb .subtitle-wrap .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-txTobsIhlb .arrow {
  background: #17003b;
  border-radius: 50%;
  padding: 5px;
  color: white;
  font-size: 1rem !important;
  border: 1px dashed black;
}
.cid-txTobsIhlb img {
  border-radius: 1rem;
}
.cid-txTobsIhlb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobsIhlb .row {
  flex-direction: row-reverse;
}
.cid-txTobsIhlb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTobsIhlb .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTobsIhlb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTobsIhlb .mbr-section-title {
  color: #ffffff;
}
.cid-txTobsIhlb .mbr-text,
.cid-txTobsIhlb .mbr-section-btn {
  color: #ffffff;
}
.cid-txTobsIhlb .mbr-section-subtitle,
.cid-txTobsIhlb .subtitle-wrap,
.cid-txTobsIhlb .subtitle-align-wrap {
  color: #19303d;
}
.cid-txTobtSLQa {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-txTobtSLQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobtSLQa .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTobtSLQa .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTobtSLQa img {
  border-radius: 1rem;
}
.cid-txTobtSLQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobtSLQa .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTobtSLQa .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTobtSLQa .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTobtSLQa .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTobtSLQa .mbr-section-subtitle,
.cid-txTobtSLQa .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTobtSLQa .mbr-text,
.cid-txTobtSLQa .mbr-section-btn {
  color: #19303d;
  text-align: center;
}
.cid-txTobvsb1X {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-txTobvsb1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobvsb1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave2 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
.cid-txTobvsb1X #gentle-wave {
  fill: #17003b;
}
.cid-txTobvsb1X .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-txTobvsb1X b {
  font-weight: 900;
}
.cid-txTobvsb1X .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txTobvsb1X img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTobvsb1X img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-txTobvsb1X .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-txTobvsb1X .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-txTobvsb1X .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-txTobvsb1X .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-txTobvsb1X .row {
  align-items: center;
}
.cid-txTobvsb1X .mbr-section-title {
  color: #ffffff;
}
.cid-txTobvsb1X .mbr-text,
.cid-txTobvsb1X .mbr-section-btn {
  color: #ffffff;
}
.cid-txTobvsb1X .mbr-link,
.cid-txTobvsb1X .link-wrapper {
  color: #ffffff;
}
.cid-txTobwIuTN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTobwIuTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobwIuTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobwIuTN b,
.cid-txTobwIuTN strong {
  font-weight: 900;
}
.cid-txTobwIuTN .mbr-section-title {
  color: #17003b;
}
.cid-txTobwIuTN .mbr-section-subtitle {
  color: #17003b;
}
.cid-txTobxFsm8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTobxFsm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTobxFsm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTobxFsm8 b,
.cid-txTobxFsm8 strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-txTobxFsm8 img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTobxFsm8 img {
    padding-bottom: 2rem;
  }
}
.cid-txTobxFsm8 .row {
  align-items: center;
}
.cid-txTobxFsm8 .mbr-section-title {
  color: #17003b;
}
.cid-txTobxFsm8 .mbr-text,
.cid-txTobxFsm8 .mbr-section-btn {
  color: #17003b;
}
.cid-txTobxFsm8 .mbr-section-subtitle {
  color: #17003b;
}
.cid-txTobyCst6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTobzmXEB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-txTobzmXEB p {
  text-align: center;
}
.cid-txTobzmXEB .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-txTobzmXEB .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-txTobzmXEB .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-txTobzmXEB .logo-footer {
  line-height: normal;
}
.cid-txTobzmXEB .copyright .list-inline {
  margin-bottom: 0;
}
.cid-txTobzmXEB .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-txTobzmXEB .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-txTobzmXEB li {
  overflow: hidden;
}
.cid-txTobzmXEB .icon-transition span {
  display: block;
}
.cid-txTobzmXEB .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-txTobzmXEB .list-inline-item a {
  display: block;
}
.cid-txTobzmXEB .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-txTobzmXEB .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTobzmXEB .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-txTobzmXEB .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-txTobzmXEB .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-txTobzmXEB .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-txTobzmXEB .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-txTobzmXEB .logo-footer {
    text-align: center;
  }
  .cid-txTobzmXEB .social-media {
    justify-content: center;
  }
}
.cid-txTh10XsSN {
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/istockphoto-1063392686-612x408.jpg");
}
.cid-txTh10XsSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh10XsSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh10XsSN .mbr-section-title {
  text-align: center;
  color: #17003b;
}
.cid-txTh10XsSN .mbr-text,
.cid-txTh10XsSN .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-txTh10XsSN b,
.cid-txTh10XsSN strong {
  font-weight: 900;
}
.cid-txTh10XsSN .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-txTh14whJ6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-txTh14whJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh14whJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh14whJ6 .mbr-text,
.cid-txTh14whJ6 .mbr-section-btn {
  text-align: left;
}
.cid-txTj2X0bfo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #17003b;
}
.cid-txTj2X0bfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTj2X0bfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTj2X0bfo .mbr-section-title {
  color: #272727;
}
.cid-txTj2X0bfo .mbr-text {
  color: #ffffff;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-txTj2X0bfo .mbr-text {
    margin-top: 24px;
  }
}
.cid-txTj2X0bfo .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-txTj2X0bfo .tabl-container {
    margin-top: 24px;
  }
}
.cid-txTj2X0bfo .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.cid-txTj2X0bfo .frame-item {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #ffffff;
}
.cid-txTj2X0bfo .card-text {
  color: #ffffff;
  flex-grow: 1;
}
.cid-txTjWOGXUo {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-txTjWOGXUo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTjWOGXUo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTjWOGXUo .text-primary {
  background-color: #6bffc7;
}
.cid-txTjWOGXUo .mbr-section-title {
  color: #17003b;
}
.cid-txTh172vYQ {
  background-color: #ffffff;
}
.cid-txTh172vYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh172vYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTh172vYQ .row {
    padding: 0 24px;
  }
}
.cid-txTh172vYQ .text-wrapper {
  padding: 0 0 0 100px;
}
@media (max-width: 992px) {
  .cid-txTh172vYQ .text-wrapper {
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-txTh172vYQ .text-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-txTh172vYQ .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-txTh172vYQ .image-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-txTh172vYQ .image-wrap {
    justify-content: center;
  }
}
.cid-txTh172vYQ .image-wrap .image-wrapper:first-child {
  padding: 7rem 20px 0 0;
}
@media (max-width: 992px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper:first-child {
    padding: 0;
  }
}
.cid-txTh172vYQ .image-wrap .image-wrapper .card {
  max-width: 290px;
  min-width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #17003b;
}
@media (max-width: 1200px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .card {
    min-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .card {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .card {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .card {
    height: 200px;
  }
}
.cid-txTh172vYQ .image-wrap .image-wrapper .image {
  max-width: 290px;
  min-width: 200px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .image {
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .image {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txTh172vYQ .image-wrap .image-wrapper .image {
    height: 200px;
  }
}
.cid-txTh172vYQ .mbr-section-title {
  color: #FFF6EB;
}
.cid-txTh172vYQ .mbr-text {
  color: #17003b;
}
.cid-txTh172vYQ .mbr-section-title,
.cid-txTh172vYQ .mbr-section-btn {
  color: #17003b;
}
.cid-txTkKm9RyB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTkKm9RyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTkKm9RyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTkKm9RyB .text-primary {
  background-color: #6bffc7;
}
.cid-txTkKm9RyB .mbr-section-title {
  color: #17003b;
}
.cid-txTh18rmqw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTh18rmqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh18rmqw .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-txTh18rmqw .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-txTh18rmqw .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-txTh18rmqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh18rmqw img {
  border-radius: 3rem;
}
.cid-txTh18rmqw .mbr-text,
.cid-txTh18rmqw .mbr-section-btn {
  color: #ffffff;
}
.cid-txTh19VYz7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTh19VYz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh19VYz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh19VYz7 .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-txTh19VYz7 .embla__slide {
    min-width: 90%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-txTh19VYz7 .embla__slide .svg1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
}
.cid-txTh19VYz7 .embla__slide .svg2 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
  z-index: -1;
}
@media (max-width: 767px) {
  .cid-txTh19VYz7 .embla__slide .svg2 {
    bottom: 18px;
  }
}
.cid-txTh19VYz7 .user {
  background: #17003b;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-txTh19VYz7 .user {
    padding: 4rem 1rem;
  }
}
.cid-txTh19VYz7 .embla__button--next,
.cid-txTh19VYz7 .embla__button--prev {
  display: flex;
}
.cid-txTh19VYz7 .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;
}
@media (max-width: 768px) {
  .cid-txTh19VYz7 .embla__button {
    display: none;
  }
}
.cid-txTh19VYz7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-txTh19VYz7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-txTh19VYz7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txTh19VYz7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-txTh19VYz7 .embla__button {
    top: auto;
  }
}
.cid-txTh19VYz7 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-txTh19VYz7 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-txTh19VYz7 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-txTh19VYz7 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-txTh19VYz7 .embla {
  position: relative;
  width: 100%;
}
.cid-txTh19VYz7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-txTh19VYz7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-txTh19VYz7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-txTh19VYz7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-txTh19VYz7 .user_text {
  color: #ffffff;
}
.cid-txTh19VYz7 .user_name {
  color: #ffffff;
}
.cid-txTh19VYz7 .user_desk {
  color: #ffffff;
}
.cid-txTh19VYz7 H3 {
  color: #17003b;
}
.cid-txTh1cZyon {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-txTh1cZyon .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1cZyon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1cZyon .mbr-text,
.cid-txTh1cZyon .mbr-section-btn {
  text-align: center;
}
.cid-txTh1cZyon .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-txTh1cZyon .mbr-section-subtitle {
  text-align: center;
  color: #3d2e7c;
}
.cid-txTh1frCC0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-txTh1frCC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1frCC0 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTh1frCC0 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTh1frCC0 img {
  border-radius: 1rem;
}
.cid-txTh1frCC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1frCC0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTh1frCC0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTh1frCC0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTh1frCC0 .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTh1frCC0 .mbr-section-subtitle,
.cid-txTh1frCC0 .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTh1frCC0 .mbr-text,
.cid-txTh1frCC0 .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-txTh1incj3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTh1incj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1incj3 h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-txTh1incj3 h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #17003b;
  z-index: -1;
}
.cid-txTh1incj3 h1 a:hover {
  color: inherit !important;
}
.cid-txTh1incj3 .subtitle-wrap {
  background: white;
  width: fit-content;
  border: 2px dashed currentColor;
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-txTh1incj3 .subtitle-wrap span {
  margin: 0 1rem;
}
.cid-txTh1incj3 .subtitle-wrap .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-txTh1incj3 .arrow {
  background: #17003b;
  border-radius: 50%;
  padding: 5px;
  color: white;
  font-size: 1rem !important;
  border: 1px dashed black;
}
.cid-txTh1incj3 img {
  border-radius: 1rem;
}
.cid-txTh1incj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1incj3 .row {
  flex-direction: row-reverse;
}
.cid-txTh1incj3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTh1incj3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTh1incj3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTh1incj3 .mbr-section-title {
  color: #ffffff;
}
.cid-txTh1incj3 .mbr-text,
.cid-txTh1incj3 .mbr-section-btn {
  color: #ffffff;
}
.cid-txTh1incj3 .mbr-section-subtitle,
.cid-txTh1incj3 .subtitle-wrap,
.cid-txTh1incj3 .subtitle-align-wrap {
  color: #19303d;
}
.cid-txTh1lfzRe {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-txTh1lfzRe .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1lfzRe .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTh1lfzRe .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTh1lfzRe img {
  border-radius: 1rem;
}
.cid-txTh1lfzRe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1lfzRe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTh1lfzRe .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTh1lfzRe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTh1lfzRe .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTh1lfzRe .mbr-section-subtitle,
.cid-txTh1lfzRe .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTh1lfzRe .mbr-text,
.cid-txTh1lfzRe .mbr-section-btn {
  color: #19303d;
  text-align: center;
}
.cid-txTh1ms5iQ {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-txTh1ms5iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1ms5iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave2 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
.cid-txTh1ms5iQ #gentle-wave {
  fill: #17003b;
}
.cid-txTh1ms5iQ .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-txTh1ms5iQ b {
  font-weight: 900;
}
.cid-txTh1ms5iQ .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txTh1ms5iQ img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTh1ms5iQ img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-txTh1ms5iQ .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-txTh1ms5iQ .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-txTh1ms5iQ .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-txTh1ms5iQ .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-txTh1ms5iQ .row {
  align-items: center;
}
.cid-txTh1ms5iQ .mbr-section-title {
  color: #ffffff;
}
.cid-txTh1ms5iQ .mbr-text,
.cid-txTh1ms5iQ .mbr-section-btn {
  color: #ffffff;
}
.cid-txTh1ms5iQ .mbr-link,
.cid-txTh1ms5iQ .link-wrapper {
  color: #ffffff;
}
.cid-txTh1nMO97 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTh1nMO97 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1nMO97 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1nMO97 b,
.cid-txTh1nMO97 strong {
  font-weight: 900;
}
.cid-txTh1nMO97 .mbr-section-title {
  color: #17003b;
}
.cid-txTh1nMO97 .mbr-section-subtitle {
  color: #17003b;
}
.cid-txTh1plpkD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTh1plpkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTh1plpkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTh1plpkD b,
.cid-txTh1plpkD strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-txTh1plpkD img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTh1plpkD img {
    padding-bottom: 2rem;
  }
}
.cid-txTh1plpkD .row {
  align-items: center;
}
.cid-txTh1plpkD .mbr-section-title {
  color: #17003b;
}
.cid-txTh1plpkD .mbr-text,
.cid-txTh1plpkD .mbr-section-btn {
  color: #17003b;
}
.cid-txTh1plpkD .mbr-section-subtitle {
  color: #17003b;
}
.cid-txTh1qx0jM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTh1rBeLi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-txTh1rBeLi p {
  text-align: center;
}
.cid-txTh1rBeLi .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-txTh1rBeLi .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-txTh1rBeLi .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-txTh1rBeLi .logo-footer {
  line-height: normal;
}
.cid-txTh1rBeLi .copyright .list-inline {
  margin-bottom: 0;
}
.cid-txTh1rBeLi .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-txTh1rBeLi .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-txTh1rBeLi li {
  overflow: hidden;
}
.cid-txTh1rBeLi .icon-transition span {
  display: block;
}
.cid-txTh1rBeLi .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-txTh1rBeLi .list-inline-item a {
  display: block;
}
.cid-txTh1rBeLi .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-txTh1rBeLi .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTh1rBeLi .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-txTh1rBeLi .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-txTh1rBeLi .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-txTh1rBeLi .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-txTh1rBeLi .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-txTh1rBeLi .logo-footer {
    text-align: center;
  }
  .cid-txTh1rBeLi .social-media {
    justify-content: center;
  }
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: relative !important;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-txTx3lwZ1q .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-txTx3lwZ1q .navbar.opened {
  transition: all 0.3s;
}
.cid-txTx3lwZ1q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txTx3lwZ1q .navbar .navbar-logo img {
  width: auto;
}
.cid-txTx3lwZ1q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar.collapsed {
  justify-content: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txTx3lwZ1q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txTx3lwZ1q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txTx3lwZ1q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txTx3lwZ1q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txTx3lwZ1q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txTx3lwZ1q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-txTx3lwZ1q .navbar.navbar-short {
  min-height: 60px;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txTx3lwZ1q .navbar-logo {
  margin: 0;
}
.cid-txTx3lwZ1q .container,
.cid-txTx3lwZ1q .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .container,
  .cid-txTx3lwZ1q .container-fluid {
    justify-content: space-between;
  }
}
.cid-txTx3lwZ1q .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar-brand {
    display: none;
  }
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txTx3lwZ1q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txTx3lwZ1q .dropdown-item:hover,
.cid-txTx3lwZ1q .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-txTx3lwZ1q .dropdown-item:hover span {
  color: white;
}
.cid-txTx3lwZ1q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txTx3lwZ1q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txTx3lwZ1q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txTx3lwZ1q .nav-link {
  position: relative;
}
.cid-txTx3lwZ1q .container {
  display: flex;
  margin: auto;
}
.cid-txTx3lwZ1q .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown-menu,
.cid-txTx3lwZ1q .navbar.opened {
  background: #17003b !important;
}
.cid-txTx3lwZ1q .nav-item:focus,
.cid-txTx3lwZ1q .nav-link:focus {
  outline: none;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txTx3lwZ1q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txTx3lwZ1q .dropdown-item.active,
.cid-txTx3lwZ1q .dropdown-item:active {
  background-color: transparent;
}
.cid-txTx3lwZ1q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txTx3lwZ1q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txTx3lwZ1q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txTx3lwZ1q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txTx3lwZ1q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txTx3lwZ1q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar {
    height: 70px;
  }
  .cid-txTx3lwZ1q .navbar.opened {
    height: auto;
  }
  .cid-txTx3lwZ1q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txT81OYBiB {
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-color: #17003b;
}
.cid-txT81OYBiB .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT81OYBiB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txT81OYBiB .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-txT81OYBiB .mbr-text,
.cid-txT81OYBiB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-txT81OYBiB b,
.cid-txT81OYBiB strong {
  font-weight: 900;
}
.cid-txT81OYBiB .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-txT8bGWPEk {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/istockphoto-1356562141-612x397.jpg");
}
.cid-txT8bGWPEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT8bGWPEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txT8CFiIl0 {
  background-color: #ffffff;
}
.cid-txT8CFiIl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT8CFiIl0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-txT8CFiIl0 .card {
    padding: 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-txT8CFiIl0 .title-wrapper {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .cid-txT8CFiIl0 .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-txT8CFiIl0 .title-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-txT8CFiIl0 .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-txT8CFiIl0 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}
@media (max-width: 425px) {
  .cid-txT8CFiIl0 .image-wrapper {
    height: 400px;
  }
}
.cid-txT8CFiIl0 .image-wrapper img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji {
  position: absolute;
  top: -0.5rem;
  left: 5rem;
  font-size: 42px;
  z-index: 1;
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(2) {
  font-size: 55px;
  top: 1rem;
  left: auto;
  right: 4rem;
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(3) {
  font-size: 55px;
  top: 5rem;
  left: auto;
  right: -1rem;
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(4) {
  font-size: 50px;
  top: 10rem;
  left: 1rem;
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(5) {
  font-size: 80px;
  top: auto;
  bottom: 6rem;
  left: -1rem;
}
@media (max-width: 425px) {
  .cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(5) {
    bottom: 0;
    left: 0;
  }
}
.cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(6) {
  font-size: 50px;
  top: auto;
  bottom: -4rem;
  left: auto;
  right: 14rem;
}
@media (max-width: 425px) {
  .cid-txT8CFiIl0 .image-wrapper .mbr-emoji:nth-child(6) {
    right: auto;
    bottom: -1rem;
  }
}
.cid-txT8CFiIl0 .image-wrapper .image-wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 425px) {
  .cid-txT8CFiIl0 .image-wrapper .image-wrap {
    align-items: center;
  }
}
.cid-txT8CFiIl0 .image-wrapper .image-wrap img {
  max-width: 300px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 425px) {
  .cid-txT8CFiIl0 .image-wrapper .image-wrap img {
    max-width: 180px;
    min-height: 300px;
  }
}
.cid-txT8CFiIl0 .mbr-section-title {
  color: #f8f7ff;
}
.cid-txT8CFiIl0 .mbr-text {
  color: #17003b;
  text-align: left;
}
.cid-txT8CFiIl0 .mbr-section-title,
.cid-txT8CFiIl0 .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-txT8EmGpBW {
  background-color: #ffffff;
}
.cid-txT8EmGpBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT8EmGpBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-txT8EmGpBW .row {
    padding: 0 24px;
  }
}
.cid-txT8EmGpBW .text-wrapper {
  padding: 0 0 0 100px;
}
@media (max-width: 992px) {
  .cid-txT8EmGpBW .text-wrapper {
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-txT8EmGpBW .text-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-txT8EmGpBW .text-wrapper .mbr-text {
  margin-bottom: 48px;
}
.cid-txT8EmGpBW .image-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-txT8EmGpBW .image-wrap {
    justify-content: center;
  }
}
.cid-txT8EmGpBW .image-wrap .image-wrapper:first-child {
  padding: 7rem 20px 0 0;
}
@media (max-width: 992px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper:first-child {
    padding: 0;
  }
}
.cid-txT8EmGpBW .image-wrap .image-wrapper .card {
  max-width: 290px;
  min-width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #17003b;
}
@media (max-width: 1200px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .card {
    min-width: 150px;
  }
}
@media (max-width: 992px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .card {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .card {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .card {
    height: 200px;
  }
}
.cid-txT8EmGpBW .image-wrap .image-wrapper .image {
  max-width: 290px;
  min-width: 200px;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .image {
    border-radius: 20px !important;
  }
}
@media (max-width: 768px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .image {
    min-width: 100px;
  }
}
@media (max-width: 425px) {
  .cid-txT8EmGpBW .image-wrap .image-wrapper .image {
    height: 200px;
  }
}
.cid-txT8EmGpBW .mbr-section-title {
  color: #FFF6EB;
}
.cid-txT8EmGpBW .mbr-text {
  color: #17003b;
}
.cid-txT8EmGpBW .mbr-section-title,
.cid-txT8EmGpBW .mbr-section-btn {
  color: #17003b;
}
.cid-txT8FQh88V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txT8FQh88V .mbr-fallback-image.disabled {
  display: none;
}
.cid-txT8FQh88V .mbr-section-title {
  padding-bottom: 5rem;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-txT8FQh88V .mbr-section-title {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-txT8FQh88V .text-wrapper {
    padding: 0 3rem;
  }
}
.cid-txT8FQh88V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txT8FQh88V img {
  border-radius: 3rem;
}
.cid-txT8FQh88V .mbr-text,
.cid-txT8FQh88V .mbr-section-btn {
  color: #ffffff;
}
.cid-txTagmzmgo {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-txTagmzmgo .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTagmzmgo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTagmzmgo .mbr-text,
.cid-txTagmzmgo .mbr-section-btn {
  text-align: left;
}
.cid-txTagmzmgo .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-txTagmzmgo .mbr-section-subtitle {
  text-align: center;
  color: #3d2e7c;
}
.cid-txTatD7a7F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTatD7a7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTatD7a7F .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTatD7a7F .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #17003b;
  z-index: -1;
}
.cid-txTatD7a7F img {
  border-radius: 1rem;
}
.cid-txTatD7a7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTatD7a7F .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTatD7a7F .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTatD7a7F .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTatD7a7F .mbr-section-title {
  color: #19303d;
}
.cid-txTatD7a7F .mbr-section-subtitle,
.cid-txTatD7a7F .subtitle-wrap {
  color: #ffffff;
}
.cid-txTatD7a7F .mbr-text,
.cid-txTatD7a7F .mbr-section-btn {
  color: #ffffff;
}
.cid-txTaHGUsxp {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-txTaHGUsxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTaHGUsxp .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTaHGUsxp .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTaHGUsxp img {
  border-radius: 1rem;
}
.cid-txTaHGUsxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTaHGUsxp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTaHGUsxp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTaHGUsxp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTaHGUsxp .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTaHGUsxp .mbr-section-subtitle,
.cid-txTaHGUsxp .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTaHGUsxp .mbr-text,
.cid-txTaHGUsxp .mbr-section-btn {
  color: #19303d;
  text-align: left;
}
.cid-txTavdOh0B {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-txTavdOh0B .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTavdOh0B h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-txTavdOh0B h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #17003b;
  z-index: -1;
}
.cid-txTavdOh0B h1 a:hover {
  color: inherit !important;
}
.cid-txTavdOh0B .subtitle-wrap {
  background: white;
  width: fit-content;
  border: 2px dashed currentColor;
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  margin-bottom: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-txTavdOh0B .subtitle-wrap span {
  margin: 0 1rem;
}
.cid-txTavdOh0B .subtitle-wrap .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-txTavdOh0B .arrow {
  background: #17003b;
  border-radius: 50%;
  padding: 5px;
  color: white;
  font-size: 1rem !important;
  border: 1px dashed black;
}
.cid-txTavdOh0B img {
  border-radius: 1rem;
}
.cid-txTavdOh0B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTavdOh0B .row {
  flex-direction: row-reverse;
}
.cid-txTavdOh0B .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTavdOh0B .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTavdOh0B .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTavdOh0B .mbr-section-title {
  color: #ffffff;
}
.cid-txTavdOh0B .mbr-text,
.cid-txTavdOh0B .mbr-section-btn {
  color: #ffffff;
}
.cid-txTavdOh0B .mbr-section-subtitle,
.cid-txTavdOh0B .subtitle-wrap,
.cid-txTavdOh0B .subtitle-align-wrap {
  color: #19303d;
}
.cid-txTbU5wCuE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTbU5wCuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTbU5wCuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTbU5wCuE .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-txTbU5wCuE .embla__slide {
    min-width: 90%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-txTbU5wCuE .embla__slide .svg1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
}
.cid-txTbU5wCuE .embla__slide .svg2 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
  z-index: -1;
}
@media (max-width: 767px) {
  .cid-txTbU5wCuE .embla__slide .svg2 {
    bottom: 18px;
  }
}
.cid-txTbU5wCuE .user {
  background: #17003b;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-txTbU5wCuE .user {
    padding: 4rem 1rem;
  }
}
.cid-txTbU5wCuE .embla__button--next,
.cid-txTbU5wCuE .embla__button--prev {
  display: flex;
}
.cid-txTbU5wCuE .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;
}
@media (max-width: 768px) {
  .cid-txTbU5wCuE .embla__button {
    display: none;
  }
}
.cid-txTbU5wCuE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-txTbU5wCuE .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-txTbU5wCuE .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txTbU5wCuE .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-txTbU5wCuE .embla__button {
    top: auto;
  }
}
.cid-txTbU5wCuE .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-txTbU5wCuE .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-txTbU5wCuE .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-txTbU5wCuE .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-txTbU5wCuE .embla {
  position: relative;
  width: 100%;
}
.cid-txTbU5wCuE .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-txTbU5wCuE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-txTbU5wCuE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-txTbU5wCuE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-txTbU5wCuE .user_text {
  color: #ffffff;
}
.cid-txTbU5wCuE .user_name {
  color: #ffffff;
}
.cid-txTbU5wCuE .user_desk {
  color: #ffffff;
}
.cid-txTbU5wCuE H3 {
  color: #17003b;
}
.cid-txTb4glvjk {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-txTb4glvjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTb4glvjk .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-txTb4glvjk .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-txTb4glvjk img {
  border-radius: 1rem;
}
.cid-txTb4glvjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTb4glvjk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-txTb4glvjk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txTb4glvjk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-txTb4glvjk .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-txTb4glvjk .mbr-section-subtitle,
.cid-txTb4glvjk .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-txTb4glvjk .mbr-text,
.cid-txTb4glvjk .mbr-section-btn {
  color: #19303d;
  text-align: center;
}
.cid-txTbjI3fYi {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-txTbjI3fYi .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTbjI3fYi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@keyframes wave2 {
  0% {
    transform: scaleY(0.8);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.8);
  }
}
.cid-txTbjI3fYi #gentle-wave {
  fill: #17003b;
}
.cid-txTbjI3fYi .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-txTbjI3fYi b {
  font-weight: 900;
}
.cid-txTbjI3fYi .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-txTbjI3fYi img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTbjI3fYi img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-txTbjI3fYi .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-txTbjI3fYi .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-txTbjI3fYi .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-txTbjI3fYi .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-txTbjI3fYi .row {
  align-items: center;
}
.cid-txTbjI3fYi .mbr-section-title {
  color: #ffffff;
}
.cid-txTbjI3fYi .mbr-text,
.cid-txTbjI3fYi .mbr-section-btn {
  color: #ffffff;
}
.cid-txTbjI3fYi .mbr-link,
.cid-txTbjI3fYi .link-wrapper {
  color: #ffffff;
}
.cid-txTbysvLko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-txTbysvLko .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTbysvLko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTbysvLko b,
.cid-txTbysvLko strong {
  font-weight: 900;
}
.cid-txTbysvLko .mbr-section-title {
  color: #17003b;
}
.cid-txTbysvLko .mbr-section-subtitle {
  color: #17003b;
}
.cid-txTbGdXNNX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txTbGdXNNX .mbr-fallback-image.disabled {
  display: none;
}
.cid-txTbGdXNNX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txTbGdXNNX b,
.cid-txTbGdXNNX strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-txTbGdXNNX img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-txTbGdXNNX img {
    padding-bottom: 2rem;
  }
}
.cid-txTbGdXNNX .row {
  align-items: center;
}
.cid-txTbGdXNNX .mbr-section-title {
  color: #17003b;
}
.cid-txTbGdXNNX .mbr-text,
.cid-txTbGdXNNX .mbr-section-btn {
  color: #17003b;
}
.cid-txTbGdXNNX .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ47Lt4tP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqJ47Lt4tP p {
  text-align: center;
}
.cid-tqJ47Lt4tP .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqJ47Lt4tP .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqJ47Lt4tP .logo-footer {
  line-height: normal;
}
.cid-tqJ47Lt4tP .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqJ47Lt4tP .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqJ47Lt4tP li {
  overflow: hidden;
}
.cid-tqJ47Lt4tP .icon-transition span {
  display: block;
}
.cid-tqJ47Lt4tP .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqJ47Lt4tP .list-inline-item a {
  display: block;
}
.cid-tqJ47Lt4tP .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tqJ47Lt4tP .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqJ47Lt4tP .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqJ47Lt4tP .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tqJ47Lt4tP .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqJ47Lt4tP .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqJ47Lt4tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqJ47Lt4tP .logo-footer {
    text-align: center;
  }
  .cid-tqJ47Lt4tP .social-media {
    justify-content: center;
  }
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: relative !important;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-txTx3lwZ1q .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(23, 0, 59, 0);
}
.cid-txTx3lwZ1q .navbar.opened {
  transition: all 0.3s;
}
.cid-txTx3lwZ1q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txTx3lwZ1q .navbar .navbar-logo img {
  width: auto;
}
.cid-txTx3lwZ1q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar.collapsed {
  justify-content: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txTx3lwZ1q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txTx3lwZ1q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txTx3lwZ1q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-txTx3lwZ1q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-txTx3lwZ1q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txTx3lwZ1q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txTx3lwZ1q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txTx3lwZ1q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txTx3lwZ1q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-txTx3lwZ1q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-txTx3lwZ1q .navbar.navbar-short {
  min-height: 60px;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txTx3lwZ1q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txTx3lwZ1q .navbar-logo {
  margin: 0;
}
.cid-txTx3lwZ1q .container,
.cid-txTx3lwZ1q .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .container,
  .cid-txTx3lwZ1q .container-fluid {
    justify-content: space-between;
  }
}
.cid-txTx3lwZ1q .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txTx3lwZ1q .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-txTx3lwZ1q .navbar-brand {
    display: none;
  }
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txTx3lwZ1q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txTx3lwZ1q .dropdown-item:hover,
.cid-txTx3lwZ1q .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-txTx3lwZ1q .dropdown-item:hover span {
  color: white;
}
.cid-txTx3lwZ1q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txTx3lwZ1q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txTx3lwZ1q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txTx3lwZ1q .nav-link {
  position: relative;
}
.cid-txTx3lwZ1q .container {
  display: flex;
  margin: auto;
}
.cid-txTx3lwZ1q .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown-menu,
.cid-txTx3lwZ1q .navbar.opened {
  background: #17003b !important;
}
.cid-txTx3lwZ1q .nav-item:focus,
.cid-txTx3lwZ1q .nav-link:focus {
  outline: none;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-txTx3lwZ1q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-txTx3lwZ1q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txTx3lwZ1q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txTx3lwZ1q .dropdown-item.active,
.cid-txTx3lwZ1q .dropdown-item:active {
  background-color: transparent;
}
.cid-txTx3lwZ1q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txTx3lwZ1q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #17003b;
}
.cid-txTx3lwZ1q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txTx3lwZ1q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txTx3lwZ1q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-txTx3lwZ1q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-txTx3lwZ1q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txTx3lwZ1q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txTx3lwZ1q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txTx3lwZ1q .navbar-dropdown {
  padding: 0 1rem;
}
.cid-txTx3lwZ1q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txTx3lwZ1q .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-txTx3lwZ1q .navbar {
    height: 70px;
  }
  .cid-txTx3lwZ1q .navbar.opened {
    height: auto;
  }
  .cid-txTx3lwZ1q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
