body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e85a4f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e85a4f !important;
  border-color: #e85a4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4e04d2 !important;
  border-color: #4e04d2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2e027d !important;
  border-color: #2e027d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2e027d !important;
  border-color: #2e027d !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e85a4f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c6261a !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: #e85a4f !important;
  border-color: #e85a4f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4e04d2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2e027d !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: #4e04d2 !important;
  border-color: #4e04d2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e85a4f !important;
}
.text-secondary {
  color: #4e04d2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b92418 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #29026e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e85a4f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e85a4f;
  border-color: #e85a4f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e85a4f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #e85a4f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #e85a4f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e85a4f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e85a4f;
}
.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: #e85a4f;
  border-bottom-color: #e85a4f;
}
.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: #e85a4f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #4e04d2 !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='%23e85a4f' %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-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhxUqy0tKh {
  background-image: url("../../../assets/images/sugardaddymumbai-1000x665.jpg");
}
.cid-uhxUqy0tKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxUqy0tKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxUqy0tKh .mbr-section-title {
  color: #ffffff;
}
.cid-uojfIPd7oq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uojfIPd7oq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uojfIPd7oq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uojfIPd7oq .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #e85a4f;
  margin-bottom: 2rem;
}
.cid-uojfIPd7oq .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #bbbbbb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uojgjr2epw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhxS6wrOTh {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-uhxS6wrOTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxS6wrOTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uhxS6wrOTh .container {
    max-width: 1400px;
  }
}
.cid-uhxS6wrOTh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-uhxS6wrOTh .row {
  justify-content: center;
}
.cid-uojw6B5R3o {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uojw6B5R3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uojw6B5R3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uojw6B5R3o .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uojw6B5R3o .card {
    margin-bottom: 2rem!important;
  }
  .cid-uojw6B5R3o .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uojw6B5R3o .link-wrap {
    align-items: center;
  }
}
.cid-uojw6B5R3o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uojuXnHz9c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uojuXnHz9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uojuXnHz9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uojuXnHz9c .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uojuXnHz9c .item {
    margin-bottom: 4rem;
  }
}
.cid-uojuXnHz9c .item:last-child .icon-box:before {
  display: none;
}
.cid-uojuXnHz9c .item.last .icon-box:before {
  display: none;
}
.cid-uojuXnHz9c .icon-box {
  background: #4e04d2;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uojuXnHz9c .icon-box {
    margin-right: 1rem;
  }
}
.cid-uojuXnHz9c .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #4e04d2;
  transform: translate(-50%, 0);
}
.cid-uojuXnHz9c span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uojuXnHz9c .card {
    margin-bottom: 2rem;
  }
  .cid-uojuXnHz9c .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uojuXnHz9c .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uojuXnHz9c .icon-box::before {
    top: 114%;
  }
}
.cid-uojySDX5fZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-uojySDX5fZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uojySDX5fZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uojySDX5fZ .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uojySDX5fZ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uhxVe0JmmL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uhxVe0JmmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxVe0JmmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxVe0JmmL .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uhxVe0JmmL .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uhxVe0JmmL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhxVe0JmmL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uhxVe0JmmL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxVe0JmmL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uhxVe0JmmL .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uhxVe0JmmL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uiLijjWKUf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-uiLijjWKUf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiLijjWKUf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiLijjWKUf .mbr-section-title {
  color: #ffffff;
}
.cid-uiLijjWKUf .mbr-text,
.cid-uiLijjWKUf .mbr-section-btn {
  color: #ffffff;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhCm3SMrda {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhCm3SMrda .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCm3SMrda .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCmgmKjZc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhCmgmKjZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCmgmKjZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uhCmgmKjZc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhCmgmKjZc .row {
  flex-direction: row-reverse;
}
.cid-uhCmgmKjZc img {
  width: 100%;
}
.cid-uhCmby3GTv {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCs8KEetX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f2d6;
}
.cid-uhCsNYCPNK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #98dee8;
}
.cid-uhCtc79X03 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uhCuPWhlOQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCuypAMCQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uhCvnhEuRb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffb5b5;
}
.cid-uhCwgYgGZk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #98dee8;
}
.cid-uhCwM1UhbT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
.cid-uhCyEy1OaV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-uhCz5DantX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCzI8ktBn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-uhCmzdI2CL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCmAGJCUA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCmAGJCUA .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhCgDMvfEI {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffb5b5;
}
.cid-uhCgDMvfEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCgDMvfEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCgDMvfEI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uhCgDMvfEI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uhCgDMvfEI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uhCgKY1Y1d {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhCgKY1Y1d img,
.cid-uhCgKY1Y1d .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uhCgKY1Y1d .item:focus,
.cid-uhCgKY1Y1d span:focus {
  outline: none;
}
.cid-uhCgKY1Y1d .item-wrapper {
  position: relative;
}
.cid-uhCgKY1Y1d .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhCgKY1Y1d .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uhCgKY1Y1d .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhCgKY1Y1d .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uhCgKY1Y1d .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uhCgKY1Y1d .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhCgKY1Y1d .mbr-section-title {
  color: #232323;
}
.cid-uhCgKY1Y1d .mbr-text,
.cid-uhCgKY1Y1d .mbr-section-btn {
  text-align: center;
}
.cid-uhCgKY1Y1d .item-title {
  text-align: center;
}
.cid-uhCgKY1Y1d .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uhCgKY1Y1d .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uhCgKY1Y1d .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uhCgKY1Y1d .embla__button--next,
.cid-uhCgKY1Y1d .embla__button--prev {
  display: flex;
}
.cid-uhCgKY1Y1d .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uhCgKY1Y1d .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uhCgKY1Y1d .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uhCgKY1Y1d .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhCgKY1Y1d .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhCgKY1Y1d .embla__button {
    top: auto;
  }
}
.cid-uhCgKY1Y1d .embla {
  position: relative;
  width: 100%;
}
.cid-uhCgKY1Y1d .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uhCgKY1Y1d .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uhCgKY1Y1d .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uhCgKY1Y1d .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uhChifxaBl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhChifxaBl img,
.cid-uhChifxaBl .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uhChifxaBl .item:focus,
.cid-uhChifxaBl span:focus {
  outline: none;
}
.cid-uhChifxaBl .item-wrapper {
  position: relative;
}
.cid-uhChifxaBl .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhChifxaBl .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uhChifxaBl .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhChifxaBl .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uhChifxaBl .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uhChifxaBl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhChifxaBl .mbr-section-title {
  color: #232323;
}
.cid-uhChifxaBl .mbr-text,
.cid-uhChifxaBl .mbr-section-btn {
  text-align: center;
}
.cid-uhChifxaBl .item-title {
  text-align: center;
}
.cid-uhChifxaBl .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uhChifxaBl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uhChifxaBl .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uhChifxaBl .embla__button--next,
.cid-uhChifxaBl .embla__button--prev {
  display: flex;
}
.cid-uhChifxaBl .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uhChifxaBl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uhChifxaBl .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uhChifxaBl .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uhChifxaBl .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhChifxaBl .embla__button {
    top: auto;
  }
}
.cid-uhChifxaBl .embla {
  position: relative;
  width: 100%;
}
.cid-uhChifxaBl .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uhChifxaBl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uhChifxaBl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uhChifxaBl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-uhCDSCqM4u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uhCDSCqM4u nav.navbar {
  position: fixed;
}
.cid-uhCDSCqM4u .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-uhCDSCqM4u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uhCDSCqM4u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uhCDSCqM4u .dropdown-item:hover,
.cid-uhCDSCqM4u .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uhCDSCqM4u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhCDSCqM4u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhCDSCqM4u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uhCDSCqM4u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhCDSCqM4u .nav-link {
  position: relative;
}
.cid-uhCDSCqM4u .container {
  display: flex;
  margin: auto;
}
.cid-uhCDSCqM4u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhCDSCqM4u .dropdown-menu,
.cid-uhCDSCqM4u .navbar.opened {
  background: #ffffff !important;
}
.cid-uhCDSCqM4u .nav-item:focus,
.cid-uhCDSCqM4u .nav-link:focus {
  outline: none;
}
.cid-uhCDSCqM4u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhCDSCqM4u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhCDSCqM4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhCDSCqM4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhCDSCqM4u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhCDSCqM4u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhCDSCqM4u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uhCDSCqM4u .navbar.opened {
  transition: all 0.3s;
}
.cid-uhCDSCqM4u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhCDSCqM4u .navbar .navbar-logo img {
  width: auto;
}
.cid-uhCDSCqM4u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhCDSCqM4u .navbar.collapsed {
  justify-content: center;
}
.cid-uhCDSCqM4u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhCDSCqM4u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhCDSCqM4u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhCDSCqM4u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhCDSCqM4u .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-uhCDSCqM4u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhCDSCqM4u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhCDSCqM4u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhCDSCqM4u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhCDSCqM4u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhCDSCqM4u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhCDSCqM4u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhCDSCqM4u .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-uhCDSCqM4u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhCDSCqM4u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhCDSCqM4u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhCDSCqM4u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhCDSCqM4u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhCDSCqM4u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhCDSCqM4u .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhCDSCqM4u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhCDSCqM4u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhCDSCqM4u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhCDSCqM4u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhCDSCqM4u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhCDSCqM4u .dropdown-item.active,
.cid-uhCDSCqM4u .dropdown-item:active {
  background-color: transparent;
}
.cid-uhCDSCqM4u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhCDSCqM4u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhCDSCqM4u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhCDSCqM4u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhCDSCqM4u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhCDSCqM4u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhCDSCqM4u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhCDSCqM4u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhCDSCqM4u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhCDSCqM4u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhCDSCqM4u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhCDSCqM4u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCDSCqM4u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhCDSCqM4u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhCDSCqM4u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCDSCqM4u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhCDSCqM4u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhCDSCqM4u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhCDSCqM4u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhCDSCqM4u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhCDSCqM4u .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-uhCDSCqM4u .navbar {
    height: 70px;
  }
  .cid-uhCDSCqM4u .navbar.opened {
    height: auto;
  }
  .cid-uhCDSCqM4u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhCDSDa1ku {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhCDSDa1ku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCDSDa1ku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCDSDLb5w {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhCDSDLb5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCDSDLb5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uhCDSDLb5w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhCDSDLb5w .row {
  flex-direction: row-reverse;
}
.cid-uhCDSDLb5w img {
  width: 100%;
}
.cid-uhCDSEgF7k {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCDSEFDDD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f2d6;
}
.cid-uhCDSFqqQ1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #98dee8;
}
.cid-uhCDSFNKLN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uhCDSGbWAD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCDSGBk1T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uhCDSGYNwD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffb5b5;
}
.cid-uhCDSHm4xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #98dee8;
}
.cid-uhDixp5gco {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhDiybusaW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDiybusaW .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDiz5MRut {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDiz5MRut .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDizAHWAw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDizAHWAw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDjodMqIA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDjodMqIA .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDjowNngg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDjowNngg .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDjoVhIvd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDjoVhIvd .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDjpjI0Vb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDjpjI0Vb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhDkT2WUM7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhDkT2WUM7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhCDSJsnhs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCDSJPpXu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhCDSJPpXu .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhCDSKDqRL {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhCDSKDqRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhCDSKDqRL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhCDSKDqRL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhCDSKDqRL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhCDSKDqRL .row {
    text-align: center;
  }
  .cid-uhCDSKDqRL .social-row {
    justify-content: center;
  }
}
.cid-uhCDSKDqRL .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhCDSKDqRL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhCDSKDqRL .list {
    margin-bottom: 0rem;
  }
}
.cid-uhCDSKDqRL .mbr-text {
  color: #bbbbbb;
}
.cid-uhCDSKDqRL .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhDX78AaBm {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhDX78AaBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDX78AaBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDX8NwYXp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhDX8NwYXp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDX8NwYXp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uhDX8NwYXp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhDX8NwYXp .row {
  flex-direction: row-reverse;
}
.cid-uhDX8NwYXp img {
  width: 100%;
}
.cid-uhDYOYHhFw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhE0UVpVOA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhE41ErosS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhE3PiF0Zb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhE3PiF0Zb .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uhE3PiF0Zb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uhE3PiF0Zb .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uhE3PiF0Zb .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhE5AGxOBf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhE8pSzAbN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhE8pSzAbN .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhVyBQPjOq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhVyBQPjOq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhVyBQPjOq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhVyDFGE0v {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhVyDFGE0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhVyDFGE0v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uhVyDFGE0v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhVyDFGE0v .row {
  flex-direction: row-reverse;
}
.cid-uhVyDFGE0v img {
  width: 100%;
}
.cid-uhVyFbbl0C {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhVyMA1ji3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhVyMA1ji3 img,
.cid-uhVyMA1ji3 .item-img {
  width: 100%;
}
.cid-uhVyMA1ji3 .item:focus,
.cid-uhVyMA1ji3 span:focus {
  outline: none;
}
.cid-uhVyMA1ji3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uhVyMA1ji3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhVyMA1ji3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhVyMA1ji3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhVyMA1ji3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhVyMA1ji3 .mbr-section-title {
  color: #232323;
}
.cid-uhVyMA1ji3 .mbr-text,
.cid-uhVyMA1ji3 .mbr-section-btn {
  text-align: left;
}
.cid-uhVyMA1ji3 .item-title {
  text-align: left;
}
.cid-uhVyMA1ji3 .item-subtitle {
  text-align: center;
}
.cid-uhVyNmmv7P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhVyNmmv7P img,
.cid-uhVyNmmv7P .item-img {
  width: 100%;
}
.cid-uhVyNmmv7P .item:focus,
.cid-uhVyNmmv7P span:focus {
  outline: none;
}
.cid-uhVyNmmv7P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uhVyNmmv7P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uhVyNmmv7P .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhVyNmmv7P .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uhVyNmmv7P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uhVyNmmv7P .mbr-section-title {
  color: #232323;
}
.cid-uhVyNmmv7P .mbr-text,
.cid-uhVyNmmv7P .mbr-section-btn {
  text-align: left;
}
.cid-uhVyNmmv7P .item-title {
  text-align: left;
}
.cid-uhVyNmmv7P .item-subtitle {
  text-align: center;
}
.cid-uhVySBbvGf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhZHhxEuza {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhZHhxEuza .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhZHhxEuza .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhZHhxEuza .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uhZKXiUf8E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhVyWDlNn8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhVyWDlNn8 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-ui1hA78xlN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ui1hA78xlN nav.navbar {
  position: fixed;
}
.cid-ui1hA78xlN .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-ui1hA78xlN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ui1hA78xlN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ui1hA78xlN .dropdown-item:hover,
.cid-ui1hA78xlN .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ui1hA78xlN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ui1hA78xlN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ui1hA78xlN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ui1hA78xlN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ui1hA78xlN .nav-link {
  position: relative;
}
.cid-ui1hA78xlN .container {
  display: flex;
  margin: auto;
}
.cid-ui1hA78xlN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ui1hA78xlN .dropdown-menu,
.cid-ui1hA78xlN .navbar.opened {
  background: #ffffff !important;
}
.cid-ui1hA78xlN .nav-item:focus,
.cid-ui1hA78xlN .nav-link:focus {
  outline: none;
}
.cid-ui1hA78xlN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ui1hA78xlN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ui1hA78xlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ui1hA78xlN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ui1hA78xlN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ui1hA78xlN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ui1hA78xlN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ui1hA78xlN .navbar.opened {
  transition: all 0.3s;
}
.cid-ui1hA78xlN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ui1hA78xlN .navbar .navbar-logo img {
  width: auto;
}
.cid-ui1hA78xlN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ui1hA78xlN .navbar.collapsed {
  justify-content: center;
}
.cid-ui1hA78xlN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ui1hA78xlN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ui1hA78xlN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ui1hA78xlN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ui1hA78xlN .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-ui1hA78xlN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ui1hA78xlN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ui1hA78xlN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ui1hA78xlN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ui1hA78xlN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ui1hA78xlN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ui1hA78xlN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ui1hA78xlN .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-ui1hA78xlN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ui1hA78xlN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ui1hA78xlN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ui1hA78xlN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ui1hA78xlN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ui1hA78xlN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ui1hA78xlN .navbar.navbar-short {
  min-height: 60px;
}
.cid-ui1hA78xlN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ui1hA78xlN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ui1hA78xlN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ui1hA78xlN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ui1hA78xlN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ui1hA78xlN .dropdown-item.active,
.cid-ui1hA78xlN .dropdown-item:active {
  background-color: transparent;
}
.cid-ui1hA78xlN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ui1hA78xlN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ui1hA78xlN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ui1hA78xlN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ui1hA78xlN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ui1hA78xlN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui1hA78xlN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ui1hA78xlN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ui1hA78xlN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ui1hA78xlN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ui1hA78xlN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ui1hA78xlN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui1hA78xlN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ui1hA78xlN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ui1hA78xlN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui1hA78xlN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ui1hA78xlN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ui1hA78xlN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ui1hA78xlN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ui1hA78xlN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ui1hA78xlN .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-ui1hA78xlN .navbar {
    height: 70px;
  }
  .cid-ui1hA78xlN .navbar.opened {
    height: auto;
  }
  .cid-ui1hA78xlN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ui1hAkwxu3 {
  background-image: url("../../../assets/images/sdphippiness-1500x1000.jpg");
}
.cid-ui1hAkwxu3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAkwxu3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAmf6jn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ui1hAmf6jn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAmf6jn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ui1hAmf6jn .container {
    max-width: 1400px;
  }
}
.cid-ui1hAmf6jn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4e04d2;
  margin-bottom: 2rem;
}
.cid-ui1hAmf6jn .row {
  justify-content: center;
}
.cid-ui1hAnFLX9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f2d6;
}
.cid-ui1hAnFLX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAnFLX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAnFLX9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-ui1hAnFLX9 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ui1hAnFLX9 .embla__button--next,
.cid-ui1hAnFLX9 .embla__button--prev {
  display: flex;
}
.cid-ui1hAnFLX9 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ui1hAnFLX9 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ui1hAnFLX9 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ui1hAnFLX9 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ui1hAnFLX9 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-ui1hAnFLX9 .embla__button {
    top: auto;
  }
}
.cid-ui1hAnFLX9 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-ui1hAnFLX9 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-ui1hAnFLX9 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-ui1hAnFLX9 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-ui1hAnFLX9 .embla {
  position: relative;
  width: 100%;
}
.cid-ui1hAnFLX9 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ui1hAnFLX9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ui1hAnFLX9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ui1hAnFLX9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ui1hAs63R5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui1hAs63R5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAs63R5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAsLVSB {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hAsLVSB img {
  width: 120px;
  margin: auto;
}
.cid-ui1hAsLVSB .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ui1hAsLVSB .card {
    max-width: 12.5%;
  }
}
.cid-ui1hAtShY5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui1hAtShY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAtShY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAtShY5 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ui1hAtShY5 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ui1hAtShY5 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ui1hAtShY5 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui1hAtShY5 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui1hAtShY5 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ui1hAtShY5 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ui1hAtShY5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ui1hAxtYYm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ui1hAxtYYm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAxtYYm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAxtYYm .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-ui1hAxtYYm .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ui1hAxtYYm .img1 {
  background: #4e04d2;
}
.cid-ui1hAxtYYm .img2 {
  background: #e43f3f;
}
.cid-ui1hAxtYYm .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui1hAxtYYm .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-ui1hAxtYYm .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ui1hAxtYYm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ui1hAxtYYm .card-wrapper {
    flex-direction: column;
  }
  .cid-ui1hAxtYYm .card-box {
    padding: 1rem;
  }
  .cid-ui1hAxtYYm .card-box,
  .cid-ui1hAxtYYm .img-wrapper {
    width: 100%;
  }
  .cid-ui1hAxtYYm .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-ui1hAxtYYm .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-ui1hAxtYYm .card-subtitle {
  color: #0077ff;
}
.cid-ui1hAxtYYm .mbr-text,
.cid-ui1hAxtYYm .link-wrap {
  color: #555555;
}
.cid-ui1hAzls4f {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hAzls4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAzls4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAzls4f .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-ui1hAzls4f .img-wrapper {
  width: 41.66%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ui1hAzls4f .img1 {
  background: #4e04d2;
}
.cid-ui1hAzls4f .img2 {
  background: #e43f3f;
}
.cid-ui1hAzls4f .mbr-iconfont {
  display: block;
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ui1hAzls4f .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-ui1hAzls4f .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ui1hAzls4f .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ui1hAzls4f .card-wrapper {
    flex-direction: column;
  }
  .cid-ui1hAzls4f .card-box {
    padding: 1rem;
  }
  .cid-ui1hAzls4f .card-box,
  .cid-ui1hAzls4f .img-wrapper {
    width: 100%;
  }
  .cid-ui1hAzls4f .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-ui1hAzls4f .mbr-flex {
    flex-direction: column-reverse;
  }
}
.cid-ui1hAzls4f .card-subtitle {
  color: #0077ff;
}
.cid-ui1hAzls4f .mbr-text,
.cid-ui1hAzls4f .link-wrap {
  color: #555555;
}
.cid-ui1hAAqMj9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ui1hAAqMj9 .line {
  background-color: #e43f3f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ui1hABbsay {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hABbsay .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hABbsay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hABbsay ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ui1hABbsay li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-ui1hABbsay ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ui1hAC6S9U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui1hAC6S9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAC6S9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAC6S9U .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ui1hAC6S9U .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ui1hAC6S9U .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ui1hAC6S9U .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui1hAC6S9U .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ui1hAC6S9U .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ui1hAC6S9U .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ui1hADa9Yu {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ui1hADa9Yu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hADa9Yu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hADa9Yu .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-ui1hADa9Yu .mbr-section-title,
.cid-ui1hADa9Yu .mbr-section-subtitle {
  text-align: center;
}
.cid-ui1hADa9Yu .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ui1hADa9Yu .item-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
  background-color: transparent;
}
.cid-ui1hADa9Yu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ui1hADa9Yu .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ui1hADa9Yu .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui1hADa9Yu .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ui1hAF8kh9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hAF8kh9 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ui1hAF8kh9 .icon-box {
  background: #e85a4f;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ui1hAF8kh9 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ui1hAF8kh9 .card {
    margin-bottom: 2rem;
  }
  .cid-ui1hAF8kh9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ui1hAF8kh9 .card-title,
.cid-ui1hAF8kh9 .card-box {
  color: #000000;
}
.cid-ui1hAF8kh9 .icon-text {
  color: #8e8d8a;
}
.cid-ui1hAG54JZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2299aa;
}
.cid-ui1hAG54JZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAG54JZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAG54JZ .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-ui1hAG54JZ .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-ui1hAG54JZ .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-ui1hAG54JZ .wrapper {
  padding: 30px 0;
}
.cid-ui1hAG54JZ .mbr-section-title {
  color: #fafafa;
}
.cid-ui1hAG54JZ .mbr-text,
.cid-ui1hAG54JZ .mbr-section-btn {
  color: #ffffff;
}
.cid-ui1hAJdvb0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ui1hAJdvb0 .carousel {
    min-height: 700px;
  }
  .cid-ui1hAJdvb0 .carousel img {
    max-height: 700px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ui1hAJdvb0 .carousel {
    min-height: 455px;
  }
  .cid-ui1hAJdvb0 .carousel img {
    max-height: 455px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-ui1hAJdvb0 .carousel {
    min-height: 385px;
  }
  .cid-ui1hAJdvb0 .carousel img {
    max-height: 385px;
    object-fit: contain;
  }
  .cid-ui1hAJdvb0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ui1hAJdvb0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ui1hAJdvb0 .carousel,
.cid-ui1hAJdvb0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ui1hAJdvb0 .item-wrapper {
  width: 100%;
}
.cid-ui1hAJdvb0 .carousel-caption {
  bottom: 40px;
}
.cid-ui1hAJdvb0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-ui1hAJdvb0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ui1hAJdvb0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ui1hAJdvb0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ui1hAJdvb0 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ui1hAJdvb0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ui1hAJdvb0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ui1hAJdvb0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ui1hAJdvb0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ui1hAJdvb0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ui1hAJdvb0 .carousel-indicators li.active,
.cid-ui1hAJdvb0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ui1hAJdvb0 .carousel-indicators li::after,
.cid-ui1hAJdvb0 .carousel-indicators li::before {
  content: none;
}
.cid-ui1hAJdvb0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ui1hAJdvb0 .carousel-indicators {
    display: none !important;
  }
}
.cid-ui1hAKyTCG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hAKyTCG .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-ui1hAKyTCG .panel-group {
  border: none;
}
.cid-ui1hAKyTCG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ui1hAKyTCG .panel-body,
.cid-ui1hAKyTCG .card-header {
  padding: 1rem 0;
}
.cid-ui1hAKyTCG .panel-title-edit {
  color: #000000;
}
.cid-ui1hAKyTCG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ui1hAKyTCG H3 {
  color: #e85a4f;
}
.cid-ui1hALPti2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #170585;
}
.cid-ui1hALPti2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hALPti2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hALPti2 .mbr-section-title {
  color: #ffffff;
}
.cid-ui1hAMLwgm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ui1hAMLwgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAMLwgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAMLwgm .nav-tabs .nav-item.open .nav-link:focus,
.cid-ui1hAMLwgm .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ui1hAMLwgm .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-ui1hAMLwgm .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-ui1hAMLwgm .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-ui1hAMLwgm .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-ui1hAMLwgm .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-ui1hAMLwgm .nav-link,
.cid-ui1hAMLwgm .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-ui1hAMLwgm .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-ui1hAMLwgm H4 {
  text-align: center;
}
.cid-ui1hAMLwgm H3 {
  text-align: center;
}
.cid-ui1hAMLwgm P {
  text-align: center;
}
.cid-ui1hANXP5k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ui1hANXP5k .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hANXP5k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hANXP5k .nav-tabs .nav-item.open .nav-link:focus,
.cid-ui1hANXP5k .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ui1hANXP5k .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #6592e6;
}
@media (max-width: 767px) {
  .cid-ui1hANXP5k .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-ui1hANXP5k .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-ui1hANXP5k .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-ui1hANXP5k .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-ui1hANXP5k .nav-link,
.cid-ui1hANXP5k .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-ui1hANXP5k .nav-tabs .nav-link.active {
  color: #6592e6;
  border-bottom: 3px solid #6592e6;
}
.cid-ui1hANXP5k H4 {
  text-align: center;
}
.cid-ui1hANXP5k H3 {
  text-align: center;
}
.cid-ui1hAP2WNt {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ui1hAP2WNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui1hAP2WNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui1hAP2WNt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ui1hAP2WNt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ui1hAP2WNt .row {
    text-align: center;
  }
  .cid-ui1hAP2WNt .social-row {
    justify-content: center;
  }
}
.cid-ui1hAP2WNt .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ui1hAP2WNt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ui1hAP2WNt .list {
    margin-bottom: 0rem;
  }
}
.cid-ui1hAP2WNt .mbr-text {
  color: #bbbbbb;
}
.cid-ui1hAP2WNt .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiQwC5jGjb {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiQwC5jGjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiQwC5jGjb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiQwC5jGjb .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uiQwC5jGjb .panel-group {
  border: none;
}
.cid-uiQwC5jGjb .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uiQwC5jGjb .panel-body,
.cid-uiQwC5jGjb .card-header {
  padding: 1rem 0;
}
.cid-uiQwC5jGjb .panel-title-edit {
  color: #000000;
}
.cid-uiQwC5jGjb .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uvMnfavV6L {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uvMnfavV6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMnfavV6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMnfavV6L .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uvMnfavV6L .panel-group {
  border: none;
}
.cid-uvMnfavV6L .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uvMnfavV6L .panel-body,
.cid-uvMnfavV6L .card-header {
  padding: 1rem 0;
}
.cid-uvMnfavV6L .panel-title-edit {
  color: #000000;
}
.cid-uvMnfavV6L .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiR4jLHyWw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiR4jLHyWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiR4jLHyWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiR4xXQ9BW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiR4xXQ9BW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiR4xXQ9BW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uiR4xXQ9BW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiR4xXQ9BW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uiR4xXQ9BW .text-wrapper {
    padding: 2rem;
  }
}
.cid-uiR4PDCmsg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMwuTb5jt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uvMwuTb5jt h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uvMwuTb5jt img {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .cid-uvMwuTb5jt img {
    width: 90%;
    height: 100%;
    object-fit: cover;
  }
}
.cid-uvMwuTb5jt .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uvMwuTb5jt .mbr-section-subtitle {
  color: #767676;
}
.cid-uvMwuTb5jt .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-uvMwuTb5jt .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uvMwuTb5jt svg {
  overflow: visible;
}
.cid-uvMwuTb5jt ellipse {
  stroke: #efefef;
  stroke-width: 10px;
}
.cid-uvMwuTb5jt path {
  stroke-width: 10px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uvMwuTb5jt .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-uvMwuTb5jt .progress1 path {
  stroke: #ff9083;
}
.cid-uvMwuTb5jt .progress2 path {
  stroke: #72dfe9;
}
.cid-uvMwuTb5jt .progress3 path {
  stroke: #33358c;
}
.cid-uvMwuTb5jt .card-text {
  color: #767676;
}
.cid-uvMwuTb5jt .main-sub-title,
.cid-uvMwuTb5jt .align-wrapper {
  color: #33358c;
}
.cid-uvMwuTb5jt .main-text {
  color: #777d74;
}
.cid-uvMxx5aFLZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  z-index: 1;
}
.cid-uvMxx5aFLZ .card2 {
  margin-top: 2rem;
}
.cid-uvMxx5aFLZ .main-sub-title {
  background: #e7e7fb;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-uvMxx5aFLZ .card-wrapper {
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: visible;
  cursor: pointer;
}
.cid-uvMxx5aFLZ .card-wrapper:hover .img-wrapper {
  transform: translate(8px, 8px);
}
.cid-uvMxx5aFLZ .card-wrapper:hover .img-wrapper:before {
  opacity: 0.7;
}
.cid-uvMxx5aFLZ .card-wrapper:hover .img-wrapper:after {
  opacity: 1;
  transition-delay: 0.15s;
}
.cid-uvMxx5aFLZ .card-wrapper:hover .img-icon {
  opacity: 1;
}
.cid-uvMxx5aFLZ .icon-wrapper {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}
.cid-uvMxx5aFLZ .img-wrapper {
  transition: all 0.3s;
  position: relative;
  border-radius: 8px;
}
.cid-uvMxx5aFLZ .img-wrapper img {
  border-radius: 8px;
  object-fit: cover;
}
.cid-uvMxx5aFLZ .img-wrapper:before {
  position: absolute;
  top: 0;
  border-radius: 8px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  content: '';
  background: #a8aaf1;
  pointer-events: none;
  opacity: 0;
}
.cid-uvMxx5aFLZ .img-wrapper:after {
  position: absolute;
  top: 0;
  border-radius: 8px;
  border: 2px solid #1c1c25;
  transform: translate(-8px, -8px);
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.3s;
  height: 100%;
  content: '';
  background: transparent;
  opacity: 0;
}
.cid-uvMxx5aFLZ .img-icon {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s;
  transform: translate(-60%, -60%);
}
.cid-uvMxx5aFLZ .img-icon .mbr-iconfont {
  font-size: 2rem!important;
}
.cid-uvMxx5aFLZ .card-box {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uvMxx5aFLZ .card-box {
    padding: 1rem;
  }
}
.cid-uvMxx5aFLZ .icon1 {
  background: #a8aaf1;
}
.cid-uvMxx5aFLZ .icon2 {
  background: #ff9083;
}
.cid-uvMxx5aFLZ .icon3 {
  background: #72dfe9;
}
.cid-uvMxx5aFLZ .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #1c1c25 inset;
  border-radius: 50%;
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uvMxx5aFLZ .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uvMxx5aFLZ .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uvMxx5aFLZ .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uvMxx5aFLZ .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1rem;
  color: #1c1c25;
}
.cid-uvMxx5aFLZ .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uvMxx5aFLZ .main-sub-title,
.cid-uvMxx5aFLZ .align-wrapper {
  color: #33358c;
}
.cid-uvMxx5aFLZ .mbr-section-subtitle {
  color: #777d74;
}
.cid-uiRb7Dinon {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMzIF5iqV {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #fafafa;
}
.cid-uvMzIF5iqV .list-group-item {
  background-color: transparent;
  padding: .5rem 2rem;
}
.cid-uvMzIF5iqV .plan-body {
  padding-bottom: 2rem;
}
.cid-uvMzIF5iqV .second-card {
  background: #1c1c25;
}
.cid-uvMzIF5iqV .second-card .plan-title,
.cid-uvMzIF5iqV .second-card .price,
.cid-uvMzIF5iqV .second-card .price-term,
.cid-uvMzIF5iqV .second-card .list-group-item {
  color: #ffffff !important;
}
.cid-uvMzIF5iqV .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.cid-uvMzIF5iqV .plan-header svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) scaleY(0.9);
  z-index: 0;
}
.cid-uvMzIF5iqV .plan-header svg path,
.cid-uvMzIF5iqV .plan-header svg use,
.cid-uvMzIF5iqV .plan-header svg g {
  fill: #bbbbbb !important;
}
.cid-uvMzIF5iqV .plan-title,
.cid-uvMzIF5iqV .plan-price {
  z-index: 2;
  position: relative;
}
.cid-uvMzIF5iqV li {
  position: relative;
}
.cid-uvMzIF5iqV li:before {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #24c373;
  font-size: 0.8rem;
}
.cid-uvMzIF5iqV .plan {
  word-break: break-word;
  border: 2px solid #efefef;
  border-radius: 16px;
  padding-bottom: 2rem;
  padding-top: 1rem;
}
.cid-uvMzIF5iqV .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uvMzIF5iqV .plan {
    margin-bottom: 2rem;
  }
}
.cid-uvMzIF5iqV UL {
  text-align: left;
}
.cid-uvMzIF5iqV .price {
  color: #000000;
}
.cid-uvMBaqPvfj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #fafafa;
}
.cid-uvMBaqPvfj .list-group-item {
  background-color: transparent;
  padding: .5rem 2rem;
}
.cid-uvMBaqPvfj .plan-body {
  padding-bottom: 2rem;
}
.cid-uvMBaqPvfj .second-card {
  background: #1c1c25;
}
.cid-uvMBaqPvfj .second-card .plan-title,
.cid-uvMBaqPvfj .second-card .price,
.cid-uvMBaqPvfj .second-card .price-term,
.cid-uvMBaqPvfj .second-card .list-group-item {
  color: #ffffff !important;
}
.cid-uvMBaqPvfj .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  position: relative;
}
.cid-uvMBaqPvfj .plan-header svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) scaleY(0.9);
  z-index: 0;
}
.cid-uvMBaqPvfj .plan-header svg path,
.cid-uvMBaqPvfj .plan-header svg use,
.cid-uvMBaqPvfj .plan-header svg g {
  fill: #bbbbbb !important;
}
.cid-uvMBaqPvfj .plan-title,
.cid-uvMBaqPvfj .plan-price {
  z-index: 2;
  position: relative;
}
.cid-uvMBaqPvfj li {
  position: relative;
}
.cid-uvMBaqPvfj li:before {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #24c373;
  font-size: 0.8rem;
}
.cid-uvMBaqPvfj .plan {
  word-break: break-word;
  border: 2px solid #efefef;
  border-radius: 16px;
  padding-bottom: 2rem;
  padding-top: 1rem;
}
.cid-uvMBaqPvfj .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
@media (max-width: 991px) {
  .cid-uvMBaqPvfj .plan {
    margin-bottom: 2rem;
  }
}
.cid-uvMBaqPvfj UL {
  text-align: left;
}
.cid-uvMBaqPvfj .price {
  color: #000000;
}
.cid-uvMDAtXiRv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiRfFEqwnV {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-ujjN8EZUiy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujjN8EZUiy nav.navbar {
  position: fixed;
}
.cid-ujjN8EZUiy .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-ujjN8EZUiy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujjN8EZUiy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujjN8EZUiy .dropdown-item:hover,
.cid-ujjN8EZUiy .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ujjN8EZUiy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujjN8EZUiy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujjN8EZUiy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujjN8EZUiy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujjN8EZUiy .nav-link {
  position: relative;
}
.cid-ujjN8EZUiy .container {
  display: flex;
  margin: auto;
}
.cid-ujjN8EZUiy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujjN8EZUiy .dropdown-menu,
.cid-ujjN8EZUiy .navbar.opened {
  background: #ffffff !important;
}
.cid-ujjN8EZUiy .nav-item:focus,
.cid-ujjN8EZUiy .nav-link:focus {
  outline: none;
}
.cid-ujjN8EZUiy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujjN8EZUiy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujjN8EZUiy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujjN8EZUiy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujjN8EZUiy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujjN8EZUiy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujjN8EZUiy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujjN8EZUiy .navbar.opened {
  transition: all 0.3s;
}
.cid-ujjN8EZUiy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujjN8EZUiy .navbar .navbar-logo img {
  width: auto;
}
.cid-ujjN8EZUiy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujjN8EZUiy .navbar.collapsed {
  justify-content: center;
}
.cid-ujjN8EZUiy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujjN8EZUiy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujjN8EZUiy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujjN8EZUiy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujjN8EZUiy .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-ujjN8EZUiy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujjN8EZUiy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujjN8EZUiy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujjN8EZUiy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujjN8EZUiy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujjN8EZUiy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujjN8EZUiy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujjN8EZUiy .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-ujjN8EZUiy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujjN8EZUiy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujjN8EZUiy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujjN8EZUiy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujjN8EZUiy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujjN8EZUiy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ujjN8EZUiy .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujjN8EZUiy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujjN8EZUiy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujjN8EZUiy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujjN8EZUiy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujjN8EZUiy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujjN8EZUiy .dropdown-item.active,
.cid-ujjN8EZUiy .dropdown-item:active {
  background-color: transparent;
}
.cid-ujjN8EZUiy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujjN8EZUiy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujjN8EZUiy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujjN8EZUiy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujjN8EZUiy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujjN8EZUiy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujjN8EZUiy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujjN8EZUiy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujjN8EZUiy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujjN8EZUiy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ujjN8EZUiy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujjN8EZUiy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujjN8EZUiy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujjN8EZUiy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujjN8EZUiy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujjN8EZUiy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujjN8EZUiy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujjN8EZUiy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujjN8EZUiy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujjN8EZUiy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujjN8EZUiy .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-ujjN8EZUiy .navbar {
    height: 70px;
  }
  .cid-ujjN8EZUiy .navbar.opened {
    height: auto;
  }
  .cid-ujjN8EZUiy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujjN8FxlTe {
  background-image: url("../../../assets/images/sugardaddyabudhabi4-1500x1069.jpeg");
}
.cid-ujjN8FxlTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8FxlTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8FxlTe .mbr-section-title {
  color: #ffffff;
}
.cid-ujjN8G6KPA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-ujjN8G6KPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8G6KPA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8G6KPA .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ujjN8G6KPA .team-card:hover {
  transform: translateY(-10px);
}
.cid-ujjN8G6KPA .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ujjN8G6KPA .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujjN8G6KPA .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-ujjN8G6KPA .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujjN8G6KPA .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-ujjN8G6KPA .social-row {
  text-align: center;
}
.cid-ujjN8G6KPA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ujjN8G6KPA .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-ujjN8G6KPA .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ujjN8G6KPA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-ujjN8HaEbd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujjN8Hxq2j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujjN8Hxq2j .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8Hxq2j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8Hxq2j .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ujjN8Hxq2j .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ujjN8Hxq2j .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujjN8Hxq2j .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujjN8Hxq2j .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujjN8Hxq2j .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ujjN8Hxq2j .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ujjN8Hxq2j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ujkjyVdd7I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujkkSrH39Q {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-ujkkSrH39Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkkSrH39Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkkSrH39Q .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #e85a4f;
  margin-bottom: 2rem;
}
.cid-ujkkSrH39Q .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ujjN8I2tcv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujjN8I2tcv img,
.cid-ujjN8I2tcv .item-img {
  width: 100%;
}
.cid-ujjN8I2tcv .item:focus,
.cid-ujjN8I2tcv span:focus {
  outline: none;
}
.cid-ujjN8I2tcv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujjN8I2tcv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujjN8I2tcv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujjN8I2tcv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujjN8I2tcv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujjN8I2tcv .mbr-section-title {
  color: #232323;
}
.cid-ujjN8I2tcv .mbr-text,
.cid-ujjN8I2tcv .mbr-section-btn {
  text-align: center;
}
.cid-ujjN8I2tcv .item-title {
  text-align: center;
}
.cid-ujjN8I2tcv .item-subtitle {
  text-align: left;
}
.cid-ujkvmVgeFP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujkvjsjpn5 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujkvjsjpn5 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ujkvjsjpn5 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ujkvjsjpn5 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ujkvjsjpn5 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujjN8KbfGB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ujjN8KbfGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8KbfGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8KbfGB .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-ujjN8KbfGB .panel-group {
  border: none;
}
.cid-ujjN8KbfGB .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ujjN8KbfGB .panel-body,
.cid-ujjN8KbfGB .card-header {
  padding: 1rem 0;
}
.cid-ujjN8KbfGB .panel-title-edit {
  color: #000000;
}
.cid-ujjN8KbfGB .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ujjN8KMJr3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-ujjN8KMJr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8KMJr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8KMJr3 .mbr-section-title {
  color: #ffffff;
}
.cid-ujjN8KMJr3 .mbr-text,
.cid-ujjN8KMJr3 .mbr-section-btn {
  color: #ffffff;
}
.cid-ujjN8L9xU4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ujjN8L9xU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujjN8L9xU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujjN8L9xU4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ujjN8L9xU4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujjN8L9xU4 .row {
    text-align: center;
  }
  .cid-ujjN8L9xU4 .social-row {
    justify-content: center;
  }
}
.cid-ujjN8L9xU4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ujjN8L9xU4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujjN8L9xU4 .list {
    margin-bottom: 0rem;
  }
}
.cid-ujjN8L9xU4 .mbr-text {
  color: #bbbbbb;
}
.cid-ujjN8L9xU4 .mbr-iconfont {
  color: black;
}
.cid-ujqdwJRTSM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujqdwJRTSM nav.navbar {
  position: fixed;
}
.cid-ujqdwJRTSM .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-ujqdwJRTSM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujqdwJRTSM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujqdwJRTSM .dropdown-item:hover,
.cid-ujqdwJRTSM .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ujqdwJRTSM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujqdwJRTSM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujqdwJRTSM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujqdwJRTSM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujqdwJRTSM .nav-link {
  position: relative;
}
.cid-ujqdwJRTSM .container {
  display: flex;
  margin: auto;
}
.cid-ujqdwJRTSM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujqdwJRTSM .dropdown-menu,
.cid-ujqdwJRTSM .navbar.opened {
  background: #ffffff !important;
}
.cid-ujqdwJRTSM .nav-item:focus,
.cid-ujqdwJRTSM .nav-link:focus {
  outline: none;
}
.cid-ujqdwJRTSM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujqdwJRTSM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujqdwJRTSM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujqdwJRTSM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujqdwJRTSM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujqdwJRTSM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujqdwJRTSM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujqdwJRTSM .navbar.opened {
  transition: all 0.3s;
}
.cid-ujqdwJRTSM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujqdwJRTSM .navbar .navbar-logo img {
  width: auto;
}
.cid-ujqdwJRTSM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujqdwJRTSM .navbar.collapsed {
  justify-content: center;
}
.cid-ujqdwJRTSM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujqdwJRTSM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujqdwJRTSM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujqdwJRTSM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujqdwJRTSM .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-ujqdwJRTSM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujqdwJRTSM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujqdwJRTSM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujqdwJRTSM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujqdwJRTSM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujqdwJRTSM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujqdwJRTSM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujqdwJRTSM .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-ujqdwJRTSM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujqdwJRTSM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujqdwJRTSM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujqdwJRTSM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujqdwJRTSM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujqdwJRTSM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ujqdwJRTSM .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujqdwJRTSM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujqdwJRTSM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujqdwJRTSM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujqdwJRTSM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujqdwJRTSM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujqdwJRTSM .dropdown-item.active,
.cid-ujqdwJRTSM .dropdown-item:active {
  background-color: transparent;
}
.cid-ujqdwJRTSM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujqdwJRTSM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujqdwJRTSM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujqdwJRTSM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujqdwJRTSM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujqdwJRTSM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujqdwJRTSM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujqdwJRTSM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujqdwJRTSM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujqdwJRTSM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ujqdwJRTSM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujqdwJRTSM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujqdwJRTSM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujqdwJRTSM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujqdwJRTSM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujqdwJRTSM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujqdwJRTSM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujqdwJRTSM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujqdwJRTSM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujqdwJRTSM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujqdwJRTSM .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-ujqdwJRTSM .navbar {
    height: 70px;
  }
  .cid-ujqdwJRTSM .navbar.opened {
    height: auto;
  }
  .cid-ujqdwJRTSM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujqdwKn9MA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujqdwKn9MA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqdwKn9MA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqdwLQinJ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujqdwMeBbz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujqdwMeBbz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqdwMeBbz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujqdwMeBbz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujqdwMeBbz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujqdwMeBbz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uokpl5OFTJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokpl5OFTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uokpl5OFTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uokpl5OFTJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uokpl5OFTJ .row {
    flex-direction: column-reverse;
  }
  .cid-uokpl5OFTJ .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uokpl5OFTJ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uokpl5OFTJ .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-uokpl5OFTJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ujqdwNpXXW {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujqdwNPKIX {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujqdwNPKIX .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ujqdwNPKIX .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ujqdwNPKIX .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ujqdwNPKIX .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujqdwPFCKX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokxc4ZkYH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uokxc4ZkYH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uokxc4ZkYH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uokxc4ZkYH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uokxc4ZkYH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uokxc4ZkYH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uokxc4ZkYH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uokxc4ZkYH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uokxc4ZkYH .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uokxc4ZkYH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ujqknaWeTD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujqkjsRo6j {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujqkjsRo6j .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqkjsRo6j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqkjsRo6j .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ujqkjsRo6j .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujqkjsRo6j .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-ujqdwOejyN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ujqdwOejyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqdwOejyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqdwOejyN .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ujqdwOejyN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujqdwOejyN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujqdwOejyN .card-wrapper {
    padding: 4rem;
  }
}
.cid-ujqdwOejyN .mbr-text,
.cid-ujqdwOejyN .mbr-section-btn {
  color: #232323;
}
.cid-ujqdwOejyN .card-title,
.cid-ujqdwOejyN .card-box {
  text-align: left;
  color: #232323;
}
.cid-ujqdwQ4sJL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-ujqdwQ4sJL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqdwQ4sJL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqdwQ4sJL .mbr-section-title {
  color: #ffffff;
}
.cid-ujqdwQ4sJL .mbr-text,
.cid-ujqdwQ4sJL .mbr-section-btn {
  color: #ffffff;
}
.cid-ujqdwRdaxa {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ujqdwRdaxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqdwRdaxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqdwRdaxa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ujqdwRdaxa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujqdwRdaxa .row {
    text-align: center;
  }
  .cid-ujqdwRdaxa .social-row {
    justify-content: center;
  }
}
.cid-ujqdwRdaxa .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ujqdwRdaxa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujqdwRdaxa .list {
    margin-bottom: 0rem;
  }
}
.cid-ujqdwRdaxa .mbr-text {
  color: #bbbbbb;
}
.cid-ujqdwRdaxa .mbr-iconfont {
  color: black;
}
.cid-ujSHKTGumT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujSHKTGumT nav.navbar {
  position: fixed;
}
.cid-ujSHKTGumT .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-ujSHKTGumT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujSHKTGumT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujSHKTGumT .dropdown-item:hover,
.cid-ujSHKTGumT .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ujSHKTGumT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujSHKTGumT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujSHKTGumT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujSHKTGumT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujSHKTGumT .nav-link {
  position: relative;
}
.cid-ujSHKTGumT .container {
  display: flex;
  margin: auto;
}
.cid-ujSHKTGumT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujSHKTGumT .dropdown-menu,
.cid-ujSHKTGumT .navbar.opened {
  background: #ffffff !important;
}
.cid-ujSHKTGumT .nav-item:focus,
.cid-ujSHKTGumT .nav-link:focus {
  outline: none;
}
.cid-ujSHKTGumT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujSHKTGumT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujSHKTGumT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujSHKTGumT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujSHKTGumT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujSHKTGumT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujSHKTGumT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujSHKTGumT .navbar.opened {
  transition: all 0.3s;
}
.cid-ujSHKTGumT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujSHKTGumT .navbar .navbar-logo img {
  width: auto;
}
.cid-ujSHKTGumT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujSHKTGumT .navbar.collapsed {
  justify-content: center;
}
.cid-ujSHKTGumT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujSHKTGumT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujSHKTGumT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujSHKTGumT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujSHKTGumT .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-ujSHKTGumT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujSHKTGumT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujSHKTGumT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujSHKTGumT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujSHKTGumT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujSHKTGumT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujSHKTGumT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujSHKTGumT .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-ujSHKTGumT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujSHKTGumT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujSHKTGumT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujSHKTGumT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujSHKTGumT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujSHKTGumT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ujSHKTGumT .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujSHKTGumT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujSHKTGumT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujSHKTGumT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujSHKTGumT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujSHKTGumT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujSHKTGumT .dropdown-item.active,
.cid-ujSHKTGumT .dropdown-item:active {
  background-color: transparent;
}
.cid-ujSHKTGumT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujSHKTGumT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujSHKTGumT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujSHKTGumT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujSHKTGumT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujSHKTGumT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujSHKTGumT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujSHKTGumT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujSHKTGumT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujSHKTGumT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ujSHKTGumT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujSHKTGumT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujSHKTGumT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujSHKTGumT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujSHKTGumT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujSHKTGumT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujSHKTGumT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujSHKTGumT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujSHKTGumT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujSHKTGumT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujSHKTGumT .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-ujSHKTGumT .navbar {
    height: 70px;
  }
  .cid-ujSHKTGumT .navbar.opened {
    height: auto;
  }
  .cid-ujSHKTGumT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujSHKULwCO {
  background-image: url("../../../assets/images/sugardaddysharjah-1500x1069.jpg");
}
.cid-ujSHKULwCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSHKULwCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSHKULwCO .mbr-section-title {
  color: #ffffff;
}
.cid-ujSHKVubvC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-ujSHKVubvC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSHKVubvC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSHKVubvC .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ujSHKVubvC .team-card:hover {
  transform: translateY(-10px);
}
.cid-ujSHKVubvC .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ujSHKVubvC .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujSHKVubvC .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-ujSHKVubvC .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujSHKVubvC .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-ujSHKVubvC .social-row {
  text-align: center;
}
.cid-ujSHKVubvC .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ujSHKVubvC .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-ujSHKVubvC .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ujSHKVubvC .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-ujSHKWRzCw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujSHKXt3bk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujSHKXt3bk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSHKXt3bk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSHKXt3bk .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ujSHKXt3bk .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ujSHKXt3bk .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujSHKXt3bk .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujSHKXt3bk .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujSHKXt3bk .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ujSHKXt3bk .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ujSHKXt3bk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ujSHKYdYLi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujSS6YeCQL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ujSS6YeCQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSS6YeCQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSS6YeCQL .card-wrapper {
  padding: 4rem;
  background-color: #fafafa;
  border-radius: 4px;
}
.cid-ujSS6YeCQL .row {
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cid-ujSS6YeCQL .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-ujSS6YeCQL .card-wrapper {
    padding: 1rem;
  }
}
.cid-ujSS6YeCQL ul {
  list-style: none;
}
.cid-ujSS6YeCQL li {
  position: relative;
}
.cid-ujSS6YeCQL li:before {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  font-size: 0.8rem;
}
.cid-ujSS6YeCQL .mbr-section-btn {
  width: 100%;
}
.cid-ujSS6YeCQL .btn {
  width: 100%;
}
.cid-ujSHKZETSE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujSHKZETSE img,
.cid-ujSHKZETSE .item-img {
  width: 100%;
}
.cid-ujSHKZETSE .item:focus,
.cid-ujSHKZETSE span:focus {
  outline: none;
}
.cid-ujSHKZETSE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujSHKZETSE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujSHKZETSE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujSHKZETSE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujSHKZETSE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujSHKZETSE .mbr-section-title {
  color: #232323;
}
.cid-ujSHKZETSE .mbr-text,
.cid-ujSHKZETSE .mbr-section-btn {
  text-align: center;
}
.cid-ujSHKZETSE .item-title {
  text-align: center;
}
.cid-ujSHKZETSE .item-subtitle {
  text-align: left;
}
.cid-ujTqnpx4wF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujTqnpx4wF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTqnpx4wF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTqnpx4wF .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-ujTqnpx4wF .item {
    margin-bottom: 4rem;
  }
}
.cid-ujTqnpx4wF .item:last-child .icon-box:before {
  display: none;
}
.cid-ujTqnpx4wF .item.last .icon-box:before {
  display: none;
}
.cid-ujTqnpx4wF .icon-box {
  background: #e85a4f;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ujTqnpx4wF .icon-box {
    margin-right: 1rem;
  }
}
.cid-ujTqnpx4wF .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #e85a4f;
  transform: translate(-50%, 0);
}
.cid-ujTqnpx4wF span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ujTqnpx4wF .card {
    margin-bottom: 2rem;
  }
  .cid-ujTqnpx4wF .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-ujTqnpx4wF .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-ujTqnpx4wF .icon-box::before {
    top: 114%;
  }
}
.cid-ujSHL2E4Xs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-ujSHL2E4Xs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSHL2E4Xs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSHL2E4Xs .mbr-section-title {
  color: #ffffff;
}
.cid-ujSHL2E4Xs .mbr-text,
.cid-ujSHL2E4Xs .mbr-section-btn {
  color: #ffffff;
}
.cid-ujSHL3za4b {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ujSHL3za4b .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSHL3za4b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujSHL3za4b .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ujSHL3za4b .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujSHL3za4b .row {
    text-align: center;
  }
  .cid-ujSHL3za4b .social-row {
    justify-content: center;
  }
}
.cid-ujSHL3za4b .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ujSHL3za4b .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujSHL3za4b .list {
    margin-bottom: 0rem;
  }
}
.cid-ujSHL3za4b .mbr-text {
  color: #bbbbbb;
}
.cid-ujSHL3za4b .mbr-iconfont {
  color: black;
}
.cid-ujTAbdiB7E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujTAbdiB7E nav.navbar {
  position: fixed;
}
.cid-ujTAbdiB7E .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-ujTAbdiB7E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujTAbdiB7E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujTAbdiB7E .dropdown-item:hover,
.cid-ujTAbdiB7E .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ujTAbdiB7E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujTAbdiB7E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujTAbdiB7E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujTAbdiB7E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujTAbdiB7E .nav-link {
  position: relative;
}
.cid-ujTAbdiB7E .container {
  display: flex;
  margin: auto;
}
.cid-ujTAbdiB7E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujTAbdiB7E .dropdown-menu,
.cid-ujTAbdiB7E .navbar.opened {
  background: #ffffff !important;
}
.cid-ujTAbdiB7E .nav-item:focus,
.cid-ujTAbdiB7E .nav-link:focus {
  outline: none;
}
.cid-ujTAbdiB7E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujTAbdiB7E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujTAbdiB7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujTAbdiB7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujTAbdiB7E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujTAbdiB7E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujTAbdiB7E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujTAbdiB7E .navbar.opened {
  transition: all 0.3s;
}
.cid-ujTAbdiB7E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujTAbdiB7E .navbar .navbar-logo img {
  width: auto;
}
.cid-ujTAbdiB7E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujTAbdiB7E .navbar.collapsed {
  justify-content: center;
}
.cid-ujTAbdiB7E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujTAbdiB7E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujTAbdiB7E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujTAbdiB7E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujTAbdiB7E .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-ujTAbdiB7E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujTAbdiB7E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujTAbdiB7E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujTAbdiB7E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujTAbdiB7E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujTAbdiB7E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujTAbdiB7E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujTAbdiB7E .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-ujTAbdiB7E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujTAbdiB7E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujTAbdiB7E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujTAbdiB7E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujTAbdiB7E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujTAbdiB7E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ujTAbdiB7E .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujTAbdiB7E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujTAbdiB7E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujTAbdiB7E .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujTAbdiB7E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujTAbdiB7E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujTAbdiB7E .dropdown-item.active,
.cid-ujTAbdiB7E .dropdown-item:active {
  background-color: transparent;
}
.cid-ujTAbdiB7E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujTAbdiB7E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujTAbdiB7E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujTAbdiB7E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujTAbdiB7E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujTAbdiB7E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujTAbdiB7E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujTAbdiB7E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujTAbdiB7E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujTAbdiB7E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ujTAbdiB7E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujTAbdiB7E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujTAbdiB7E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujTAbdiB7E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujTAbdiB7E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujTAbdiB7E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujTAbdiB7E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujTAbdiB7E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujTAbdiB7E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujTAbdiB7E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujTAbdiB7E .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-ujTAbdiB7E .navbar {
    height: 70px;
  }
  .cid-ujTAbdiB7E .navbar.opened {
    height: auto;
  }
  .cid-ujTAbdiB7E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujTAbeQe7j {
  background-image: url("../../../assets/images/sugardaddyajman-1500x1069.jpg");
}
.cid-ujTAbeQe7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTAbeQe7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTAbeQe7j .mbr-section-title {
  color: #ffffff;
}
.cid-ujTAbfNODa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-ujTAbfNODa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTAbfNODa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTAbfNODa .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-ujTAbfNODa .team-card:hover {
  transform: translateY(-10px);
}
.cid-ujTAbfNODa .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-ujTAbfNODa .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ujTAbfNODa .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-ujTAbfNODa .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujTAbfNODa .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-ujTAbfNODa .social-row {
  text-align: center;
}
.cid-ujTAbfNODa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ujTAbfNODa .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-ujTAbfNODa .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ujTAbfNODa .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-ujTAbhcOqC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujTAbhCwBB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujTAbhCwBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTAbhCwBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTAbhCwBB .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ujTAbhCwBB .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ujTAbhCwBB .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujTAbhCwBB .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujTAbhCwBB .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujTAbhCwBB .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ujTAbhCwBB .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ujTAbhCwBB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ujTAbjo2uA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujTAbjo2uA img,
.cid-ujTAbjo2uA .item-img {
  width: 100%;
}
.cid-ujTAbjo2uA .item:focus,
.cid-ujTAbjo2uA span:focus {
  outline: none;
}
.cid-ujTAbjo2uA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ujTAbjo2uA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ujTAbjo2uA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujTAbjo2uA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ujTAbjo2uA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujTAbjo2uA .mbr-section-title {
  color: #232323;
}
.cid-ujTAbjo2uA .mbr-text,
.cid-ujTAbjo2uA .mbr-section-btn {
  text-align: center;
}
.cid-ujTAbjo2uA .item-title {
  text-align: center;
}
.cid-ujTAbjo2uA .item-subtitle {
  text-align: left;
}
.cid-ujTWDCE95a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujTYMQ1p36 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujTYMQ1p36 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ujTYMQ1p36 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ujTYMQ1p36 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ujTYMQ1p36 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #e85a4f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujTZWEHwcD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujTAblR28g {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ujTAblR28g .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujTAblR28g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujTAblR28g .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ujTAblR28g .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujTAblR28g .row {
    text-align: center;
  }
  .cid-ujTAblR28g .social-row {
    justify-content: center;
  }
}
.cid-ujTAblR28g .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ujTAblR28g .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujTAblR28g .list {
    margin-bottom: 0rem;
  }
}
.cid-ujTAblR28g .mbr-text {
  color: #bbbbbb;
}
.cid-ujTAblR28g .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukDjzK6ULG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffb5b5;
}
.cid-ukDjzK6ULG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukDjzK6ULG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukDjzK6ULG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ukDjzK6ULG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukDjzK6ULG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukDjDqJ2RK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-ukDjDqJ2RK img,
.cid-ukDjDqJ2RK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukDjDqJ2RK .item:focus,
.cid-ukDjDqJ2RK span:focus {
  outline: none;
}
.cid-ukDjDqJ2RK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukDjDqJ2RK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukDjDqJ2RK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ukDjDqJ2RK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukDjDqJ2RK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ukDjDqJ2RK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ukDjDqJ2RK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukDjDqJ2RK .mbr-section-title {
  color: #232323;
}
.cid-ukDjDqJ2RK .mbr-text,
.cid-ukDjDqJ2RK .mbr-section-btn {
  text-align: left;
}
.cid-ukDjDqJ2RK .item-title {
  text-align: left;
}
.cid-ukDjDqJ2RK .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukDKlUFnnP {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukDKlUFnnP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukDKlUFnnP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukDLv3yyuH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukDMsiIeJJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ukDMTWm6l7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukDMTWm6l7 img,
.cid-ukDMTWm6l7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ukDMTWm6l7 .item:focus,
.cid-ukDMTWm6l7 span:focus {
  outline: none;
}
.cid-ukDMTWm6l7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukDMTWm6l7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukDMTWm6l7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukDMTWm6l7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukDMTWm6l7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukDMTWm6l7 .mbr-section-title {
  color: #232323;
}
.cid-ukDMTWm6l7 .mbr-text,
.cid-ukDMTWm6l7 .mbr-section-btn {
  text-align: left;
}
.cid-ukDMTWm6l7 .item-title {
  text-align: left;
  color: #000000;
}
.cid-ukDMTWm6l7 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-ukEapofEeR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ukEapofEeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEapofEeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ukEapofEeR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ukEapofEeR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukEapofEeR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ukEapofEeR .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-ukEapofEeR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukEapofEeR .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ukEctd4cz2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEd6gxywK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-ukEd6gxywK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEd6gxywK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-ukEd6gxywK .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ukEd6gxywK .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukEd6gxywK .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ukEd6gxywK .item-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-ukEd6gxywK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ukEd6gxywK .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ukEiSw9hDh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukENqP94WJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukENqP94WJ .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukEwmKyO1H {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEwmKyO1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEwmKyO1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEDZGonZP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEDZGonZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEDZGonZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ukEDZGonZP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ukEDZGonZP .row {
  flex-direction: row-reverse;
}
.cid-ukEDZGonZP img {
  width: 100%;
}
.cid-ukEwnsuaAI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEz69bKRO {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEBGL2gtM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukEEwXQWvD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukEEwXQWvD img,
.cid-ukEEwXQWvD .item-img {
  width: 100%;
}
.cid-ukEEwXQWvD .item:focus,
.cid-ukEEwXQWvD span:focus {
  outline: none;
}
.cid-ukEEwXQWvD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukEEwXQWvD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukEEwXQWvD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukEEwXQWvD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukEEwXQWvD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukEEwXQWvD .mbr-section-title {
  color: #232323;
}
.cid-ukEEwXQWvD .mbr-text,
.cid-ukEEwXQWvD .mbr-section-btn {
  text-align: left;
}
.cid-ukEEwXQWvD .item-title {
  text-align: left;
}
.cid-ukEEwXQWvD .item-subtitle {
  text-align: center;
}
.cid-ukEFYWGd1D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukEHnD45Zd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ukEHnD45Zd .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-ukK37xPF2o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukK37xPF2o nav.navbar {
  position: fixed;
}
.cid-ukK37xPF2o .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-ukK37xPF2o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukK37xPF2o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukK37xPF2o .dropdown-item:hover,
.cid-ukK37xPF2o .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ukK37xPF2o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukK37xPF2o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukK37xPF2o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukK37xPF2o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukK37xPF2o .nav-link {
  position: relative;
}
.cid-ukK37xPF2o .container {
  display: flex;
  margin: auto;
}
.cid-ukK37xPF2o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukK37xPF2o .dropdown-menu,
.cid-ukK37xPF2o .navbar.opened {
  background: #ffffff !important;
}
.cid-ukK37xPF2o .nav-item:focus,
.cid-ukK37xPF2o .nav-link:focus {
  outline: none;
}
.cid-ukK37xPF2o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukK37xPF2o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukK37xPF2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukK37xPF2o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukK37xPF2o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukK37xPF2o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukK37xPF2o .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ukK37xPF2o .navbar.opened {
  transition: all 0.3s;
}
.cid-ukK37xPF2o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukK37xPF2o .navbar .navbar-logo img {
  width: auto;
}
.cid-ukK37xPF2o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukK37xPF2o .navbar.collapsed {
  justify-content: center;
}
.cid-ukK37xPF2o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukK37xPF2o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukK37xPF2o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukK37xPF2o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukK37xPF2o .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-ukK37xPF2o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukK37xPF2o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukK37xPF2o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukK37xPF2o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukK37xPF2o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukK37xPF2o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukK37xPF2o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukK37xPF2o .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-ukK37xPF2o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukK37xPF2o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukK37xPF2o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukK37xPF2o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukK37xPF2o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukK37xPF2o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ukK37xPF2o .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukK37xPF2o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukK37xPF2o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukK37xPF2o .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukK37xPF2o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukK37xPF2o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukK37xPF2o .dropdown-item.active,
.cid-ukK37xPF2o .dropdown-item:active {
  background-color: transparent;
}
.cid-ukK37xPF2o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukK37xPF2o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukK37xPF2o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukK37xPF2o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukK37xPF2o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukK37xPF2o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukK37xPF2o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukK37xPF2o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukK37xPF2o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukK37xPF2o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukK37xPF2o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukK37xPF2o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukK37xPF2o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukK37xPF2o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukK37xPF2o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukK37xPF2o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukK37xPF2o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukK37xPF2o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukK37xPF2o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukK37xPF2o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukK37xPF2o .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-ukK37xPF2o .navbar {
    height: 70px;
  }
  .cid-ukK37xPF2o .navbar.opened {
    height: auto;
  }
  .cid-ukK37xPF2o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukK37zPySN {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukK37zPySN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukK37zPySN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukK37BPbOf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukK37Ci1gd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukK37Ci1gd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukK37Ci1gd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ukK37Ci1gd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ukK37Ci1gd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukK37Ci1gd .text-wrapper {
    padding: 2rem;
  }
}
.cid-ukK37D6TCG {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukK37DwMlN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ukK37DwMlN .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ukK37DwMlN .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ukK37DwMlN .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ukK37DwMlN .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukK37G88rp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokYIHyYRh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokYIHyYRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uokYIHyYRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uokYIHyYRh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uokYIHyYRh .row {
  flex-direction: row-reverse;
}
.cid-uokYIHyYRh img {
  width: 100%;
}
.cid-uokYmlCcWe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokZgKcKuU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uokZdP3WLU {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uokZdP3WLU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uokZdP3WLU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uokZdP3WLU .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uokZdP3WLU .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uokZdP3WLU .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uol0Hzj7JL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uol0Hzj7JL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uol0Hzj7JL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uol0Hzj7JL .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uol0Hzj7JL .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uol0Hzj7JL .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uol0Hzj7JL .card {
    margin-bottom: 2rem;
  }
  .cid-uol0Hzj7JL .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uol0Hzj7JL .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uol43rFXEd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uol43rFXEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uol43rFXEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uol43rFXEd .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uol43rFXEd .panel-group {
  border: none;
}
.cid-uol43rFXEd .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uol43rFXEd .panel-body,
.cid-uol43rFXEd .card-header {
  padding: 1rem 0;
}
.cid-uol43rFXEd .panel-title-edit {
  color: #000000;
}
.cid-uol43rFXEd .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ukK37GNLDq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-ukK37GNLDq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukK37GNLDq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukK37GNLDq .mbr-section-title {
  color: #ffffff;
}
.cid-ukK37GNLDq .mbr-text,
.cid-ukK37GNLDq .mbr-section-btn {
  color: #ffffff;
}
.cid-ukK37HwGts {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ukK37HwGts .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukK37HwGts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukK37HwGts .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukK37HwGts .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukK37HwGts .row {
    text-align: center;
  }
  .cid-ukK37HwGts .social-row {
    justify-content: center;
  }
}
.cid-ukK37HwGts .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukK37HwGts .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukK37HwGts .list {
    margin-bottom: 0rem;
  }
}
.cid-ukK37HwGts .mbr-text {
  color: #bbbbbb;
}
.cid-ukK37HwGts .mbr-iconfont {
  color: black;
}
.cid-ukKf6Jauzh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ukKf6Jauzh nav.navbar {
  position: fixed;
}
.cid-ukKf6Jauzh .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-ukKf6Jauzh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukKf6Jauzh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukKf6Jauzh .dropdown-item:hover,
.cid-ukKf6Jauzh .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-ukKf6Jauzh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukKf6Jauzh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukKf6Jauzh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukKf6Jauzh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukKf6Jauzh .nav-link {
  position: relative;
}
.cid-ukKf6Jauzh .container {
  display: flex;
  margin: auto;
}
.cid-ukKf6Jauzh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukKf6Jauzh .dropdown-menu,
.cid-ukKf6Jauzh .navbar.opened {
  background: #ffffff !important;
}
.cid-ukKf6Jauzh .nav-item:focus,
.cid-ukKf6Jauzh .nav-link:focus {
  outline: none;
}
.cid-ukKf6Jauzh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukKf6Jauzh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukKf6Jauzh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukKf6Jauzh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukKf6Jauzh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukKf6Jauzh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukKf6Jauzh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ukKf6Jauzh .navbar.opened {
  transition: all 0.3s;
}
.cid-ukKf6Jauzh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukKf6Jauzh .navbar .navbar-logo img {
  width: auto;
}
.cid-ukKf6Jauzh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukKf6Jauzh .navbar.collapsed {
  justify-content: center;
}
.cid-ukKf6Jauzh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukKf6Jauzh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ukKf6Jauzh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukKf6Jauzh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukKf6Jauzh .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-ukKf6Jauzh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukKf6Jauzh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukKf6Jauzh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukKf6Jauzh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukKf6Jauzh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukKf6Jauzh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukKf6Jauzh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukKf6Jauzh .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-ukKf6Jauzh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukKf6Jauzh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukKf6Jauzh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukKf6Jauzh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukKf6Jauzh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukKf6Jauzh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ukKf6Jauzh .navbar.navbar-short {
  min-height: 60px;
}
.cid-ukKf6Jauzh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukKf6Jauzh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukKf6Jauzh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukKf6Jauzh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukKf6Jauzh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukKf6Jauzh .dropdown-item.active,
.cid-ukKf6Jauzh .dropdown-item:active {
  background-color: transparent;
}
.cid-ukKf6Jauzh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukKf6Jauzh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukKf6Jauzh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukKf6Jauzh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukKf6Jauzh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukKf6Jauzh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukKf6Jauzh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukKf6Jauzh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukKf6Jauzh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukKf6Jauzh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ukKf6Jauzh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukKf6Jauzh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukKf6Jauzh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukKf6Jauzh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukKf6Jauzh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukKf6Jauzh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukKf6Jauzh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukKf6Jauzh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukKf6Jauzh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukKf6Jauzh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukKf6Jauzh .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-ukKf6Jauzh .navbar {
    height: 70px;
  }
  .cid-ukKf6Jauzh .navbar.opened {
    height: auto;
  }
  .cid-ukKf6Jauzh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukKf6Ke73L {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukKf6Ke73L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukKf6Ke73L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukKf6LbLG8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukKf6LbLG8 img,
.cid-ukKf6LbLG8 .item-img {
  width: 100%;
}
.cid-ukKf6LbLG8 .item:focus,
.cid-ukKf6LbLG8 span:focus {
  outline: none;
}
.cid-ukKf6LbLG8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukKf6LbLG8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #bbbbbb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukKf6LbLG8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukKf6LbLG8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukKf6LbLG8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukKf6LbLG8 .mbr-section-title {
  color: #232323;
}
.cid-ukKf6LbLG8 .mbr-text,
.cid-ukKf6LbLG8 .mbr-section-btn {
  text-align: left;
}
.cid-ukKf6LbLG8 .item-title {
  text-align: left;
}
.cid-ukKf6LbLG8 .item-subtitle {
  text-align: center;
}
.cid-ukKmXBBEy7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukKf6N1aIQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukKf6N1aIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukKf6N1aIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ukKf6N1aIQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ukKf6N1aIQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukKf6N1aIQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-ukKf6NN8Hd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukKf6Ohv7d {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ukKf6Ohv7d .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ukKf6Ohv7d .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ukKf6Ohv7d .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ukKf6Ohv7d .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukKsVChNSD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukKsVChNSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukKsVChNSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukKsVChNSD .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-ukKsVChNSD .item .icon-wrap {
  text-align: center;
}
.cid-ukKsVChNSD .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-ukKsVChNSD .item:last-child:before {
  display: none;
}
.cid-ukKsVChNSD .item.last::before {
  display: none;
}
.cid-ukKsVChNSD .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-ukKsVChNSD .text-box {
  text-align: center;
}
.cid-ukKsVChNSD span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-ukKsVChNSD .card {
    margin-bottom: 2rem;
  }
  .cid-ukKsVChNSD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukKvz5Cv0U {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ukKf6SVXHW {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ukKf6SVXHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukKf6SVXHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukKf6SVXHW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ukKf6SVXHW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ukKf6SVXHW .row {
    text-align: center;
  }
  .cid-ukKf6SVXHW .social-row {
    justify-content: center;
  }
}
.cid-ukKf6SVXHW .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ukKf6SVXHW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ukKf6SVXHW .list {
    margin-bottom: 0rem;
  }
}
.cid-ukKf6SVXHW .mbr-text {
  color: #bbbbbb;
}
.cid-ukKf6SVXHW .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulu4qXkr9x {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ulu4qXkr9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulu4qXkr9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulu4v14As0 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ulu757JPYT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulu757JPYT img,
.cid-ulu757JPYT .item-img {
  width: 100%;
}
.cid-ulu757JPYT .item:focus,
.cid-ulu757JPYT span:focus {
  outline: none;
}
.cid-ulu757JPYT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulu757JPYT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulu757JPYT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulu757JPYT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulu757JPYT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulu757JPYT .mbr-section-title {
  color: #232323;
}
.cid-ulu757JPYT .mbr-text,
.cid-ulu757JPYT .mbr-section-btn {
  text-align: left;
}
.cid-ulu757JPYT .item-title {
  text-align: left;
}
.cid-ulu757JPYT .item-subtitle {
  text-align: left;
}
.cid-ulu6W7ch3q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ulu6W7ch3q .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulu6W7ch3q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulu6W7ch3q .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ulu6W7ch3q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ulu6W7ch3q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ulu6W7ch3q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ulu6W7ch3q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ulu6W7ch3q .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ulu6W7ch3q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ulu9zuXAIe {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uludEaI5cU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uludEaI5cU .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-unzDBeNYQd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-unzDBeNYQd nav.navbar {
  position: fixed;
}
.cid-unzDBeNYQd .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-unzDBeNYQd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unzDBeNYQd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unzDBeNYQd .dropdown-item:hover,
.cid-unzDBeNYQd .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-unzDBeNYQd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unzDBeNYQd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unzDBeNYQd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unzDBeNYQd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unzDBeNYQd .nav-link {
  position: relative;
}
.cid-unzDBeNYQd .container {
  display: flex;
  margin: auto;
}
.cid-unzDBeNYQd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unzDBeNYQd .dropdown-menu,
.cid-unzDBeNYQd .navbar.opened {
  background: #ffffff !important;
}
.cid-unzDBeNYQd .nav-item:focus,
.cid-unzDBeNYQd .nav-link:focus {
  outline: none;
}
.cid-unzDBeNYQd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unzDBeNYQd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unzDBeNYQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unzDBeNYQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unzDBeNYQd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unzDBeNYQd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unzDBeNYQd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-unzDBeNYQd .navbar.opened {
  transition: all 0.3s;
}
.cid-unzDBeNYQd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unzDBeNYQd .navbar .navbar-logo img {
  width: auto;
}
.cid-unzDBeNYQd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unzDBeNYQd .navbar.collapsed {
  justify-content: center;
}
.cid-unzDBeNYQd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unzDBeNYQd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unzDBeNYQd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unzDBeNYQd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unzDBeNYQd .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-unzDBeNYQd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unzDBeNYQd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unzDBeNYQd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unzDBeNYQd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unzDBeNYQd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unzDBeNYQd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unzDBeNYQd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unzDBeNYQd .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-unzDBeNYQd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unzDBeNYQd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unzDBeNYQd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unzDBeNYQd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unzDBeNYQd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unzDBeNYQd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unzDBeNYQd .navbar.navbar-short {
  min-height: 60px;
}
.cid-unzDBeNYQd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unzDBeNYQd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unzDBeNYQd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unzDBeNYQd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unzDBeNYQd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unzDBeNYQd .dropdown-item.active,
.cid-unzDBeNYQd .dropdown-item:active {
  background-color: transparent;
}
.cid-unzDBeNYQd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unzDBeNYQd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unzDBeNYQd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unzDBeNYQd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unzDBeNYQd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unzDBeNYQd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unzDBeNYQd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unzDBeNYQd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unzDBeNYQd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unzDBeNYQd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-unzDBeNYQd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unzDBeNYQd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unzDBeNYQd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unzDBeNYQd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unzDBeNYQd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unzDBeNYQd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unzDBeNYQd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unzDBeNYQd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unzDBeNYQd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-unzDBeNYQd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unzDBeNYQd .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-unzDBeNYQd .navbar {
    height: 70px;
  }
  .cid-unzDBeNYQd .navbar.opened {
    height: auto;
  }
  .cid-unzDBeNYQd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unzDBfwxJV {
  background-image: url("../../../assets/images/sugarmummydubai-923x603.jpg");
}
.cid-unzDBfwxJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBfwxJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBfwxJV .mbr-section-title {
  color: #ffffff;
}
.cid-unzDBg28t4 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-unzDBg28t4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBg28t4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBg28t4 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-unzDBg28t4 .team-card:hover {
  transform: translateY(-10px);
}
.cid-unzDBg28t4 .item-wrapper {
  background: #bbbbbb;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-unzDBg28t4 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unzDBg28t4 .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-unzDBg28t4 .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unzDBg28t4 .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-unzDBg28t4 .social-row {
  text-align: center;
}
.cid-unzDBg28t4 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-unzDBg28t4 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-unzDBg28t4 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-unzDBg28t4 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-unzDBhHfJp {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unzDBi7Sk2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unzDBi7Sk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBi7Sk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBi7Sk2 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-unzDBi7Sk2 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-unzDBi7Sk2 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unzDBi7Sk2 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unzDBi7Sk2 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unzDBi7Sk2 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-unzDBi7Sk2 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-unzDBi7Sk2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-unA0Fdbr6X {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unzZNkn9k8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #2299aa;
}
.cid-unzZNkn9k8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzZNkn9k8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzZNkn9k8 .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-unzZNkn9k8 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-unzZNkn9k8 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-unzZNkn9k8 .wrapper {
  padding: 30px 0;
}
.cid-unzZNkn9k8 .mbr-section-title {
  color: #fafafa;
}
.cid-unzZNkn9k8 .mbr-text,
.cid-unzZNkn9k8 .mbr-section-btn {
  color: #ffffff;
}
.cid-unA3WvIx96 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-unzDBlOrDp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unzDBlOrDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBlOrDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBlOrDp .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-unzDBlOrDp .panel-group {
  border: none;
}
.cid-unzDBlOrDp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-unzDBlOrDp .panel-body,
.cid-unzDBlOrDp .card-header {
  padding: 1rem 0;
}
.cid-unzDBlOrDp .panel-title-edit {
  color: #000000;
}
.cid-unzDBlOrDp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-unzDBmGlIH {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-unzDBmGlIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBmGlIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBmGlIH .mbr-section-title {
  color: #ffffff;
}
.cid-unzDBmGlIH .mbr-text,
.cid-unzDBmGlIH .mbr-section-btn {
  color: #ffffff;
}
.cid-unzDBnmr3N {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-unzDBnmr3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-unzDBnmr3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unzDBnmr3N .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-unzDBnmr3N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unzDBnmr3N .row {
    text-align: center;
  }
  .cid-unzDBnmr3N .social-row {
    justify-content: center;
  }
}
.cid-unzDBnmr3N .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-unzDBnmr3N .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-unzDBnmr3N .list {
    margin-bottom: 0rem;
  }
}
.cid-unzDBnmr3N .mbr-text {
  color: #bbbbbb;
}
.cid-unzDBnmr3N .mbr-iconfont {
  color: black;
}
.cid-uo1GRyAG3g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uo1GRyAG3g nav.navbar {
  position: fixed;
}
.cid-uo1GRyAG3g .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-uo1GRyAG3g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uo1GRyAG3g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uo1GRyAG3g .dropdown-item:hover,
.cid-uo1GRyAG3g .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uo1GRyAG3g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uo1GRyAG3g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uo1GRyAG3g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uo1GRyAG3g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uo1GRyAG3g .nav-link {
  position: relative;
}
.cid-uo1GRyAG3g .container {
  display: flex;
  margin: auto;
}
.cid-uo1GRyAG3g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uo1GRyAG3g .dropdown-menu,
.cid-uo1GRyAG3g .navbar.opened {
  background: #ffffff !important;
}
.cid-uo1GRyAG3g .nav-item:focus,
.cid-uo1GRyAG3g .nav-link:focus {
  outline: none;
}
.cid-uo1GRyAG3g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uo1GRyAG3g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uo1GRyAG3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uo1GRyAG3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uo1GRyAG3g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uo1GRyAG3g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uo1GRyAG3g .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uo1GRyAG3g .navbar.opened {
  transition: all 0.3s;
}
.cid-uo1GRyAG3g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uo1GRyAG3g .navbar .navbar-logo img {
  width: auto;
}
.cid-uo1GRyAG3g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uo1GRyAG3g .navbar.collapsed {
  justify-content: center;
}
.cid-uo1GRyAG3g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uo1GRyAG3g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uo1GRyAG3g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uo1GRyAG3g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uo1GRyAG3g .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-uo1GRyAG3g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uo1GRyAG3g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uo1GRyAG3g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uo1GRyAG3g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uo1GRyAG3g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uo1GRyAG3g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uo1GRyAG3g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uo1GRyAG3g .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-uo1GRyAG3g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uo1GRyAG3g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uo1GRyAG3g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uo1GRyAG3g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uo1GRyAG3g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uo1GRyAG3g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uo1GRyAG3g .navbar.navbar-short {
  min-height: 60px;
}
.cid-uo1GRyAG3g .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uo1GRyAG3g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uo1GRyAG3g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uo1GRyAG3g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uo1GRyAG3g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uo1GRyAG3g .dropdown-item.active,
.cid-uo1GRyAG3g .dropdown-item:active {
  background-color: transparent;
}
.cid-uo1GRyAG3g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uo1GRyAG3g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uo1GRyAG3g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uo1GRyAG3g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uo1GRyAG3g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uo1GRyAG3g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uo1GRyAG3g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uo1GRyAG3g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uo1GRyAG3g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uo1GRyAG3g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uo1GRyAG3g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uo1GRyAG3g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo1GRyAG3g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo1GRyAG3g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uo1GRyAG3g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo1GRyAG3g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uo1GRyAG3g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uo1GRyAG3g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo1GRyAG3g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uo1GRyAG3g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uo1GRyAG3g .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-uo1GRyAG3g .navbar {
    height: 70px;
  }
  .cid-uo1GRyAG3g .navbar.opened {
    height: auto;
  }
  .cid-uo1GRyAG3g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo1GRziiRm {
  background-image: url("../../../assets/images/uaesugardaddies-939x489.jpg");
}
.cid-uo1GRziiRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1GRziiRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1GRziiRm .mbr-section-title {
  color: #ffffff;
}
.cid-uo1GRzLYs5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uo1GRzLYs5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1GRzLYs5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1GRzLYs5 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uo1GRzLYs5 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uo1GRzLYs5 .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uo1GRzLYs5 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uo1GRzLYs5 .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uo1GRzLYs5 .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uo1GRzLYs5 .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uo1GRzLYs5 .social-row {
  text-align: center;
}
.cid-uo1GRzLYs5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uo1GRzLYs5 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uo1GRzLYs5 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uo1GRzLYs5 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uo1GRAP1M0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo1GRBiAwF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1GRBiAwF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1GRBiAwF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1GRBiAwF .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uo1GRBiAwF .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uo1GRBiAwF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uo1GRBiAwF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uo1GRBiAwF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uo1GRBiAwF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uo1GRBiAwF .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uo1GRBiAwF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uo1L9um4EA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo1MrvEChU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo1MrvEChU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1MrvEChU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uo1MrvEChU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uo1MrvEChU .row {
  flex-direction: row-reverse;
}
.cid-uo1MrvEChU img {
  width: 100%;
}
.cid-uo1MuayVSz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1MvjOzqX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1MvMv2mp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1MwdQROw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1Mx02TnF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1OwI9gCF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo1S3x0uQz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo1S0QwU7B {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo1S0QwU7B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1S0QwU7B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1S0QwU7B .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uo1S0QwU7B .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uo1S0QwU7B .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uo1TIMvGxA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo1TIMvGxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1TIMvGxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uo1TIMvGxA .container {
    max-width: 1400px;
  }
}
.cid-uo1TIMvGxA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uo1TIMvGxA .row {
  justify-content: center;
}
.cid-uo1GRFegWz {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-uo1GRFegWz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1GRFegWz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1GRFegWz .mbr-section-title {
  color: #ffffff;
}
.cid-uo1GRFegWz .mbr-text,
.cid-uo1GRFegWz .mbr-section-btn {
  color: #ffffff;
}
.cid-uo1GRFVXSm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uo1GRFVXSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo1GRFVXSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo1GRFVXSm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uo1GRFVXSm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uo1GRFVXSm .row {
    text-align: center;
  }
  .cid-uo1GRFVXSm .social-row {
    justify-content: center;
  }
}
.cid-uo1GRFVXSm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uo1GRFVXSm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uo1GRFVXSm .list {
    margin-bottom: 0rem;
  }
}
.cid-uo1GRFVXSm .mbr-text {
  color: #bbbbbb;
}
.cid-uo1GRFVXSm .mbr-iconfont {
  color: black;
}
.cid-uo28IjagCi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uo28IjagCi nav.navbar {
  position: fixed;
}
.cid-uo28IjagCi .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-uo28IjagCi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uo28IjagCi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uo28IjagCi .dropdown-item:hover,
.cid-uo28IjagCi .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uo28IjagCi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uo28IjagCi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uo28IjagCi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uo28IjagCi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uo28IjagCi .nav-link {
  position: relative;
}
.cid-uo28IjagCi .container {
  display: flex;
  margin: auto;
}
.cid-uo28IjagCi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uo28IjagCi .dropdown-menu,
.cid-uo28IjagCi .navbar.opened {
  background: #ffffff !important;
}
.cid-uo28IjagCi .nav-item:focus,
.cid-uo28IjagCi .nav-link:focus {
  outline: none;
}
.cid-uo28IjagCi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uo28IjagCi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uo28IjagCi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uo28IjagCi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uo28IjagCi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uo28IjagCi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uo28IjagCi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uo28IjagCi .navbar.opened {
  transition: all 0.3s;
}
.cid-uo28IjagCi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uo28IjagCi .navbar .navbar-logo img {
  width: auto;
}
.cid-uo28IjagCi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uo28IjagCi .navbar.collapsed {
  justify-content: center;
}
.cid-uo28IjagCi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uo28IjagCi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uo28IjagCi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uo28IjagCi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uo28IjagCi .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-uo28IjagCi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uo28IjagCi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uo28IjagCi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uo28IjagCi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uo28IjagCi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uo28IjagCi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uo28IjagCi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uo28IjagCi .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-uo28IjagCi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uo28IjagCi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uo28IjagCi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uo28IjagCi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uo28IjagCi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uo28IjagCi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uo28IjagCi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uo28IjagCi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uo28IjagCi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uo28IjagCi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uo28IjagCi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uo28IjagCi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uo28IjagCi .dropdown-item.active,
.cid-uo28IjagCi .dropdown-item:active {
  background-color: transparent;
}
.cid-uo28IjagCi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uo28IjagCi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uo28IjagCi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uo28IjagCi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uo28IjagCi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uo28IjagCi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uo28IjagCi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uo28IjagCi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uo28IjagCi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uo28IjagCi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uo28IjagCi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uo28IjagCi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo28IjagCi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo28IjagCi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uo28IjagCi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo28IjagCi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uo28IjagCi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uo28IjagCi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo28IjagCi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uo28IjagCi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uo28IjagCi .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-uo28IjagCi .navbar {
    height: 70px;
  }
  .cid-uo28IjagCi .navbar.opened {
    height: auto;
  }
  .cid-uo28IjagCi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo28ImfYET {
  background-image: url("../../../assets/images/fujairahsugardaddy-888x551.jpg");
}
.cid-uo28ImfYET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28ImfYET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo28ImfYET .mbr-section-title {
  color: #ffffff;
}
.cid-uo28ImZVtL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uo28ImZVtL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28ImZVtL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo28ImZVtL .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uo28ImZVtL .team-card:hover {
  transform: translateY(-10px);
}
.cid-uo28ImZVtL .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uo28ImZVtL .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uo28ImZVtL .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uo28ImZVtL .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uo28ImZVtL .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uo28ImZVtL .social-row {
  text-align: center;
}
.cid-uo28ImZVtL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uo28ImZVtL .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uo28ImZVtL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uo28ImZVtL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uo28IoA1fo {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo28IqRRjY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo28IqRRjY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28IqRRjY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uo28IqRRjY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uo28IqRRjY .row {
  flex-direction: row-reverse;
}
.cid-uo28IqRRjY img {
  width: 100%;
}
.cid-uo28IvrUYS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uo28IwdwuE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo28IwdwuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28IwdwuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo28IwdwuE .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uo28IwdwuE .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uo28IwdwuE .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uo28IqhcRA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo2FMC6ECf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo2FMC6ECf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2FMC6ECf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uo2FMC6ECf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uo2FMC6ECf .row {
  flex-direction: row-reverse;
}
.cid-uo2FMC6ECf img {
  width: 100%;
}
.cid-uo28IrAlKo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uo28IygEfi {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-uo28IygEfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28IygEfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo28IygEfi .mbr-section-title {
  color: #ffffff;
}
.cid-uo28IygEfi .mbr-text,
.cid-uo28IygEfi .mbr-section-btn {
  color: #ffffff;
}
.cid-uo28IyV6K5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uo28IyV6K5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo28IyV6K5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo28IyV6K5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uo28IyV6K5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uo28IyV6K5 .row {
    text-align: center;
  }
  .cid-uo28IyV6K5 .social-row {
    justify-content: center;
  }
}
.cid-uo28IyV6K5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uo28IyV6K5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uo28IyV6K5 .list {
    margin-bottom: 0rem;
  }
}
.cid-uo28IyV6K5 .mbr-text {
  color: #bbbbbb;
}
.cid-uo28IyV6K5 .mbr-iconfont {
  color: black;
}
.cid-uo2GemYhNe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uo2GemYhNe nav.navbar {
  position: fixed;
}
.cid-uo2GemYhNe .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-uo2GemYhNe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uo2GemYhNe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uo2GemYhNe .dropdown-item:hover,
.cid-uo2GemYhNe .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uo2GemYhNe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uo2GemYhNe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uo2GemYhNe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uo2GemYhNe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uo2GemYhNe .nav-link {
  position: relative;
}
.cid-uo2GemYhNe .container {
  display: flex;
  margin: auto;
}
.cid-uo2GemYhNe .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uo2GemYhNe .dropdown-menu,
.cid-uo2GemYhNe .navbar.opened {
  background: #ffffff !important;
}
.cid-uo2GemYhNe .nav-item:focus,
.cid-uo2GemYhNe .nav-link:focus {
  outline: none;
}
.cid-uo2GemYhNe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uo2GemYhNe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uo2GemYhNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uo2GemYhNe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uo2GemYhNe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uo2GemYhNe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uo2GemYhNe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uo2GemYhNe .navbar.opened {
  transition: all 0.3s;
}
.cid-uo2GemYhNe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uo2GemYhNe .navbar .navbar-logo img {
  width: auto;
}
.cid-uo2GemYhNe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uo2GemYhNe .navbar.collapsed {
  justify-content: center;
}
.cid-uo2GemYhNe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uo2GemYhNe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uo2GemYhNe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uo2GemYhNe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uo2GemYhNe .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-uo2GemYhNe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uo2GemYhNe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uo2GemYhNe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uo2GemYhNe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uo2GemYhNe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uo2GemYhNe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uo2GemYhNe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uo2GemYhNe .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-uo2GemYhNe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uo2GemYhNe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uo2GemYhNe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uo2GemYhNe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uo2GemYhNe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uo2GemYhNe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uo2GemYhNe .navbar.navbar-short {
  min-height: 60px;
}
.cid-uo2GemYhNe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uo2GemYhNe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uo2GemYhNe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uo2GemYhNe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uo2GemYhNe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uo2GemYhNe .dropdown-item.active,
.cid-uo2GemYhNe .dropdown-item:active {
  background-color: transparent;
}
.cid-uo2GemYhNe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uo2GemYhNe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uo2GemYhNe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uo2GemYhNe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uo2GemYhNe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uo2GemYhNe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uo2GemYhNe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uo2GemYhNe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uo2GemYhNe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uo2GemYhNe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uo2GemYhNe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uo2GemYhNe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo2GemYhNe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uo2GemYhNe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uo2GemYhNe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo2GemYhNe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uo2GemYhNe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uo2GemYhNe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uo2GemYhNe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uo2GemYhNe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uo2GemYhNe .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-uo2GemYhNe .navbar {
    height: 70px;
  }
  .cid-uo2GemYhNe .navbar.opened {
    height: auto;
  }
  .cid-uo2GemYhNe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uo2GenUigS {
  background-image: url("../../../assets/images/sugardaddyummalquwain-919x524.jpg");
}
.cid-uo2GenUigS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2GenUigS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2GenUigS .mbr-section-title {
  color: #ffffff;
}
.cid-uo2GeoJIZ5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uo2GeoJIZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2GeoJIZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2GeoJIZ5 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uo2GeoJIZ5 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uo2GeoJIZ5 .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uo2GeoJIZ5 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uo2GeoJIZ5 .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uo2GeoJIZ5 .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uo2GeoJIZ5 .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uo2GeoJIZ5 .social-row {
  text-align: center;
}
.cid-uo2GeoJIZ5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uo2GeoJIZ5 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uo2GeoJIZ5 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uo2GeoJIZ5 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uo2Geq9asz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo2RqjJIuv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo2RqjJIuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2RqjJIuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uo2RqjJIuv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uo2RqjJIuv .row {
  flex-direction: row-reverse;
}
.cid-uo2RqjJIuv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uo2RqjJIuv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uo2ScqLP6w {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo2ScqLP6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2ScqLP6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uo2ScqLP6w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uo2ScqLP6w img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uo2ScqLP6w .text-wrapper {
    padding: 2rem;
  }
}
.cid-uo2TwPJsY6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uo2TwPJsY6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2TwPJsY6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2TwPJsY6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uo2TwPJsY6 .item {
    margin-bottom: 4rem;
  }
}
.cid-uo2TwPJsY6 .item:last-child .icon-box:before {
  display: none;
}
.cid-uo2TwPJsY6 .item.last .icon-box:before {
  display: none;
}
.cid-uo2TwPJsY6 .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uo2TwPJsY6 .icon-box {
    margin-right: 1rem;
  }
}
.cid-uo2TwPJsY6 .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-uo2TwPJsY6 span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uo2TwPJsY6 .card {
    margin-bottom: 2rem;
  }
  .cid-uo2TwPJsY6 .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uo2TwPJsY6 .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uo2TwPJsY6 .icon-box::before {
    top: 114%;
  }
}
.cid-uo2GerbopC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uo2GevoeXN {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-uo2GevoeXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2GevoeXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2GevoeXN .mbr-section-title {
  color: #ffffff;
}
.cid-uo2GevoeXN .mbr-text,
.cid-uo2GevoeXN .mbr-section-btn {
  color: #ffffff;
}
.cid-uo2GewfBhG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uo2GewfBhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2GewfBhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2GewfBhG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uo2GewfBhG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uo2GewfBhG .row {
    text-align: center;
  }
  .cid-uo2GewfBhG .social-row {
    justify-content: center;
  }
}
.cid-uo2GewfBhG .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uo2GewfBhG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uo2GewfBhG .list {
    margin-bottom: 0rem;
  }
}
.cid-uo2GewfBhG .mbr-text {
  color: #bbbbbb;
}
.cid-uo2GewfBhG .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uokcTlU5ct {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujpsWGoMFf {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujpsWGoMFf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujpsWGoMFf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujpsZkTNEX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujpsYcd8Or {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujpsYcd8Or .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujpsYcd8Or .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujpsYcd8Or .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujpsYcd8Or img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujpsYcd8Or .text-wrapper {
    padding: 2rem;
  }
}
.cid-upgHPrpJ98 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upgHfrhQPs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4e04d2;
}
.cid-upgHfrhQPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-upgHfrhQPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upgHfrhQPs .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-upgHfrhQPs .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-upgHfrhQPs .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-upgHfrhQPs .wrapper {
  padding: 30px 0;
}
.cid-upgHfrhQPs .mbr-section-title {
  color: #fafafa;
}
.cid-upgHfrhQPs .mbr-text,
.cid-upgHfrhQPs .mbr-section-btn {
  color: #ffffff;
}
.cid-ujpuVsvXdG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujpuVsvXdG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujpuVsvXdG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ujpuVsvXdG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujpuVsvXdG .row {
  flex-direction: row-reverse;
}
.cid-ujpuVsvXdG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ujpuVsvXdG .text-wrapper {
    padding: 2rem;
  }
}
.cid-ujpygY9oZv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujpyfdhsOx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujpyfdhsOx .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ujpyfdhsOx .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-ujpyfdhsOx .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ujpyfdhsOx .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujpEfGCKNl {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujpJ2T6abB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #353535;
}
.cid-ujpJ2T6abB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujpJ2T6abB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujpJ2T6abB .mbr-section-title {
  color: #ffffff;
}
.cid-ujpJ2T6abB .mbr-text,
.cid-ujpJ2T6abB .mbr-section-btn {
  color: #ffffff;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
.cid-uiLxDxeOg4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uiLxDxeOg4 nav.navbar {
  position: fixed;
}
.cid-uiLxDxeOg4 .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-uiLxDxeOg4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uiLxDxeOg4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uiLxDxeOg4 .dropdown-item:hover,
.cid-uiLxDxeOg4 .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uiLxDxeOg4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uiLxDxeOg4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uiLxDxeOg4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uiLxDxeOg4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uiLxDxeOg4 .nav-link {
  position: relative;
}
.cid-uiLxDxeOg4 .container {
  display: flex;
  margin: auto;
}
.cid-uiLxDxeOg4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uiLxDxeOg4 .dropdown-menu,
.cid-uiLxDxeOg4 .navbar.opened {
  background: #ffffff !important;
}
.cid-uiLxDxeOg4 .nav-item:focus,
.cid-uiLxDxeOg4 .nav-link:focus {
  outline: none;
}
.cid-uiLxDxeOg4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uiLxDxeOg4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uiLxDxeOg4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uiLxDxeOg4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uiLxDxeOg4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiLxDxeOg4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiLxDxeOg4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uiLxDxeOg4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uiLxDxeOg4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uiLxDxeOg4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uiLxDxeOg4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiLxDxeOg4 .navbar.collapsed {
  justify-content: center;
}
.cid-uiLxDxeOg4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiLxDxeOg4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uiLxDxeOg4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiLxDxeOg4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uiLxDxeOg4 .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-uiLxDxeOg4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiLxDxeOg4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uiLxDxeOg4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uiLxDxeOg4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiLxDxeOg4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiLxDxeOg4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiLxDxeOg4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uiLxDxeOg4 .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-uiLxDxeOg4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uiLxDxeOg4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiLxDxeOg4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uiLxDxeOg4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uiLxDxeOg4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uiLxDxeOg4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uiLxDxeOg4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uiLxDxeOg4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uiLxDxeOg4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uiLxDxeOg4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uiLxDxeOg4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiLxDxeOg4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiLxDxeOg4 .dropdown-item.active,
.cid-uiLxDxeOg4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uiLxDxeOg4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uiLxDxeOg4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiLxDxeOg4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiLxDxeOg4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uiLxDxeOg4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiLxDxeOg4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiLxDxeOg4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uiLxDxeOg4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uiLxDxeOg4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uiLxDxeOg4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uiLxDxeOg4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uiLxDxeOg4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uiLxDxeOg4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uiLxDxeOg4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uiLxDxeOg4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uiLxDxeOg4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uiLxDxeOg4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uiLxDxeOg4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uiLxDxeOg4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uiLxDxeOg4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiLxDxeOg4 .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-uiLxDxeOg4 .navbar {
    height: 70px;
  }
  .cid-uiLxDxeOg4 .navbar.opened {
    height: auto;
  }
  .cid-uiLxDxeOg4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiLxDzepcd {
  background-image: url("../../../assets/images/beingsugardaddy-918x496.jpg");
}
.cid-uiLxDzepcd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiLxDzepcd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiLxDzepcd .mbr-section-title {
  color: #ffffff;
}
.cid-uiLAzzvdXB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiLxDF7rsJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiLxDF7rsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiLxDF7rsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiLxDF7rsJ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uiLxDF7rsJ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uiLxDF7rsJ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uiLxDF7rsJ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uiLxDF7rsJ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uiLxDF7rsJ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uiLxDF7rsJ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uiLxDF7rsJ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-upJlrH9pVm {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upJlp8OGrI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upJlp8OGrI .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJlp8OGrI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upJlp8OGrI .item-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-upJlp8OGrI .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-upJlp8OGrI .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uiLOopzoXo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiLOopzoXo img,
.cid-uiLOopzoXo .item-img {
  width: 100%;
}
.cid-uiLOopzoXo .item:focus,
.cid-uiLOopzoXo span:focus {
  outline: none;
}
.cid-uiLOopzoXo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uiLOopzoXo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uiLOopzoXo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiLOopzoXo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uiLOopzoXo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uiLOopzoXo .mbr-section-title {
  color: #232323;
}
.cid-uiLOopzoXo .mbr-text,
.cid-uiLOopzoXo .mbr-section-btn {
  text-align: center;
}
.cid-uiLOopzoXo .item-title {
  text-align: center;
}
.cid-uiLOopzoXo .item-subtitle {
  text-align: left;
}
.cid-upJo3fORHa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upJp9xlcDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upJp9xlcDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-upJp9xlcDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upJp9xlcDG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upJp9xlcDG .row {
  flex-direction: row-reverse;
}
.cid-upJp9xlcDG img {
  width: 100%;
}
.cid-upJpbDEUUo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upJpbDEUUo .mbr-section-title {
  text-align: center;
}
.cid-upJqCb0moS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upJqCHmIrF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiQxvYygKI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiQxvYygKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiQxvYygKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiQxvYygKI .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uiQxvYygKI .panel-group {
  border: none;
}
.cid-uiQxvYygKI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uiQxvYygKI .panel-body,
.cid-uiQxvYygKI .card-header {
  padding: 1rem 0;
}
.cid-uiQxvYygKI .panel-title-edit {
  color: #000000;
}
.cid-uiQxvYygKI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uiLxDKfxWZ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-uiLxDKfxWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiLxDKfxWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiLxDKfxWZ .mbr-section-title {
  color: #ffffff;
}
.cid-uiLxDKfxWZ .mbr-text,
.cid-uiLxDKfxWZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uiLxDM94YU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uiLxDM94YU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiLxDM94YU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiLxDM94YU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uiLxDM94YU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uiLxDM94YU .row {
    text-align: center;
  }
  .cid-uiLxDM94YU .social-row {
    justify-content: center;
  }
}
.cid-uiLxDM94YU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uiLxDM94YU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uiLxDM94YU .list {
    margin-bottom: 0rem;
  }
}
.cid-uiLxDM94YU .mbr-text {
  color: #bbbbbb;
}
.cid-uiLxDM94YU .mbr-iconfont {
  color: black;
}
.cid-uiMdd3KDnL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uiMdd3KDnL nav.navbar {
  position: fixed;
}
.cid-uiMdd3KDnL .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-uiMdd3KDnL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uiMdd3KDnL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uiMdd3KDnL .dropdown-item:hover,
.cid-uiMdd3KDnL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uiMdd3KDnL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uiMdd3KDnL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uiMdd3KDnL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uiMdd3KDnL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uiMdd3KDnL .nav-link {
  position: relative;
}
.cid-uiMdd3KDnL .container {
  display: flex;
  margin: auto;
}
.cid-uiMdd3KDnL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uiMdd3KDnL .dropdown-menu,
.cid-uiMdd3KDnL .navbar.opened {
  background: #ffffff !important;
}
.cid-uiMdd3KDnL .nav-item:focus,
.cid-uiMdd3KDnL .nav-link:focus {
  outline: none;
}
.cid-uiMdd3KDnL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uiMdd3KDnL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uiMdd3KDnL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uiMdd3KDnL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uiMdd3KDnL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uiMdd3KDnL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uiMdd3KDnL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uiMdd3KDnL .navbar.opened {
  transition: all 0.3s;
}
.cid-uiMdd3KDnL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uiMdd3KDnL .navbar .navbar-logo img {
  width: auto;
}
.cid-uiMdd3KDnL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uiMdd3KDnL .navbar.collapsed {
  justify-content: center;
}
.cid-uiMdd3KDnL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uiMdd3KDnL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uiMdd3KDnL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uiMdd3KDnL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uiMdd3KDnL .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-uiMdd3KDnL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uiMdd3KDnL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uiMdd3KDnL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uiMdd3KDnL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uiMdd3KDnL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uiMdd3KDnL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uiMdd3KDnL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uiMdd3KDnL .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-uiMdd3KDnL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uiMdd3KDnL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uiMdd3KDnL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uiMdd3KDnL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uiMdd3KDnL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uiMdd3KDnL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uiMdd3KDnL .navbar.navbar-short {
  min-height: 60px;
}
.cid-uiMdd3KDnL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uiMdd3KDnL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uiMdd3KDnL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uiMdd3KDnL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uiMdd3KDnL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uiMdd3KDnL .dropdown-item.active,
.cid-uiMdd3KDnL .dropdown-item:active {
  background-color: transparent;
}
.cid-uiMdd3KDnL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uiMdd3KDnL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uiMdd3KDnL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uiMdd3KDnL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uiMdd3KDnL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uiMdd3KDnL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uiMdd3KDnL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uiMdd3KDnL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uiMdd3KDnL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uiMdd3KDnL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uiMdd3KDnL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uiMdd3KDnL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uiMdd3KDnL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uiMdd3KDnL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uiMdd3KDnL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uiMdd3KDnL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uiMdd3KDnL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uiMdd3KDnL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uiMdd3KDnL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uiMdd3KDnL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiMdd3KDnL .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-uiMdd3KDnL .navbar {
    height: 70px;
  }
  .cid-uiMdd3KDnL .navbar.opened {
    height: auto;
  }
  .cid-uiMdd3KDnL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uiMdd5J8jQ {
  background-image: url("../../../assets/images/sugarbbaymeet-926x522.jpg");
}
.cid-uiMdd5J8jQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiMdd5J8jQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiMdd5J8jQ .mbr-section-title {
  color: #ffffff;
}
.cid-uiMdd8ARvD {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiMdd8Wvds {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uiMdd8Wvds .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiMdd8Wvds .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiMdd8Wvds .content-wrapper {
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uiMdd8Wvds .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uiMdd8Wvds .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uiMdd8Wvds .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uiMdd8Wvds .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uiMdd8Wvds .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uiMdd8Wvds .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uiMdd8Wvds .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uiQjdT29od {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiQj7nl8dS {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiQj7nl8dS .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uiQj7nl8dS .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uiQj7nl8dS .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uiQj7nl8dS .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #4e04d2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiQuMT7Cw5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upK71F3Usn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upK71F3Usn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upK71F3Usn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-upK71F3Usn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upK71F3Usn .row {
  flex-direction: row-reverse;
}
.cid-upK71F3Usn img {
  width: 100%;
}
.cid-upK72UUlyp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upK8I32EbX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upK8I32EbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-upK8I32EbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upK9QVdeKe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upK9QVdeKe .mbr-fallback-image.disabled {
  display: none;
}
.cid-upK9QVdeKe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upK9QVdeKe .timeline-element {
  position: relative;
}
.cid-upK9QVdeKe .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-upK9QVdeKe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-upK9QVdeKe .mbr-section-title,
.cid-upK9QVdeKe .mbr-section-subtitle,
.cid-upK9QVdeKe .timeline-date {
  text-align: center;
}
.cid-upK9QVdeKe .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-upK9QVdeKe .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-upK9QVdeKe .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-upK9QVdeKe .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-upK9QVdeKe .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-upK9QVdeKe .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upK9QVdeKe .timeline-date-wrapper,
  .cid-upK9QVdeKe .timeline-text-wrapper,
  .cid-upK9QVdeKe .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-upK9QVdeKe .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-upK9QVdeKe .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upK9QVdeKe .timeline-date-wrapper,
  .cid-upK9QVdeKe .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upK9QVdeKe .timeline-date-wrapper,
  .cid-upK9QVdeKe .timeline-text-wrapper,
  .cid-upK9QVdeKe .image-wrapper {
    padding: 2rem;
  }
}
.cid-upKcq9WA1m {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upKeeAbfuI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-upKeeAbfuI .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-upKeeAbfuI .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-upKeeAbfuI .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-upKeeAbfuI .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #4e04d2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uiMddbAvGB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-uiMddbAvGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiMddbAvGB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiMddbAvGB .mbr-section-title {
  color: #ffffff;
}
.cid-uiMddbAvGB .mbr-text,
.cid-uiMddbAvGB .mbr-section-btn {
  color: #ffffff;
}
.cid-uiMddbZnWd {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uiMddbZnWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiMddbZnWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiMddbZnWd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uiMddbZnWd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uiMddbZnWd .row {
    text-align: center;
  }
  .cid-uiMddbZnWd .social-row {
    justify-content: center;
  }
}
.cid-uiMddbZnWd .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uiMddbZnWd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uiMddbZnWd .list {
    margin-bottom: 0rem;
  }
}
.cid-uiMddbZnWd .mbr-text {
  color: #bbbbbb;
}
.cid-uiMddbZnWd .mbr-iconfont {
  color: black;
}
.cid-uqzZ4m6b3J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqzZ4m6b3J nav.navbar {
  position: fixed;
}
.cid-uqzZ4m6b3J .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-uqzZ4m6b3J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqzZ4m6b3J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqzZ4m6b3J .dropdown-item:hover,
.cid-uqzZ4m6b3J .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uqzZ4m6b3J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqzZ4m6b3J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqzZ4m6b3J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqzZ4m6b3J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqzZ4m6b3J .nav-link {
  position: relative;
}
.cid-uqzZ4m6b3J .container {
  display: flex;
  margin: auto;
}
.cid-uqzZ4m6b3J .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqzZ4m6b3J .dropdown-menu,
.cid-uqzZ4m6b3J .navbar.opened {
  background: #ffffff !important;
}
.cid-uqzZ4m6b3J .nav-item:focus,
.cid-uqzZ4m6b3J .nav-link:focus {
  outline: none;
}
.cid-uqzZ4m6b3J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqzZ4m6b3J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqzZ4m6b3J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqzZ4m6b3J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqzZ4m6b3J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqzZ4m6b3J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqzZ4m6b3J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uqzZ4m6b3J .navbar.opened {
  transition: all 0.3s;
}
.cid-uqzZ4m6b3J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqzZ4m6b3J .navbar .navbar-logo img {
  width: auto;
}
.cid-uqzZ4m6b3J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqzZ4m6b3J .navbar.collapsed {
  justify-content: center;
}
.cid-uqzZ4m6b3J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqzZ4m6b3J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqzZ4m6b3J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqzZ4m6b3J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqzZ4m6b3J .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-uqzZ4m6b3J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqzZ4m6b3J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqzZ4m6b3J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqzZ4m6b3J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqzZ4m6b3J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqzZ4m6b3J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqzZ4m6b3J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqzZ4m6b3J .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-uqzZ4m6b3J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqzZ4m6b3J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqzZ4m6b3J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqzZ4m6b3J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqzZ4m6b3J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqzZ4m6b3J .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqzZ4m6b3J .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqzZ4m6b3J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqzZ4m6b3J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqzZ4m6b3J .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqzZ4m6b3J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqzZ4m6b3J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqzZ4m6b3J .dropdown-item.active,
.cid-uqzZ4m6b3J .dropdown-item:active {
  background-color: transparent;
}
.cid-uqzZ4m6b3J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqzZ4m6b3J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqzZ4m6b3J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqzZ4m6b3J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqzZ4m6b3J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqzZ4m6b3J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqzZ4m6b3J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqzZ4m6b3J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqzZ4m6b3J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqzZ4m6b3J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqzZ4m6b3J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqzZ4m6b3J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqzZ4m6b3J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqzZ4m6b3J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqzZ4m6b3J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqzZ4m6b3J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqzZ4m6b3J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqzZ4m6b3J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqzZ4m6b3J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqzZ4m6b3J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqzZ4m6b3J .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-uqzZ4m6b3J .navbar {
    height: 70px;
  }
  .cid-uqzZ4m6b3J .navbar.opened {
    height: auto;
  }
  .cid-uqzZ4m6b3J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqzZ4mBrWk {
  background-image: url("../../../assets/images/perfectsugardaddyindia-925x534.jpg");
}
.cid-uqzZ4mBrWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4mBrWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqzZ4mBrWk .mbr-section-title {
  color: #ffffff;
}
.cid-uqzZ4nas0O {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzZ4nBq5B {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqzZ4nBq5B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4nBq5B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqzZ4nBq5B .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uqzZ4nBq5B .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uqzZ4nBq5B .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqzZ4nBq5B .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uqzZ4nBq5B .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqzZ4nBq5B .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uqzZ4nBq5B .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uqzZ4nBq5B .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqzZ4o9jra {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqzZ4q6jal {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqzZ4qxVq8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzZ4qxVq8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4qxVq8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqzZ4qxVq8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqzZ4qxVq8 .row {
  flex-direction: row-reverse;
}
.cid-uqzZ4qxVq8 img {
  width: 100%;
}
.cid-uqzZ4qZ0Va {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqzZ4qZ0Va .mbr-section-title {
  text-align: center;
}
.cid-uqA9RyJ2bR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqA9RyJ2bR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqA9RyJ2bR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqA9RyJ2bR .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-uqA9RyJ2bR .item .icon-wrap {
  text-align: center;
}
.cid-uqA9RyJ2bR .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-uqA9RyJ2bR .item:last-child:before {
  display: none;
}
.cid-uqA9RyJ2bR .item.last::before {
  display: none;
}
.cid-uqA9RyJ2bR .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-uqA9RyJ2bR .text-box {
  text-align: center;
}
.cid-uqA9RyJ2bR span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-uqA9RyJ2bR .card {
    margin-bottom: 2rem;
  }
  .cid-uqA9RyJ2bR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqzZ4rpx4T {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAvZhsakp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqAvZhsakp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAvZhsakp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAvZhsakp .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uqAvZhsakp .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqAvZhsakp .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uqAvZhsakp .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqAvZhsakp .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uqAvZhsakp .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uqAvZhsakp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqzZ4scmny {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqzZ4scmny .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4scmny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqzZ4scmny .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-uqzZ4scmny .panel-group {
  border: none;
}
.cid-uqzZ4scmny .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uqzZ4scmny .panel-body,
.cid-uqzZ4scmny .card-header {
  padding: 1rem 0;
}
.cid-uqzZ4scmny .panel-title-edit {
  color: #000000;
}
.cid-uqzZ4scmny .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqzZ4sLCjR {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-uqzZ4sLCjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4sLCjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqzZ4sLCjR .mbr-section-title {
  color: #ffffff;
}
.cid-uqzZ4sLCjR .mbr-text,
.cid-uqzZ4sLCjR .mbr-section-btn {
  color: #ffffff;
}
.cid-uqzZ4tamyS {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uqzZ4tamyS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqzZ4tamyS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqzZ4tamyS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqzZ4tamyS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uqzZ4tamyS .row {
    text-align: center;
  }
  .cid-uqzZ4tamyS .social-row {
    justify-content: center;
  }
}
.cid-uqzZ4tamyS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uqzZ4tamyS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqzZ4tamyS .list {
    margin-bottom: 0rem;
  }
}
.cid-uqzZ4tamyS .mbr-text {
  color: #bbbbbb;
}
.cid-uqzZ4tamyS .mbr-iconfont {
  color: black;
}
.cid-uqAz1HpsXy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uqAz1HpsXy nav.navbar {
  position: fixed;
}
.cid-uqAz1HpsXy .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-uqAz1HpsXy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqAz1HpsXy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqAz1HpsXy .dropdown-item:hover,
.cid-uqAz1HpsXy .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-uqAz1HpsXy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqAz1HpsXy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqAz1HpsXy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqAz1HpsXy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqAz1HpsXy .nav-link {
  position: relative;
}
.cid-uqAz1HpsXy .container {
  display: flex;
  margin: auto;
}
.cid-uqAz1HpsXy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqAz1HpsXy .dropdown-menu,
.cid-uqAz1HpsXy .navbar.opened {
  background: #ffffff !important;
}
.cid-uqAz1HpsXy .nav-item:focus,
.cid-uqAz1HpsXy .nav-link:focus {
  outline: none;
}
.cid-uqAz1HpsXy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqAz1HpsXy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqAz1HpsXy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqAz1HpsXy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqAz1HpsXy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqAz1HpsXy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqAz1HpsXy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uqAz1HpsXy .navbar.opened {
  transition: all 0.3s;
}
.cid-uqAz1HpsXy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqAz1HpsXy .navbar .navbar-logo img {
  width: auto;
}
.cid-uqAz1HpsXy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqAz1HpsXy .navbar.collapsed {
  justify-content: center;
}
.cid-uqAz1HpsXy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqAz1HpsXy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uqAz1HpsXy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqAz1HpsXy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqAz1HpsXy .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-uqAz1HpsXy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqAz1HpsXy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqAz1HpsXy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqAz1HpsXy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqAz1HpsXy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqAz1HpsXy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqAz1HpsXy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqAz1HpsXy .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-uqAz1HpsXy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqAz1HpsXy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqAz1HpsXy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqAz1HpsXy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqAz1HpsXy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqAz1HpsXy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqAz1HpsXy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqAz1HpsXy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqAz1HpsXy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqAz1HpsXy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqAz1HpsXy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqAz1HpsXy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqAz1HpsXy .dropdown-item.active,
.cid-uqAz1HpsXy .dropdown-item:active {
  background-color: transparent;
}
.cid-uqAz1HpsXy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqAz1HpsXy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqAz1HpsXy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqAz1HpsXy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqAz1HpsXy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqAz1HpsXy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqAz1HpsXy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqAz1HpsXy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqAz1HpsXy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqAz1HpsXy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uqAz1HpsXy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqAz1HpsXy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqAz1HpsXy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqAz1HpsXy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqAz1HpsXy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqAz1HpsXy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqAz1HpsXy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqAz1HpsXy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqAz1HpsXy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uqAz1HpsXy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqAz1HpsXy .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-uqAz1HpsXy .navbar {
    height: 70px;
  }
  .cid-uqAz1HpsXy .navbar.opened {
    height: auto;
  }
  .cid-uqAz1HpsXy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqAz1HSW9h {
  background-image: url("../../../assets/images/suiatblephotos-779x476.jpg");
}
.cid-uqAz1HSW9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAz1HSW9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAz1HSW9h .mbr-section-title {
  color: #ffffff;
}
.cid-uqAz1IqiZ7 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAz1IQ9jF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uqAz1IQ9jF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAz1IQ9jF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAz1IQ9jF .content-wrapper {
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uqAz1IQ9jF .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uqAz1IQ9jF .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqAz1IQ9jF .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uqAz1IQ9jF .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqAz1IQ9jF .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uqAz1IQ9jF .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uqAz1IQ9jF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqAMW0FFSp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqAMMl309c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #170585;
}
.cid-uqAMMl309c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAMMl309c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAMMl309c .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uqAMMl309c .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uqAMMl309c .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uqAMMl309c .wrapper {
  padding: 30px 0;
}
.cid-uqAMMl309c .mbr-section-title {
  color: #fafafa;
}
.cid-uqAMMl309c .mbr-text,
.cid-uqAMMl309c .mbr-section-btn {
  color: #ffffff;
}
.cid-uqANZeRZ0Z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqANZeRZ0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqANZeRZ0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqANZeRZ0Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uqANZeRZ0Z .row {
  flex-direction: row-reverse;
}
.cid-uqANZeRZ0Z img {
  width: 100%;
}
.cid-uqAz1Jp6Rj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAz1KdPHD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAz1L4woo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqAz1LtYNm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqAz1LtYNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAz1LtYNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAz1Nbdj4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqAz1O19oJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-uqAz1O19oJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAz1O19oJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAz1O19oJ .mbr-section-title {
  color: #ffffff;
}
.cid-uqAz1O19oJ .mbr-text,
.cid-uqAz1O19oJ .mbr-section-btn {
  color: #ffffff;
}
.cid-uqAz1OwIEs {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uqAz1OwIEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqAz1OwIEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqAz1OwIEs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqAz1OwIEs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uqAz1OwIEs .row {
    text-align: center;
  }
  .cid-uqAz1OwIEs .social-row {
    justify-content: center;
  }
}
.cid-uqAz1OwIEs .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uqAz1OwIEs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqAz1OwIEs .list {
    margin-bottom: 0rem;
  }
}
.cid-uqAz1OwIEs .mbr-text {
  color: #bbbbbb;
}
.cid-uqAz1OwIEs .mbr-iconfont {
  color: black;
}
.cid-urlKHczoQb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urlKHczoQb nav.navbar {
  position: fixed;
}
.cid-urlKHczoQb .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-urlKHczoQb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urlKHczoQb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urlKHczoQb .dropdown-item:hover,
.cid-urlKHczoQb .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-urlKHczoQb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urlKHczoQb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urlKHczoQb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urlKHczoQb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urlKHczoQb .nav-link {
  position: relative;
}
.cid-urlKHczoQb .container {
  display: flex;
  margin: auto;
}
.cid-urlKHczoQb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urlKHczoQb .dropdown-menu,
.cid-urlKHczoQb .navbar.opened {
  background: #ffffff !important;
}
.cid-urlKHczoQb .nav-item:focus,
.cid-urlKHczoQb .nav-link:focus {
  outline: none;
}
.cid-urlKHczoQb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urlKHczoQb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urlKHczoQb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urlKHczoQb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urlKHczoQb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urlKHczoQb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urlKHczoQb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-urlKHczoQb .navbar.opened {
  transition: all 0.3s;
}
.cid-urlKHczoQb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urlKHczoQb .navbar .navbar-logo img {
  width: auto;
}
.cid-urlKHczoQb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urlKHczoQb .navbar.collapsed {
  justify-content: center;
}
.cid-urlKHczoQb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urlKHczoQb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urlKHczoQb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urlKHczoQb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urlKHczoQb .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-urlKHczoQb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urlKHczoQb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urlKHczoQb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urlKHczoQb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urlKHczoQb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urlKHczoQb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urlKHczoQb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urlKHczoQb .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-urlKHczoQb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urlKHczoQb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urlKHczoQb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urlKHczoQb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urlKHczoQb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urlKHczoQb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urlKHczoQb .navbar.navbar-short {
  min-height: 60px;
}
.cid-urlKHczoQb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urlKHczoQb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urlKHczoQb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urlKHczoQb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urlKHczoQb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urlKHczoQb .dropdown-item.active,
.cid-urlKHczoQb .dropdown-item:active {
  background-color: transparent;
}
.cid-urlKHczoQb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urlKHczoQb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urlKHczoQb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urlKHczoQb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urlKHczoQb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urlKHczoQb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urlKHczoQb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urlKHczoQb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urlKHczoQb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urlKHczoQb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urlKHczoQb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urlKHczoQb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urlKHczoQb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urlKHczoQb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urlKHczoQb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urlKHczoQb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urlKHczoQb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urlKHczoQb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urlKHczoQb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urlKHczoQb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urlKHczoQb .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-urlKHczoQb .navbar {
    height: 70px;
  }
  .cid-urlKHczoQb .navbar.opened {
    height: auto;
  }
  .cid-urlKHczoQb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urlKHd7cJC {
  background-image: url("../../../assets/images/idealsugardaddy-923x482.jpg");
}
.cid-urlKHd7cJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHd7cJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlKHd7cJC .mbr-section-title {
  color: #ffffff;
}
.cid-urlKHdFikB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urlKHebtn3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urlKHebtn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHebtn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlKHebtn3 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-urlKHebtn3 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-urlKHebtn3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urlKHebtn3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urlKHebtn3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urlKHebtn3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-urlKHebtn3 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-urlKHebtn3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urlKHeKg37 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urm1etAevO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urm1etAevO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urm1etAevO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urm1etAevO .timeline-element {
  position: relative;
}
.cid-urm1etAevO .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-urm1etAevO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urm1etAevO .mbr-section-title,
.cid-urm1etAevO .mbr-section-subtitle,
.cid-urm1etAevO .timeline-date {
  text-align: center;
}
.cid-urm1etAevO .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #4e04d2;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-urm1etAevO .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-urm1etAevO .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-urm1etAevO .row:after {
  content: "";
  position: absolute;
  background-color: #4e04d2;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-urm1etAevO .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-urm1etAevO .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-urm1etAevO .timeline-date-wrapper,
  .cid-urm1etAevO .timeline-text-wrapper,
  .cid-urm1etAevO .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-urm1etAevO .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-urm1etAevO .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-urm1etAevO .timeline-date-wrapper,
  .cid-urm1etAevO .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-urm1etAevO .timeline-date-wrapper,
  .cid-urm1etAevO .timeline-text-wrapper,
  .cid-urm1etAevO .image-wrapper {
    padding: 2rem;
  }
}
.cid-urlKHh6wbZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-urlKHhDfwQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urlKHhDfwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHhDfwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-urlKHhDfwQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-urlKHhDfwQ .row {
  flex-direction: row-reverse;
}
.cid-urlKHhDfwQ img {
  width: 100%;
}
.cid-urlKHie36R {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urlKHie36R .mbr-section-title {
  text-align: center;
}
.cid-urlKHiR7gz {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urlKHknge1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urlKHknge1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHknge1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlKHknge1 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #e85a4f;
  margin-left: 1rem;
}
.cid-urlKHknge1 .panel-group {
  border: none;
}
.cid-urlKHknge1 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-urlKHknge1 .panel-body,
.cid-urlKHknge1 .card-header {
  padding: 1rem 0;
}
.cid-urlKHknge1 .panel-title-edit {
  color: #000000;
}
.cid-urlKHknge1 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-urlKHkXqw2 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #353535;
}
.cid-urlKHkXqw2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHkXqw2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlKHkXqw2 .mbr-section-title {
  color: #ffffff;
}
.cid-urlKHkXqw2 .mbr-text,
.cid-urlKHkXqw2 .mbr-section-btn {
  color: #ffffff;
}
.cid-urlKHltCo3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urlKHltCo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urlKHltCo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urlKHltCo3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urlKHltCo3 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urlKHltCo3 .row {
    text-align: center;
  }
  .cid-urlKHltCo3 .social-row {
    justify-content: center;
  }
}
.cid-urlKHltCo3 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urlKHltCo3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urlKHltCo3 .list {
    margin-bottom: 0rem;
  }
}
.cid-urlKHltCo3 .mbr-text {
  color: #bbbbbb;
}
.cid-urlKHltCo3 .mbr-iconfont {
  color: black;
}
.cid-urmdr0seHq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urmdr0seHq nav.navbar {
  position: fixed;
}
.cid-urmdr0seHq .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-urmdr0seHq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urmdr0seHq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urmdr0seHq .dropdown-item:hover,
.cid-urmdr0seHq .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-urmdr0seHq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urmdr0seHq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urmdr0seHq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urmdr0seHq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urmdr0seHq .nav-link {
  position: relative;
}
.cid-urmdr0seHq .container {
  display: flex;
  margin: auto;
}
.cid-urmdr0seHq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urmdr0seHq .dropdown-menu,
.cid-urmdr0seHq .navbar.opened {
  background: #ffffff !important;
}
.cid-urmdr0seHq .nav-item:focus,
.cid-urmdr0seHq .nav-link:focus {
  outline: none;
}
.cid-urmdr0seHq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urmdr0seHq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urmdr0seHq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urmdr0seHq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urmdr0seHq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urmdr0seHq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urmdr0seHq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-urmdr0seHq .navbar.opened {
  transition: all 0.3s;
}
.cid-urmdr0seHq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urmdr0seHq .navbar .navbar-logo img {
  width: auto;
}
.cid-urmdr0seHq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urmdr0seHq .navbar.collapsed {
  justify-content: center;
}
.cid-urmdr0seHq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urmdr0seHq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urmdr0seHq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urmdr0seHq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urmdr0seHq .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-urmdr0seHq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urmdr0seHq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urmdr0seHq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urmdr0seHq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urmdr0seHq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urmdr0seHq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urmdr0seHq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urmdr0seHq .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-urmdr0seHq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urmdr0seHq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urmdr0seHq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urmdr0seHq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urmdr0seHq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urmdr0seHq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urmdr0seHq .navbar.navbar-short {
  min-height: 60px;
}
.cid-urmdr0seHq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urmdr0seHq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urmdr0seHq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urmdr0seHq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urmdr0seHq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urmdr0seHq .dropdown-item.active,
.cid-urmdr0seHq .dropdown-item:active {
  background-color: transparent;
}
.cid-urmdr0seHq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urmdr0seHq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urmdr0seHq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urmdr0seHq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urmdr0seHq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urmdr0seHq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urmdr0seHq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urmdr0seHq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urmdr0seHq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urmdr0seHq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-urmdr0seHq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urmdr0seHq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urmdr0seHq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urmdr0seHq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urmdr0seHq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urmdr0seHq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urmdr0seHq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urmdr0seHq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urmdr0seHq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urmdr0seHq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urmdr0seHq .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-urmdr0seHq .navbar {
    height: 70px;
  }
  .cid-urmdr0seHq .navbar.opened {
    height: auto;
  }
  .cid-urmdr0seHq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urmdr13XX9 {
  background-image: url("../../../assets/images/sugardatingindia6sfd5esd-1005x448.jpg");
}
.cid-urmdr13XX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmdr13XX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmdr13XX9 .mbr-section-title {
  color: #ffffff;
}
.cid-urmdr1w5NC {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urmdr1WQv8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-urmdr1WQv8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmdr1WQv8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmdr1WQv8 .content-wrapper {
  background: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urmdr1WQv8 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-urmdr1WQv8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-urmdr1WQv8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-urmdr1WQv8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urmdr1WQv8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-urmdr1WQv8 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-urmdr1WQv8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-urmdr2pnOo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urqeBAVRbb {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urqeBAVRbb .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-urqeBAVRbb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-urqeBAVRbb .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-urqeBAVRbb .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urqfsl2hRC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urqfsl2hRC img,
.cid-urqfsl2hRC .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-urqfsl2hRC .item:focus,
.cid-urqfsl2hRC span:focus {
  outline: none;
}
.cid-urqfsl2hRC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urqfsl2hRC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urqfsl2hRC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqfsl2hRC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urqfsl2hRC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urqfsl2hRC .mbr-section-title {
  color: #232323;
}
.cid-urqfsl2hRC .mbr-text,
.cid-urqfsl2hRC .mbr-section-btn {
  text-align: center;
}
.cid-urqfsl2hRC .item-title {
  text-align: center;
}
.cid-urqfsl2hRC .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-urmdr3KurS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urmdr49JBr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-urqlcm6oLB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urqlcm6oLB img,
.cid-urqlcm6oLB .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-urqlcm6oLB .item:focus,
.cid-urqlcm6oLB span:focus {
  outline: none;
}
.cid-urqlcm6oLB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urqlcm6oLB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urqlcm6oLB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urqlcm6oLB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urqlcm6oLB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urqlcm6oLB .mbr-section-title {
  color: #232323;
}
.cid-urqlcm6oLB .mbr-text,
.cid-urqlcm6oLB .mbr-section-btn {
  text-align: left;
}
.cid-urqlcm6oLB .item-title {
  text-align: left;
}
.cid-urqlcm6oLB .item-subtitle {
  text-align: center;
}
.cid-urmdr5Ywmd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #353535;
}
.cid-urmdr5Ywmd .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmdr5Ywmd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmdr5Ywmd .mbr-section-title {
  color: #ffffff;
}
.cid-urmdr5Ywmd .mbr-text,
.cid-urmdr5Ywmd .mbr-section-btn {
  color: #ffffff;
}
.cid-urmdr6q20s {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-urmdr6q20s .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmdr6q20s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmdr6q20s .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urmdr6q20s .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urmdr6q20s .row {
    text-align: center;
  }
  .cid-urmdr6q20s .social-row {
    justify-content: center;
  }
}
.cid-urmdr6q20s .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-urmdr6q20s .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urmdr6q20s .list {
    margin-bottom: 0rem;
  }
}
.cid-urmdr6q20s .mbr-text {
  color: #bbbbbb;
}
.cid-urmdr6q20s .mbr-iconfont {
  color: black;
}
.cid-sFF0ciwnEL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFF0ciwnEL nav.navbar {
  position: fixed;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFF0ciwnEL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFF0ciwnEL .dropdown-item:hover,
.cid-sFF0ciwnEL .dropdown-item:focus {
  background: #e85a4f !important;
  color: white !important;
}
.cid-sFF0ciwnEL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFF0ciwnEL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFF0ciwnEL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFF0ciwnEL .nav-link {
  position: relative;
}
.cid-sFF0ciwnEL .container {
  display: flex;
  margin: auto;
}
.cid-sFF0ciwnEL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown-menu,
.cid-sFF0ciwnEL .navbar.opened {
  background: #ffffff !important;
}
.cid-sFF0ciwnEL .nav-item:focus,
.cid-sFF0ciwnEL .nav-link:focus {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFF0ciwnEL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFF0ciwnEL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFF0ciwnEL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFF0ciwnEL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.opened {
  transition: all 0.3s;
}
.cid-sFF0ciwnEL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFF0ciwnEL .navbar .navbar-logo img {
  width: auto;
}
.cid-sFF0ciwnEL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar.collapsed {
  justify-content: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFF0ciwnEL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFF0ciwnEL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFF0ciwnEL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFF0ciwnEL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFF0ciwnEL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFF0ciwnEL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFF0ciwnEL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFF0ciwnEL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFF0ciwnEL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFF0ciwnEL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFF0ciwnEL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFF0ciwnEL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFF0ciwnEL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFF0ciwnEL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFF0ciwnEL .dropdown-item.active,
.cid-sFF0ciwnEL .dropdown-item:active {
  background-color: transparent;
}
.cid-sFF0ciwnEL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFF0ciwnEL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sFF0ciwnEL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFF0ciwnEL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFF0ciwnEL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFF0ciwnEL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFF0ciwnEL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFF0ciwnEL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFF0ciwnEL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFF0ciwnEL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFF0ciwnEL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFF0ciwnEL .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-sFF0ciwnEL .navbar {
    height: 70px;
  }
  .cid-sFF0ciwnEL .navbar.opened {
    height: auto;
  }
  .cid-sFF0ciwnEL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvMGXC3JAV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMGXC3JAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMGXC3JAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvMH3inHnQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMH3inHnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvMH3inHnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uvMH3inHnQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uvMH3inHnQ .row {
  flex-direction: row-reverse;
}
.cid-uvMH3inHnQ img {
  width: 100%;
}
.cid-uvMGYlHr1V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMGZ7WpAk {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvMGYHWOY0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMGZXO8cD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMH0VPPDw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMH0zk9Ac {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMGY1YcH9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMLyndrI9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uvMLH1bMoB {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhxQnxvzzH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uhxQnxvzzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxQnxvzzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxQnxvzzH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhxQnxvzzH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uhxQnxvzzH .row {
    text-align: center;
  }
  .cid-uhxQnxvzzH .social-row {
    justify-content: center;
  }
}
.cid-uhxQnxvzzH .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uhxQnxvzzH .list {
    margin-bottom: 0rem;
  }
}
.cid-uhxQnxvzzH .mbr-text {
  color: #bbbbbb;
}
.cid-uhxQnxvzzH .mbr-iconfont {
  color: black;
}
