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-tqIJXtw4v9 .navbar-dropdown {
  position: relative !important;
}
.cid-tqIJXtw4v9 .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-tqIJXtw4v9 .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-tqIJXtw4v9 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(101, 0, 224, 0);
}
.cid-tqIJXtw4v9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqIJXtw4v9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqIJXtw4v9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqIJXtw4v9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqIJXtw4v9 .navbar.collapsed {
  justify-content: center;
}
.cid-tqIJXtw4v9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqIJXtw4v9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqIJXtw4v9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqIJXtw4v9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqIJXtw4v9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqIJXtw4v9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqIJXtw4v9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqIJXtw4v9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqIJXtw4v9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqIJXtw4v9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqIJXtw4v9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqIJXtw4v9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqIJXtw4v9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqIJXtw4v9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqIJXtw4v9 .navbar-logo {
  margin: 0;
}
.cid-tqIJXtw4v9 .container,
.cid-tqIJXtw4v9 .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-tqIJXtw4v9 .container,
  .cid-tqIJXtw4v9 .container-fluid {
    justify-content: space-between;
  }
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqIJXtw4v9 .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tqIJXtw4v9 .navbar-brand {
    display: none;
  }
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqIJXtw4v9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqIJXtw4v9 .dropdown-item:hover,
.cid-tqIJXtw4v9 .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-tqIJXtw4v9 .dropdown-item:hover span {
  color: white;
}
.cid-tqIJXtw4v9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqIJXtw4v9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqIJXtw4v9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqIJXtw4v9 .nav-link {
  position: relative;
}
.cid-tqIJXtw4v9 .container {
  display: flex;
  margin: auto;
}
.cid-tqIJXtw4v9 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqIJXtw4v9 .dropdown-menu,
.cid-tqIJXtw4v9 .navbar.opened {
  background: #6500e0 !important;
}
.cid-tqIJXtw4v9 .nav-item:focus,
.cid-tqIJXtw4v9 .nav-link:focus {
  outline: none;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqIJXtw4v9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqIJXtw4v9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqIJXtw4v9 .dropdown-item.active,
.cid-tqIJXtw4v9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqIJXtw4v9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqIJXtw4v9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6500e0;
}
.cid-tqIJXtw4v9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqIJXtw4v9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqIJXtw4v9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqIJXtw4v9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqIJXtw4v9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tqIJXtw4v9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar {
    height: 70px;
  }
  .cid-tqIJXtw4v9 .navbar.opened {
    height: auto;
  }
  .cid-tqIJXtw4v9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqIJXIN4Fu {
  padding-top: 15rem;
  padding-bottom: 8rem;
  background-image: url("https://mobirise.com/extensions/nichem5/assets/images/background1.jpg");
  overflow: hidden;
}
.cid-tqIJXIN4Fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIJXIN4Fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIJXIN4Fu 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-tqIJXIN4Fu b,
.cid-tqIJXIN4Fu strong {
  font-weight: 900;
}
.cid-tqIJXIN4Fu 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-tqIJXIN4Fu a {
  font-weight: 900;
  background: #ff57be;
}
.cid-tqIJXIN4Fu .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqIJXIN4Fu .mbr-text,
.cid-tqIJXIN4Fu .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tqIJXIN4Fu .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqIJZTSFTq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqIJZTSFTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIJZTSFTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIJZTSFTq .container-fluid {
  padding: 0;
}
.cid-tqIMDmEZCj {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fff7f0;
}
.cid-tqIMDmEZCj b,
.cid-tqIMDmEZCj strong {
  font-weight: 900;
}
.cid-tqIMDmEZCj img,
.cid-tqIMDmEZCj .item-img {
  width: 100%;
}
.cid-tqIMDmEZCj .item:focus,
.cid-tqIMDmEZCj span:focus {
  outline: none;
}
.cid-tqIMDmEZCj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqIMDmEZCj .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #fff7f0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqIMDmEZCj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tqIMDmEZCj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqIMDmEZCj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tqIMDmEZCj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tqIMDmEZCj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqIMDmEZCj .mbr-section-title {
  color: #17003b;
}
.cid-tqIMDmEZCj .mbr-text,
.cid-tqIMDmEZCj .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tqIMDmEZCj .item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqIMDmEZCj .item-subtitle {
  text-align: left;
}
.cid-tqIN2N3bms {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-tqIN2N3bms .mbr-media {
  position: relative;
}
.cid-tqIN2N3bms .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tqIN2N3bms .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: white;
  transition: all 0.3s;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqIN2N3bms .icon-wrap:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 767px) {
  .cid-tqIN2N3bms .icon-wrap {
    width: 80px;
    height: 80px;
  }
}
.cid-tqIN2N3bms .mbr-media span {
  font-size: 3rem;
  color: #17003b;
  border-radius: 50%;
  padding-left: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tqIN2N3bms .mbr-media span {
    font-size: 2rem;
  }
}
.cid-tqIN2N3bms .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tqIN2N3bms .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tqIN2N3bms .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tqIN2N3bms .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tqIN2N3bms .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tqIN2N3bms .mbr-section-title {
  color: #ffffff;
}
.cid-tqIN49zmGw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff7f0;
}
.cid-tqIN49zmGw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIN49zmGw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIN49zmGw b,
.cid-tqIN49zmGw strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqIN49zmGw img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIN49zmGw img {
    padding-bottom: 2rem;
  }
}
.cid-tqIN49zmGw .row {
  align-items: center;
}
.cid-tqIN49zmGw .mbr-section-title {
  color: #17003b;
}
.cid-tqIN49zmGw .mbr-text,
.cid-tqIN49zmGw .mbr-section-btn {
  color: #17003b;
}
.cid-tqIN49zmGw .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOK3DzgZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
  overflow: hidden;
}
.cid-tqIJXtw4v9 .navbar-dropdown {
  position: relative !important;
}
.cid-tqIJXtw4v9 .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-tqIJXtw4v9 .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-tqIJXtw4v9 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(101, 0, 224, 0);
}
.cid-tqIJXtw4v9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqIJXtw4v9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqIJXtw4v9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tqIJXtw4v9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqIJXtw4v9 .navbar.collapsed {
  justify-content: center;
}
.cid-tqIJXtw4v9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqIJXtw4v9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqIJXtw4v9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqIJXtw4v9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqIJXtw4v9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqIJXtw4v9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqIJXtw4v9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqIJXtw4v9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqIJXtw4v9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqIJXtw4v9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqIJXtw4v9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqIJXtw4v9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqIJXtw4v9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqIJXtw4v9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqIJXtw4v9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqIJXtw4v9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqIJXtw4v9 .navbar-logo {
  margin: 0;
}
.cid-tqIJXtw4v9 .container,
.cid-tqIJXtw4v9 .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-tqIJXtw4v9 .container,
  .cid-tqIJXtw4v9 .container-fluid {
    justify-content: space-between;
  }
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqIJXtw4v9 .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tqIJXtw4v9 .navbar-brand {
    display: none;
  }
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqIJXtw4v9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqIJXtw4v9 .dropdown-item:hover,
.cid-tqIJXtw4v9 .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-tqIJXtw4v9 .dropdown-item:hover span {
  color: white;
}
.cid-tqIJXtw4v9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqIJXtw4v9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqIJXtw4v9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqIJXtw4v9 .nav-link {
  position: relative;
}
.cid-tqIJXtw4v9 .container {
  display: flex;
  margin: auto;
}
.cid-tqIJXtw4v9 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqIJXtw4v9 .dropdown-menu,
.cid-tqIJXtw4v9 .navbar.opened {
  background: #6500e0 !important;
}
.cid-tqIJXtw4v9 .nav-item:focus,
.cid-tqIJXtw4v9 .nav-link:focus {
  outline: none;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqIJXtw4v9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqIJXtw4v9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqIJXtw4v9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqIJXtw4v9 .dropdown-item.active,
.cid-tqIJXtw4v9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqIJXtw4v9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqIJXtw4v9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqIJXtw4v9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6500e0;
}
.cid-tqIJXtw4v9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqIJXtw4v9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqIJXtw4v9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqIJXtw4v9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqIJXtw4v9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqIJXtw4v9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqIJXtw4v9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqIJXtw4v9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tqIJXtw4v9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqIJXtw4v9 .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-tqIJXtw4v9 .navbar {
    height: 70px;
  }
  .cid-tqIJXtw4v9 .navbar.opened {
    height: auto;
  }
  .cid-tqIJXtw4v9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqIOzeenhf {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("https://mobirise.com/extensions/nichem5/assets/images/background1.jpg");
  overflow: hidden;
}
.cid-tqIOzeenhf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOzeenhf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOzeenhf 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-tqIOzeenhf b,
.cid-tqIOzeenhf strong {
  font-weight: 900;
}
.cid-tqIOzeenhf 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-tqIOzeenhf a {
  font-weight: 900;
  background: #ff57be;
}
.cid-tqIOzeenhf .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOzeenhf .mbr-text,
.cid-tqIOzeenhf .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOzeenhf .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOAMWQJp {
  padding-top: 2rem;
  padding-bottom: 7rem;
  background-color: #17003b;
}
.cid-tqIOAMWQJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOAMWQJp .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-tqIOAMWQJp #gentle-wave {
  fill: #17003b;
}
.cid-tqIOAMWQJp .svg2 {
  background: transparent;
  position: absolute;
  bottom: 100%;
  animation: 5s ease infinite wave2;
  transform: scaleY(0.8);
  transform-origin: bottom;
}
.cid-tqIOAMWQJp b {
  font-weight: 900;
}
.cid-tqIOAMWQJp .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tqIOAMWQJp img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIOAMWQJp img {
    padding-bottom: 2rem;
  }
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqIOAMWQJp .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqIOAMWQJp .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqIOAMWQJp .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqIOAMWQJp .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqIOAMWQJp .row {
  align-items: center;
}
.cid-tqIOAMWQJp .mbr-section-title {
  color: #ffffff;
}
.cid-tqIOAMWQJp .mbr-text,
.cid-tqIOAMWQJp .mbr-section-btn {
  color: #ffffff;
}
.cid-tqIOAMWQJp .mbr-link,
.cid-tqIOAMWQJp .link-wrapper {
  color: #ffffff;
}
.cid-tqIOzMAZv3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOzMAZv3 .item-subtitle {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  color: #17003b;
}
.cid-tqIOzMAZv3 .item-subtitle:before {
  content: '';
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  transition: all 0.3s;
  left: 0;
  background: #6bffc7;
  z-index: -1;
}
.cid-tqIOzMAZv3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tqIOzMAZv3 .item-wrapper:hover .item-subtitle:before {
  width: 0%;
}
@media (min-width: 992px) {
  .cid-tqIOzMAZv3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqIOzMAZv3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqIOzMAZv3 b,
.cid-tqIOzMAZv3 strong {
  font-weight: 900;
}
.cid-tqIOzMAZv3 img,
.cid-tqIOzMAZv3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tqIOzMAZv3 .item:focus,
.cid-tqIOzMAZv3 span:focus {
  outline: none;
}
.cid-tqIOzMAZv3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqIOzMAZv3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqIOzMAZv3 .mbr-section-title {
  color: #17003b;
}
.cid-tqIOzMAZv3 .mbr-text,
.cid-tqIOzMAZv3 .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tqIOzMAZv3 .item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqIOzMAZv3 .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOzMAZv3 .item-subtitle,
.cid-tqIOzMAZv3 .item-content {
  text-align: center;
}
.cid-tqIOzTR4Mu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqIOzTR4Mu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOzTR4Mu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOzTR4Mu .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #17003b;
  margin-bottom: 3rem;
}
.cid-tqIOzTR4Mu b,
.cid-tqIOzTR4Mu strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqIOzTR4Mu .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqIOzTR4Mu .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqIOzTR4Mu .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqIOzTR4Mu .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqIOzTR4Mu .card {
  padding: 0;
}
.cid-tqIOzTR4Mu .container-fluid {
  padding: 0;
}
.cid-tqIOzTR4Mu .container-fluid .row {
  margin: 0;
}
.cid-tqIOzTR4Mu .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqIOzTR4Mu .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tqIOzTR4Mu .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqIOzTR4Mu .card1 {
  background: #fffa63;
}
.cid-tqIOzTR4Mu .card2 {
  background: #6bffc7;
}
.cid-tqIOzTR4Mu .card3 {
  background: #ff57be;
}
.cid-tqIOzTR4Mu .card-text,
.cid-tqIOzTR4Mu .mbr-section-btn,
.cid-tqIOzTR4Mu .social-row {
  color: #17003b;
  text-align: center;
}
.cid-tqIOzTR4Mu .card-title,
.cid-tqIOzTR4Mu .social-row {
  color: #17003b;
  text-align: center;
}
.cid-tqIOzTR4Mu .mbr-link,
.cid-tqIOzTR4Mu .content-wrap,
.cid-tqIOzTR4Mu path {
  color: #17003b;
  text-align: center;
}
.cid-tqIOA0CjPs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOA0CjPs b,
.cid-tqIOA0CjPs strong {
  font-weight: 900;
}
.cid-tqIOA0CjPs img,
.cid-tqIOA0CjPs .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tqIOA0CjPs .item:focus,
.cid-tqIOA0CjPs span:focus {
  outline: none;
}
.cid-tqIOA0CjPs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqIOA0CjPs .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqIOA0CjPs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqIOA0CjPs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqIOA0CjPs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqIOA0CjPs .mbr-section-title {
  color: #17003b;
}
.cid-tqIOA0CjPs .mbr-text,
.cid-tqIOA0CjPs .mbr-section-btn {
  text-align: center;
  color: #17003b;
}
.cid-tqIOA0CjPs .item-title {
  text-align: center;
}
.cid-tqIOA0CjPs .item-subtitle {
  text-align: left;
}
.cid-tqIOAx0qMN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #6be3ff;
}
.cid-tqIOAx0qMN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOAx0qMN .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-tqIOAx0qMN b,
.cid-tqIOAx0qMN strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqIOAx0qMN img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIOAx0qMN img {
    padding-bottom: 2rem;
  }
}
.cid-tqIOAx0qMN .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqIOAx0qMN .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqIOAx0qMN .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqIOAx0qMN .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqIOAx0qMN .row {
  align-items: center;
}
.cid-tqIOAx0qMN .mbr-section-title {
  color: #17003b;
}
.cid-tqIOAx0qMN .mbr-text,
.cid-tqIOAx0qMN .mbr-section-btn {
  color: #ffffff;
}
.cid-tqIOAx0qMN .mbr-link,
.cid-tqIOAx0qMN .link-wrapper {
  color: #ffffff;
}
.cid-tqIOAx0qMN .mbr-text,
.cid-tqIOAx0qMN .text-wrapper {
  color: #17003b;
}
.cid-tqIOAx0qMN .mbr-link,
.cid-tqIOAx0qMN .text-wrapper,
.cid-tqIOAx0qMN path {
  color: #17003b;
}
.cid-tqIOAFaCZF {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tqIOAFaCZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOAFaCZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOAFaCZF .text-primary {
  background-color: #6bffc7;
}
.cid-tqIOAFaCZF .mbr-section-title {
  color: #17003b;
}
.cid-tqIOzlOrXi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-tqIOzlOrXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOzlOrXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOzlOrXi .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tqIOzlOrXi img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIOzlOrXi img {
    padding-bottom: 2rem;
  }
}
.cid-tqIOzlOrXi .row {
  align-items: center;
}
.cid-tqIOzlOrXi .mbr-section-title {
  color: #ffffff;
}
.cid-tqIOzlOrXi .mbr-text,
.cid-tqIOzlOrXi .mbr-section-btn {
  color: #ffffff;
}
.cid-tqIOzlOrXi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqIOAUWhXE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqIOAUWhXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOAUWhXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOAUWhXE b,
.cid-tqIOAUWhXE strong {
  font-weight: 900;
}
.cid-tqIOAUWhXE .mbr-section-title {
  color: #17003b;
}
.cid-tqIOAUWhXE .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOztAEsn {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-color: #17003b;
}
.cid-tqIOztAEsn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOztAEsn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOztAEsn .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOztAEsn .mbr-text,
.cid-tqIOztAEsn .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOztAEsn b,
.cid-tqIOztAEsn strong {
  font-weight: 900;
}
.cid-tqIOztAEsn .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOB5vqNz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqIOB5vqNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOB5vqNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOB5vqNz b,
.cid-tqIOB5vqNz strong {
  font-weight: 900;
}
.cid-tqIOB5vqNz .mbr-section-title {
  color: #17003b;
}
.cid-tqIOB5vqNz .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOBkw8Fe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOBkw8Fe .mbr-media {
  position: relative;
}
.cid-tqIOBkw8Fe .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tqIOBkw8Fe .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: white;
  transition: all 0.3s;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tqIOBkw8Fe .icon-wrap:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 767px) {
  .cid-tqIOBkw8Fe .icon-wrap {
    width: 80px;
    height: 80px;
  }
}
.cid-tqIOBkw8Fe .mbr-media span {
  font-size: 3rem;
  color: #17003b;
  border-radius: 50%;
  padding-left: 0.6rem;
}
@media (max-width: 767px) {
  .cid-tqIOBkw8Fe .mbr-media span {
    font-size: 2rem;
  }
}
.cid-tqIOBkw8Fe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tqIOBkw8Fe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tqIOBkw8Fe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tqIOBkw8Fe .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tqIOBkw8Fe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tqIOBtMeZL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-tqIOBtMeZL .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 1400px) {
  .cid-tqIOBtMeZL .item-wrapper {
    padding: 0 4rem;
  }
}
@media (min-width: 992px) {
  .cid-tqIOBtMeZL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqIOBtMeZL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqIOBtMeZL b,
.cid-tqIOBtMeZL strong {
  font-weight: 900;
}
.cid-tqIOBtMeZL img,
.cid-tqIOBtMeZL .item-img {
  width: 100%;
  height: 100%;
  height: 700px;
  object-fit: cover;
}
.cid-tqIOBtMeZL .item:focus,
.cid-tqIOBtMeZL span:focus {
  outline: none;
}
.cid-tqIOBtMeZL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tqIOBtMeZL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqIOBtMeZL .mbr-section-title {
  color: #ffffff;
}
.cid-tqIOBtMeZL .mbr-text,
.cid-tqIOBtMeZL .mbr-section-btn {
  text-align: center;
}
.cid-tqIOBtMeZL .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOBtMeZL .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tqIOBCP61B {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOBCP61B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOBCP61B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOBCP61B b,
.cid-tqIOBCP61B strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqIOBCP61B img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIOBCP61B img {
    padding-bottom: 2rem;
  }
}
.cid-tqIOBCP61B .row {
  align-items: center;
}
.cid-tqIOBCP61B .mbr-section-title {
  color: #17003b;
}
.cid-tqIOBCP61B .mbr-text,
.cid-tqIOBCP61B .mbr-section-btn {
  color: #17003b;
}
.cid-tqIOBCP61B .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOBLoJvR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #17003b;
}
.cid-tqIOBLoJvR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOBLoJvR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOBLoJvR .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-tqIOBLoJvR .image-wrapper img {
  max-width: 800px;
  margin: auto;
  padding-bottom: 2rem;
}
.cid-tqIOBLoJvR .image-wrapper h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.cid-tqIOBLoJvR b,
.cid-tqIOBLoJvR strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqIOBLoJvR img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqIOBLoJvR img {
    padding-bottom: 2rem;
  }
}
.cid-tqIOBLoJvR .row {
  align-items: center;
}
.cid-tqIOBLoJvR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tqIOBLoJvR .mbr-text,
.cid-tqIOBLoJvR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tqIOBLoJvR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tqIOBTcGM2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tqIOBTcGM2 img {
  width: 160px;
  margin: auto;
}
.cid-tqIOBTcGM2 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tqIOBTcGM2 .card {
    max-width: 25%;
  }
}
.cid-tqIOCFT1VE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #17003b;
}
.cid-tqIOCFT1VE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOCFT1VE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOCFT1VE .image-wrapper {
  margin-left: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tqIOCFT1VE .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tqIOCFT1VE .btn {
    margin-right: 0;
  }
  .cid-tqIOCFT1VE .image-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 0rem;
    margin-right: 0rem;
  }
}
.cid-tqIOCFT1VE a {
  font-weight: 900;
}
.cid-tqIOCFT1VE p {
  line-height: 1.1;
}
.cid-tqIOCFT1VE .text-primary {
  background-color: #6bffc7;
}
.cid-tqIOCFT1VE .d-flex {
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tqIOCFT1VE .d-flex {
    flex-direction: column;
  }
}
.cid-tqIOCFT1VE .mbr-text {
  color: #ffffff;
}
.cid-tqIOCFT1VE .mbr-section-title {
  color: #ffffff;
}
.cid-tqIOCFT1VE .name {
  color: #ffffff;
}
.cid-tqIOCFT1VE .position {
  color: #ffffff;
}
.cid-tqIOCFT1VE .mbr-title {
  color: #ffffff;
}
.cid-tqIOCNGkdi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tqIOCNGkdi img {
  width: 200px;
  margin: auto;
}
.cid-tqIOCNGkdi .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOCNGkdi .mbr-section-title {
  color: #17003b;
}
.cid-tqIOzEGGnu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqIOzEGGnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOzEGGnu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOzEGGnu b,
.cid-tqIOzEGGnu strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqIOzEGGnu .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqIOzEGGnu .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqIOzEGGnu .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqIOzEGGnu .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqIOzEGGnu .card {
  padding: 0;
}
.cid-tqIOzEGGnu .container-fluid {
  padding: 0;
}
.cid-tqIOzEGGnu .container-fluid .row {
  margin: 0;
}
.cid-tqIOzEGGnu .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqIOzEGGnu .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tqIOzEGGnu .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqIOzEGGnu .card1 {
  background: #fffa63;
}
.cid-tqIOzEGGnu .card2 {
  background: #6bffc7;
}
.cid-tqIOzEGGnu .card3 {
  background: #ff57be;
}
.cid-tqIOzEGGnu .card-text,
.cid-tqIOzEGGnu .mbr-section-btn,
.cid-tqIOzEGGnu .social-row {
  color: #17003b;
}
.cid-tqIOzEGGnu .card-title,
.cid-tqIOzEGGnu .social-row {
  color: #17003b;
}
.cid-tqIOzEGGnu .mbr-link,
.cid-tqIOzEGGnu .content-wrap,
.cid-tqIOzEGGnu path {
  color: #17003b;
}
.cid-tqIOCVuMzY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOCVuMzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOCVuMzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOCVuMzY .embla__slide {
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tqIOCVuMzY .embla__slide {
    min-width: 90%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tqIOCVuMzY .embla__slide .svg1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
}
.cid-tqIOCVuMzY .embla__slide .svg2 {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0px;
  background: #ffffff;
  fill: #17003b !important;
  z-index: -1;
}
@media (max-width: 767px) {
  .cid-tqIOCVuMzY .embla__slide .svg2 {
    bottom: 18px;
  }
}
.cid-tqIOCVuMzY .user {
  background: #17003b;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tqIOCVuMzY .user {
    padding: 4rem 1rem;
  }
}
.cid-tqIOCVuMzY .embla__button--next,
.cid-tqIOCVuMzY .embla__button--prev {
  display: flex;
}
.cid-tqIOCVuMzY .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-tqIOCVuMzY .embla__button {
    display: none;
  }
}
.cid-tqIOCVuMzY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tqIOCVuMzY .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tqIOCVuMzY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqIOCVuMzY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tqIOCVuMzY .embla__button {
    top: auto;
  }
}
.cid-tqIOCVuMzY .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tqIOCVuMzY .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tqIOCVuMzY .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tqIOCVuMzY .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tqIOCVuMzY .embla {
  position: relative;
  width: 100%;
}
.cid-tqIOCVuMzY .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tqIOCVuMzY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tqIOCVuMzY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tqIOCVuMzY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tqIOCVuMzY .user_text {
  color: #ffffff;
}
.cid-tqIOCVuMzY .user_name {
  color: #ffffff;
}
.cid-tqIOCVuMzY .user_desk {
  color: #ffffff;
}
.cid-tqIOCVuMzY H3 {
  color: #17003b;
}
.cid-tqIOD4CV8B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-tqIOD4CV8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOD4CV8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOD4CV8B .underline {
  text-decoration: underline;
}
.cid-tqIOD4CV8B .items {
  background: #ffffff;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-tqIOD4CV8B .items {
    padding: 3rem 1rem;
  }
}
.cid-tqIOD4CV8B .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-tqIOD4CV8B .text-primary {
  background: #6bffc7;
}
.cid-tqIOD4CV8B .noborder {
  border-bottom: 0;
}
.cid-tqIOD4CV8B b,
.cid-tqIOD4CV8B strong,
.cid-tqIOD4CV8B a {
  font-weight: 900;
}
.cid-tqIOD4CV8B .mbr-section-title {
  color: #17003b;
}
.cid-tqIOD4CV8B .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqIOD4CV8B .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqIOD4CV8B .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-tqIOD4CV8B .mbr-item-title,
.cid-tqIOD4CV8B .card {
  color: #17003b;
}
.cid-tqIOD4CV8B .mbr-text {
  color: #17003b;
}
.cid-tqIODbJUwF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #17003b;
}
.cid-tqIODbJUwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIODbJUwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIODbJUwF h3,
.cid-tqIODbJUwF a {
  font-weight: 900;
}
.cid-tqIODbJUwF a {
  background: #6bffc7;
}
.cid-tqIODbJUwF .google-map {
  height: 33rem;
  position: relative;
  border-radius: 2rem;
}
.cid-tqIODbJUwF .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-tqIODbJUwF .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-tqIODbJUwF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqIODbJUwF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqIODbJUwF .mbr-section-title {
  color: #ffffff;
}
.cid-tqIOE4bWjg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqIOE4bWjg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOE4bWjg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOE4bWjg .first {
  border-top: 2px solid #17003b;
}
.cid-tqIOE4bWjg .panel-body {
  padding: 2rem 6rem;
}
@media (max-width: 767px) {
  .cid-tqIOE4bWjg .panel-body {
    padding: 2rem 0rem;
  }
}
.cid-tqIOE4bWjg .card-header {
  border-bottom: 2px solid #17003b;
  border-radius: 0;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: relative;
}
.cid-tqIOE4bWjg .card-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #17003b;
  transition: all 0.3s;
}
.cid-tqIOE4bWjg .card-header a,
.cid-tqIOE4bWjg .card-header h6,
.cid-tqIOE4bWjg .card-header span {
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.cid-tqIOE4bWjg .card-header:hover a,
.cid-tqIOE4bWjg .card-header:hover h6,
.cid-tqIOE4bWjg .card-header:hover span {
  color: #ffffff !important;
}
.cid-tqIOE4bWjg .card-header:hover:before {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tqIOE4bWjg .card-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tqIOE4bWjg .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #17003b;
  margin-left: 1rem;
  z-index: 1;
}
.cid-tqIOE4bWjg .panel-group {
  border: none;
}
.cid-tqIOE4bWjg .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tqIOE4bWjg .panel-title-edit {
  color: #17003b;
}
.cid-tqIOE4bWjg .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tqIOE4bWjg H3 {
  color: #17003b;
}
.cid-tqIOE4bWjg .panel-text {
  color: #17003b;
}
.cid-tqIOG4XEUh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
}
.cid-tqIOG4XEUh p {
  text-align: center;
}
.cid-tqIOG4XEUh .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tqIOG4XEUh .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tqIOG4XEUh .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-tqIOG4XEUh .logo-footer {
  line-height: normal;
}
.cid-tqIOG4XEUh .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tqIOG4XEUh .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tqIOG4XEUh .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tqIOG4XEUh li {
  overflow: hidden;
}
.cid-tqIOG4XEUh .icon-transition span {
  display: block;
}
.cid-tqIOG4XEUh .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tqIOG4XEUh .list-inline-item a {
  display: block;
}
.cid-tqIOG4XEUh .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-tqIOG4XEUh .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqIOG4XEUh .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tqIOG4XEUh .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-tqIOG4XEUh .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tqIOG4XEUh .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tqIOG4XEUh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tqIOG4XEUh .logo-footer {
    text-align: center;
  }
  .cid-tqIOG4XEUh .social-media {
    justify-content: center;
  }
}
.cid-tqIOEIGUIt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tqIOEIGUIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOEIGUIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOEIGUIt b,
.cid-tqIOEIGUIt strong {
  font-weight: 900;
}
.cid-tqIOEIGUIt path {
  stroke: #fffa63 !important;
}
.cid-tqIOEIGUIt .mbr-text {
  color: #767676;
}
.cid-tqIOEIGUIt .mbr-section-subtitle {
  color: #767676;
}
.cid-tqIOEIGUIt .card-box {
  position: relative;
  margin: 3rem 0;
}
.cid-tqIOEIGUIt .card-box svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.cid-tqIOEIGUIt .card-box h4,
.cid-tqIOEIGUIt .card-box p,
.cid-tqIOEIGUIt .card-box span {
  z-index: 1;
  position: relative;
}
.cid-tqIOEIGUIt .title .num {
  width: 100%;
  display: block;
}
.cid-tqIOEIGUIt .title .card-title {
  z-index: 1;
}
.cid-tqIOEIGUIt .num {
  color: #17003b;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tqIOEIGUIt * {
    text-align: center !important;
  }
  .cid-tqIOEIGUIt .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tqIOEIGUIt .card-title,
