.btn {
  border-width: 2px;
}
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: 5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 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: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
.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: 3rem;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .display-2 {
    font-size: 2rem;
    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: #17003b;
  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: #000000 !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: #ff57be;
  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: #ff009c !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: #6500e0;
  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: #3e0089 !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: #6bffc7;
  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: #14ffa6 !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: #fffa63;
  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: #fff70c !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: #ffb18a;
  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: #ff7733 !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #17003b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #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-tOBBaRhEfx .navbar-dropdown {
  position: absolute !important;
}
.cid-tOBBaRhEfx .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-tOBBaRhEfx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOBBaRhEfx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOBBaRhEfx .dropdown-item:hover,
.cid-tOBBaRhEfx .dropdown-item:focus {
  background: #17003b !important;
  color: white !important;
}
.cid-tOBBaRhEfx .dropdown-item:hover span {
  color: white;
}
.cid-tOBBaRhEfx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOBBaRhEfx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOBBaRhEfx .nav-drop .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOBBaRhEfx .nav-drop .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOBBaRhEfx .nav-link {
  position: relative;
}
.cid-tOBBaRhEfx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tOBBaRhEfx .container {
    flex-wrap: nowrap;
  }
}
.cid-tOBBaRhEfx .dropdown-menu,
.cid-tOBBaRhEfx .navbar.opened {
  background: #000000 !important;
}
.cid-tOBBaRhEfx .nav-item:focus,
.cid-tOBBaRhEfx .nav-link:focus {
  outline: none;
}
.cid-tOBBaRhEfx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOBBaRhEfx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOBBaRhEfx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOBBaRhEfx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOBBaRhEfx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOBBaRhEfx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOBBaRhEfx .navbar {
  min-height: 70px;
  transition: .4s all !important;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  padding: 1.6666666667vw 0 !important;
  border: none !important;
}
.cid-tOBBaRhEfx .navbar.opened {
  transition: all 0.3s;
}
.cid-tOBBaRhEfx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOBBaRhEfx .navbar .navbar-logo img {
  width: auto;
}
.cid-tOBBaRhEfx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOBBaRhEfx .navbar.collapsed {
  justify-content: center;
}
.cid-tOBBaRhEfx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOBBaRhEfx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOBBaRhEfx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-tOBBaRhEfx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOBBaRhEfx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOBBaRhEfx .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-tOBBaRhEfx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOBBaRhEfx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOBBaRhEfx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOBBaRhEfx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOBBaRhEfx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOBBaRhEfx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOBBaRhEfx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOBBaRhEfx .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-tOBBaRhEfx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOBBaRhEfx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOBBaRhEfx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOBBaRhEfx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOBBaRhEfx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOBBaRhEfx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOBBaRhEfx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOBBaRhEfx .navbar-brand {
  min-height: 70px !important;
  flex-shrink: 0;
  align-items: center;
  margin-right: auto;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  font-weight: 500 !important;
  max-width: 25%;
  width: 100%;
}
.cid-tOBBaRhEfx .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500 !important;
}
.cid-tOBBaRhEfx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOBBaRhEfx .dropdown-item.active,
.cid-tOBBaRhEfx .dropdown-item:active {
  background-color: transparent;
}
.cid-tOBBaRhEfx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOBBaRhEfx .nav-drop .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOBBaRhEfx .nav-drop .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOBBaRhEfx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOBBaRhEfx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOBBaRhEfx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOBBaRhEfx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOBBaRhEfx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOBBaRhEfx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOBBaRhEfx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ede7e2;
}
.cid-tOBBaRhEfx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOBBaRhEfx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBBaRhEfx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBBaRhEfx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOBBaRhEfx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBBaRhEfx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOBBaRhEfx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOBBaRhEfx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBBaRhEfx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tOBBaRhEfx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOBBaRhEfx .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-tOBBaRhEfx .navbar {
    height: 70px;
  }
  .cid-tOBBaRhEfx .navbar.opened {
    height: auto;
  }
  .cid-tOBBaRhEfx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOBBaRhEfx .navbar-collapse {
  max-width: 75%;
  width: 100%;
  margin-left: auto;
}
.cid-tOBBaRhEfx .navbar-nav {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  max-width: 70%;
  border-radius: 1.7vw;
  overflow: hidden;
  border: 1px solid #ede7e2;
  background: #000000;
}
.cid-tOBBaRhEfx .navbar-nav .nav-item {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOBBaRhEfx .navbar-nav .nav-link {
  padding: 1.1vw 1.7vw !important;
  margin: 0 !important;
  border-radius: 1.7vw;
  transition: .2s all;
}
.cid-tOBBaRhEfx .navbar-nav .nav-link:hover {
  background-color: #ede7e2;
  color: #000000 !important;
  box-shadow: 2px 0 0 #ede7e2, 0 1px 0 #ede7e2, -2px 0 0 #ede7e2, 0 -1px 0 #ede7e2;
}
@media (min-width: 992px) {
  .cid-tOBBaRhEfx .mbr-section-btn {
    width: 33.33333333%;
    margin: -0.6rem;
    padding-left: 0.6rem;
  }
  .cid-tOBBaRhEfx .mbr-section-btn .btn {
    padding: 1.18vw 2vw;
  }
}
@media (max-width: 991px) {
  .cid-tOBBaRhEfx .mbr-section-btn .btn {
    padding: 3.2vw 3.3vw;
  }
}
.cid-tOBBaRhEfx .mbr-section-btn.custom-section-btn .btn-primary:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-tOBBaRhEfx .mbr-section-btn.custom-section-btn .btn-black:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-tOBBaRhEfx .mbr-section-btn.custom-section-btn .btn-white:hover {
  border: 1px solid #ede7e2 !important;
}
.cid-tOBBaRhEfx .btn-container {
  width: 33.33333333%;
  margin: -0.6rem;
  padding-left: 0.6rem;
}
@media (max-width: 991px) {
  .cid-tOBBaRhEfx .navbar-brand {
    max-width: 60% !important;
    width: 100% !important;
    padding-right: 0 !important;
  }
  .cid-tOBBaRhEfx .navbar-collapse {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding-top: 6vw;
  }
  .cid-tOBBaRhEfx .navbar-nav {
    border: none;
    background: transparent;
    max-width: 100%;
  }
  .cid-tOBBaRhEfx .navbar-nav .nav-item {
    display: list-item;
    margin: 0 !important;
  }
  .cid-tOBBaRhEfx .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 0 0 2.1vw !important;
    border-radius: 0;
    font-size: 7.6vw;
    justify-content: flex-start;
  }
  .cid-tOBBaRhEfx .navbar-nav .nav-item .nav-link:hover {
    background-color: transparent;
    color: #ede7e2 !important;
    box-shadow: none;
  }
  .cid-tOBBaRhEfx .mbr-section-btn {
    margin-top: 6.9vw;
    text-align: left;
  }
  .cid-tOBBaRhEfx .btn-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-tOBBaRhEfx .navbar-nav .nav-item .nav-link {
    margin: 0 0 3vw !important;
    font-size: 9.6vw;
    line-height: 1;
  }
  .cid-tOBBaRhEfx .mbr-section-btn {
    margin-top: 7.5vw;
  }
}
@media (max-width: 575px) {
  .cid-tOBBaRhEfx .navbar-nav .nav-item .nav-link {
    margin: 0 0 5vw !important;
    font-size: 11vw;
    line-height: 1;
  }
  .cid-tOBBaRhEfx .mbr-section-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .cid-tOBBaRhEfx .mbr-section-btn .btn {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
.cid-tqJ3oa7HGE {
  padding-top: 15rem;
  padding-bottom: 15rem;
  background-image: url("../../../assets/images/blockchain-technology-concept-2021-08-26-15-33-00-utc-2000x1167.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: #6bffc7;
}
.cid-tqJ3ClteMg .mbr-text,
.cid-tqJ3ClteMg .mbr-section-btn {
  color: #ffffff;
}
.cid-tqJ3ClteMg .mbr-link,
.cid-tqJ3ClteMg .link-wrapper {
  color: #ffffff;
}
.cid-tqJ3ClteMg .mbr-link,
.cid-tqJ3ClteMg .text-wrapper,
.cid-tqJ3ClteMg path {
  color: #ff57be;
}
.cid-tOBQgOy6Ck {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fff7f0;
}
.cid-tOBQgOy6Ck .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBQgOy6Ck .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBQgOy6Ck .text-primary {
  background-color: #6bffc7;
}
.cid-tOBQgOy6Ck .mbr-section-title {
  color: #17003b;
}
.cid-tqJ3zDkIcR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqJ3zDkIcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ3zDkIcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ3zDkIcR .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #17003b;
  margin-bottom: 3rem;
}
.cid-tqJ3zDkIcR b,
.cid-tqJ3zDkIcR strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tqJ3zDkIcR .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tqJ3zDkIcR .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tqJ3zDkIcR .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tqJ3zDkIcR .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tqJ3zDkIcR .card {
  padding: 0;
}
.cid-tqJ3zDkIcR .container-fluid {
  padding: 0;
}
.cid-tqJ3zDkIcR .container-fluid .row {
  margin: 0;
}
.cid-tqJ3zDkIcR .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tqJ3zDkIcR .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tqJ3zDkIcR .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tqJ3zDkIcR .card1 {
  background: #fffa63;
}
.cid-tqJ3zDkIcR .card2 {
  background: #6bffc7;
}
.cid-tqJ3zDkIcR .card3 {
  background: #ff57be;
}
.cid-tqJ3zDkIcR .card-text,
.cid-tqJ3zDkIcR .mbr-section-btn,
.cid-tqJ3zDkIcR .social-row {
  color: #17003b;
  text-align: left;
}
.cid-tqJ3zDkIcR .card-title,
.cid-tqJ3zDkIcR .social-row {
  color: #17003b;
  text-align: left;
}
.cid-tqJ3zDkIcR .mbr-link,
.cid-tqJ3zDkIcR .content-wrap,
.cid-tqJ3zDkIcR path {
  color: #17003b;
  text-align: center;
}
.cid-tOBPH2088z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tOBPH2088z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBPH2088z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBPH2088z .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #17003b;
  margin-bottom: 3rem;
}
.cid-tOBPH2088z b,
.cid-tOBPH2088z strong {
  font-weight: 900;
}
@keyframes wave1 {
  0% {
    left: -30%;
  }
  100% {
    left: -1%;
  }
}
.cid-tOBPH2088z .link-wrapper {
  width: fit-content;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  padding-bottom: 10px;
}
.cid-tOBPH2088z .link-wrapper .svg1 {
  position: absolute;
  top: 60%;
  width: 130%;
  min-width: 300px;
  left: -30%;
  height: auto;
}
.cid-tOBPH2088z .link-wrapper .svg1 path {
  stroke: currentColor !important;
}
.cid-tOBPH2088z .link-wrapper:hover .svg1 {
  animation: 1s linear forwards infinite wave1;
}
.cid-tOBPH2088z .card {
  padding: 0;
}
.cid-tOBPH2088z .container-fluid {
  padding: 0;
}
.cid-tOBPH2088z .container-fluid .row {
  margin: 0;
}
.cid-tOBPH2088z .card-wrap {
  padding: 8rem 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-tOBPH2088z .card-wrap {
    padding: 4rem 3.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBPH2088z .card-wrap {
    padding: 3rem 1rem;
  }
}
.cid-tOBPH2088z .card1 {
  background: #6be3ff;
}
.cid-tOBPH2088z .card2 {
  background: #ff9966;
}
.cid-tOBPH2088z .card3 {
  background: #ffffff;
}
.cid-tOBPH2088z .card-text,
.cid-tOBPH2088z .mbr-section-btn,
.cid-tOBPH2088z .social-row {
  color: #17003b;
  text-align: left;
}
.cid-tOBPH2088z .card-title,
.cid-tOBPH2088z .social-row {
  color: #17003b;
  text-align: left;
}
.cid-tOBPH2088z .mbr-link,
.cid-tOBPH2088z .content-wrap,
.cid-tOBPH2088z path {
  color: #17003b;
  text-align: center;
}
.cid-tOBYUCoxJq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7f0;
}
.cid-tOBYUCoxJq .row {
  position: relative;
  min-height: 768px;
}
.cid-tOBYUCoxJq .index {
  z-index: 3;
}
.cid-tOBYUCoxJq ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-tOBYUCoxJq li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tOBYUCoxJq ul li::before {
  position: absolute;
  content: "\2192";
  left: -61px;
  top: -15px;
  color: #ff57be;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-tOBYUCoxJq ul li::before {
    top: -5px;
  }
}
.cid-tOBYUCoxJq span {
  background: #ffff33;
}
@media (min-width: 992px) {
  .cid-tOBYUCoxJq img {
    object-fit: cover;
    position: absolute;
  }
  .cid-tOBYUCoxJq .one {
    top: 0;
    right: 10%;
    width: 400px;
    height: 600px;
  }
  .cid-tOBYUCoxJq .two {
    width: 200px;
    height: 140px;
    right: -2%;
    top: 5%;
  }
  .cid-tOBYUCoxJq .three {
    width: 360px;
    height: 360px;
    top: 55%;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .cid-tOBYUCoxJq .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-tOBYUCoxJq img {
    object-fit: cover;
    position: relative;
    width: 30%;
  }
  .cid-tOBYUCoxJq .image-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-tOBYUCoxJq .mbr-text {
  color: #000000;
}
.cid-tOBYUCoxJq .list {
  color: #000000;
}
.cid-tqJ4bXusR9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/manchester-30112017-433-hdr-800x534.jpg");
}
.cid-tqJ4bXusR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ4bXusR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ4bXusR9 .image-wrapper {
  position: relative;
  width: 100%;
}
.cid-tqJ4bXusR9 .image-wrapper img {
  max-width: 800px;
  margin: auto;
  padding-bottom: 2rem;
}
.cid-tqJ4bXusR9 .image-wrapper h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.cid-tqJ4bXusR9 b,
.cid-tqJ4bXusR9 strong {
  font-weight: 900;
}
@media (min-width: 992px) {
  .cid-tqJ4bXusR9 img {
    padding: 0 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tqJ4bXusR9 img {
    padding-bottom: 2rem;
  }
}
.cid-tqJ4bXusR9 .row {
  align-items: center;
}
.cid-tqJ4bXusR9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tqJ4bXusR9 .mbr-text,
.cid-tqJ4bXusR9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tqJ4bXusR9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tOCTYbFga2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #17003b;
}
.cid-tOCTYbFga2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCTYbFga2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCTYbFga2 b,
.cid-tOCTYbFga2 strong {
  font-weight: 900;
}
.cid-tOCTYbFga2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOCTYbFga2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tOCVJL4GTm {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #17003b;
}
.cid-tOCVJL4GTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCVJL4GTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCVJL4GTm b,
.cid-tOCVJL4GTm strong {
  font-weight: 900;
}
.cid-tOCVJL4GTm .mbr-section-title {
  color: #ff57be;
}
.cid-tOCVJL4GTm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqJ4fp53QQ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff7f0;
}
.cid-tqJ4fp53QQ img {
  width: 160px;
  margin: auto;
}
.cid-tqJ4fp53QQ .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tqJ4fp53QQ .card {
    max-width: 25%;
  }
}
.cid-tqJ4fp53QQ .mbr-section-title {
  color: #17003b;
}
.cid-tqJ45Nn7NN {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #17003b;
}
.cid-tqJ45Nn7NN .mbr-overlay {
  background-color: #17003b;
  opacity: 0.4;
}
.cid-tqJ45Nn7NN .btn {
  height: 100%;
  min-height: 70px;
}
.cid-tqJ45Nn7NN .form-group {
  margin: 0 !important;
}
@media (max-width: 992px) {
  .cid-tqJ45Nn7NN .form-group {
    min-width: 100% !important;
    margin-bottom: 1rem;
  }
}
.cid-tqJ45Nn7NN form .row [class*=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tqJ45Nn7NN p {
  margin-bottom: 4rem;
}
.cid-tqJ45Nn7NN h4 {
  margin-bottom: 1rem;
}
.cid-tqJ45Nn7NN .form-control,
.cid-tqJ45Nn7NN .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-tqJ45Nn7NN .form-control::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .form-control::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tqJ45Nn7NN .form-control:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:-moz-placeholder,
.cid-tqJ45Nn7NN .form-control:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:-moz-placeholder {
  color: #17003b;
}
.cid-tqJ45Nn7NN .form-control:hover,
.cid-tqJ45Nn7NN .field-input:hover,
.cid-tqJ45Nn7NN .form-control:focus,
.cid-tqJ45Nn7NN .field-input:focus {
  background-color: #efefef;
  border-color: #ffffff !important;
  color: #17003b;
  box-shadow: none;
  outline: none;
}
.cid-tqJ45Nn7NN .form-control:hover::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input:hover::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .form-control:focus::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input:focus::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .form-control:hover::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input:hover::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .form-control:focus::-webkit-input-placeholder,
.cid-tqJ45Nn7NN .field-input:focus::-webkit-input-placeholder {
  color: #17003b;
}
.cid-tqJ45Nn7NN .form-control:hover:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:hover:-moz-placeholder,
.cid-tqJ45Nn7NN .form-control:focus:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:focus:-moz-placeholder,
.cid-tqJ45Nn7NN .form-control:hover:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:hover:-moz-placeholder,
.cid-tqJ45Nn7NN .form-control:focus:-moz-placeholder,
.cid-tqJ45Nn7NN .field-input:focus:-moz-placeholder {
  color: #17003b;
}
.cid-tqJ45Nn7NN .jq-number__spin:hover,
.cid-tqJ45Nn7NN .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tqJ45Nn7NN .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #17003b;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tqJ45Nn7NN .jq-selectbox li,
.cid-tqJ45Nn7NN .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tqJ45Nn7NN .jq-selectbox li:hover,
.cid-tqJ45Nn7NN .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tqJ45Nn7NN .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tqJ45Nn7NN .jq-number__spin.minus:hover:after,
.cid-tqJ45Nn7NN .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tqJ45Nn7NN .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tqJ45Nn7NN .jq-number__spin.minus:after,
.cid-tqJ45Nn7NN .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tqJ45Nn7NN input::-webkit-clear-button {
  display: none;
}
.cid-tqJ45Nn7NN input::-webkit-inner-spin-button {
  display: none;
}
.cid-tqJ45Nn7NN input::-webkit-outer-spin-button {
  display: none;
}
.cid-tqJ45Nn7NN input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tqJ45Nn7NN H4 {
  color: #ff57be;
}
.cid-tqJ45Nn7NN P {
  color: #ffffff;
}
.cid-tqJ48wZyF3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff7f0;
}
.cid-tqJ48wZyF3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqJ48wZyF3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqJ48wZyF3 .underline {
  text-decoration: underline;
}
.cid-tqJ48wZyF3 .items {
  background: #6bffc7;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-tqJ48wZyF3 .items {
    padding: 3rem 1rem;
  }
}
.cid-tqJ48wZyF3 .card {
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  margin-bottom: 2rem;
}
.cid-tqJ48wZyF3 .text-primary {
  background: #6bffc7;
}
.cid-tqJ48wZyF3 .noborder {
  border-bottom: 0;
}
.cid-tqJ48wZyF3 b,
.cid-tqJ48wZyF3 strong,
.cid-tqJ48wZyF3 a {
  font-weight: 900;
}
.cid-tqJ48wZyF3 .mbr-section-title {
  color: #17003b;
}
.cid-tqJ48wZyF3 .mbr-section-subtitle {
  color: #17003b;
}
.cid-tqJ48wZyF3 .mbr-item-title {
  text-align: center;
  color: #17003b;
}
.cid-tqJ48wZyF3 .mbr-item-text {
  text-align: center;
  color: #17003b;
}
.cid-tqJ48wZyF3 .mbr-item-title,
.cid-tqJ48wZyF3 .card {
  color: #17003b;
}
.cid-tqJ48wZyF3 .mbr-text {
  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;
  text-align: center;
}
.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;
  }
}