.cid-tqIOEIGUIt .card-img {
  text-align: center;
  color: #17003b;
}
.cid-tqIOEIGUIt .card-text {
  text-align: center;
  color: #17003b;
}
.cid-tqIOEIGUIt .mbr-section-title,
.cid-tqIOEIGUIt .card-box {
  text-align: center;
}
.cid-tqIOER66Dq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqIOER66Dq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOER66Dq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOER66Dq .btn {
  width: 100%;
}
.cid-tqIOER66Dq .mbr-section-btn {
  width: 100%;
}
.cid-tqIOER66Dq b,
.cid-tqIOER66Dq strong {
  font-weight: 900;
}
.cid-tqIOER66Dq .card {
  padding: 0;
}
.cid-tqIOER66Dq .container-fluid {
  padding: 0;
}
.cid-tqIOER66Dq .container-fluid .row {
  margin: 0;
}
.cid-tqIOER66Dq .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqIOER66Dq .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tqIOER66Dq .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqIOER66Dq .card1 {
  background: #fffa63;
}
.cid-tqIOER66Dq .card2 {
  background: #6bffc7;
}
.cid-tqIOER66Dq .card3 {
  background: #ff57be;
}
.cid-tqIOER66Dq .card-text,
.cid-tqIOER66Dq .mbr-section-btn,
.cid-tqIOER66Dq .social-row {
  color: #17003b;
}
.cid-tqIOER66Dq .card-title,
.cid-tqIOER66Dq .social-row {
  color: #17003b;
}
.cid-tqIOER66Dq .mbr-link,
.cid-tqIOER66Dq .content-wrap,
.cid-tqIOER66Dq path {
  color: #17003b;
}
.cid-tqIODL6YkR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #17003b;
}
.cid-tqIODL6YkR .mbr-overlay {
  background-color: #17003b;
  opacity: 0.4;
}
.cid-tqIODL6YkR .btn {
  height: 100%;
  min-height: 70px;
}
.cid-tqIODL6YkR .form-group {
  margin: 0 !important;
}
@media (max-width: 992px) {
  .cid-tqIODL6YkR .form-group {
    min-width: 100% !important;
    margin-bottom: 1rem;
  }
}
.cid-tqIODL6YkR form .row [class*=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqIODL6YkR p {
  margin-bottom: 4rem;
}
.cid-tqIODL6YkR h4 {
  margin-bottom: 1rem;
}
.cid-tqIODL6YkR .form-control,
.cid-tqIODL6YkR .field-input {
  padding: 1.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 0;
  color: #17003b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tqIODL6YkR .form-control::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input::-webkit-input-placeholder,
.cid-tqIODL6YkR .form-control::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tqIODL6YkR .form-control:-moz-placeholder,
.cid-tqIODL6YkR .field-input:-moz-placeholder,
.cid-tqIODL6YkR .form-control:-moz-placeholder,
.cid-tqIODL6YkR .field-input:-moz-placeholder {
  color: #17003b;
}
.cid-tqIODL6YkR .form-control:hover,
.cid-tqIODL6YkR .field-input:hover,
.cid-tqIODL6YkR .form-control:focus,
.cid-tqIODL6YkR .field-input:focus {
  background-color: #efefef;
  border-color: #ffffff !important;
  color: #17003b;
  box-shadow: none;
  outline: none;
}
.cid-tqIODL6YkR .form-control:hover::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input:hover::-webkit-input-placeholder,
.cid-tqIODL6YkR .form-control:focus::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input:focus::-webkit-input-placeholder,
.cid-tqIODL6YkR .form-control:hover::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input:hover::-webkit-input-placeholder,
.cid-tqIODL6YkR .form-control:focus::-webkit-input-placeholder,
.cid-tqIODL6YkR .field-input:focus::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tqIODL6YkR .form-control:hover:-moz-placeholder,
.cid-tqIODL6YkR .field-input:hover:-moz-placeholder,
.cid-tqIODL6YkR .form-control:focus:-moz-placeholder,
.cid-tqIODL6YkR .field-input:focus:-moz-placeholder,
.cid-tqIODL6YkR .form-control:hover:-moz-placeholder,
.cid-tqIODL6YkR .field-input:hover:-moz-placeholder,
.cid-tqIODL6YkR .form-control:focus:-moz-placeholder,
.cid-tqIODL6YkR .field-input:focus:-moz-placeholder {
  color: #17003b;
}
.cid-tqIODL6YkR .jq-number__spin:hover,
.cid-tqIODL6YkR .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tqIODL6YkR .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #17003b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tqIODL6YkR .jq-selectbox li,
.cid-tqIODL6YkR .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tqIODL6YkR .jq-selectbox li:hover,
.cid-tqIODL6YkR .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tqIODL6YkR .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tqIODL6YkR .jq-number__spin.minus:hover:after,
.cid-tqIODL6YkR .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tqIODL6YkR .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tqIODL6YkR .jq-number__spin.minus:after,
.cid-tqIODL6YkR .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tqIODL6YkR input::-webkit-clear-button {
  display: none;
}
.cid-tqIODL6YkR input::-webkit-inner-spin-button {
  display: none;
}
.cid-tqIODL6YkR input::-webkit-outer-spin-button {
  display: none;
}
.cid-tqIODL6YkR input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tqIODL6YkR H4 {
  color: #ffffff;
}
.cid-tqIODL6YkR P {
  color: #ffffff;
}
.cid-tqIOF0vpYX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fff7f0;
}
.cid-tqIOF0vpYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqIOF0vpYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqIOF0vpYX .btn {
  width: 100%;
}
.cid-tqIOF0vpYX .mbr-section-btn {
  width: 100%;
}
.cid-tqIOF0vpYX b,
.cid-tqIOF0vpYX strong {
  font-weight: 900;
}
.cid-tqIOF0vpYX .card {
  padding: 0;
}
.cid-tqIOF0vpYX .container-fluid {
  padding: 0;
}
.cid-tqIOF0vpYX .container-fluid .row {
  margin: 0;
}
.cid-tqIOF0vpYX .card-wrap {
  padding: 2rem 2rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqIOF0vpYX .card-wrap {
    padding: 3rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tqIOF0vpYX .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqIOF0vpYX .card1 {
  background: #ffffff;
}
.cid-tqIOF0vpYX .card2 {
  background: #ffffff;
}
.cid-tqIOF0vpYX .card3 {
  background: #6bffc7;
}
.cid-tqIOF0vpYX .card-text,
.cid-tqIOF0vpYX .mbr-section-btn,
.cid-tqIOF0vpYX .social-row {
  color: #17003b;
}
.cid-tqIOF0vpYX .card-title,
.cid-tqIOF0vpYX .social-row {
  color: #17003b;
}
.cid-tqIOF0vpYX .mbr-link,
.cid-tqIOF0vpYX .content-wrap,
.cid-tqIOF0vpYX path {
  color: #17003b;
}
.cid-tqIOK3DzgZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #17003b;
  overflow: hidden;
}
