body {
  font-family: 'Dosis', sans-serif;
}
.display-1 {
  font-family: 'Dosis', sans-serif;
  font-size: 6.25rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Dosis', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
}
.display-4 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-5 {
  font-family: 'Dosis', sans-serif;
  font-size: 2.2rem;
  line-height: 1.14;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.125rem;
  line-height: 1.41;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.14 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.41 * (1.04375rem + (1.125 - 1.04375) * ((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: #ffd1dc !important;
}
.bg-success {
  background-color: #ffd1dc !important;
}
.bg-info {
  background-color: #85c0d9 !important;
}
.bg-warning {
  background-color: #ffe885 !important;
}
.bg-danger {
  background-color: #e6c63b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffd1dc !important;
  border-color: #ffd1dc !important;
  color: #d10032 !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: #ff7a9a !important;
  border-color: #ff7a9a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #d10032 !important;
  background-color: #ff7a9a !important;
  border-color: #ff7a9a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #57b8e0 !important;
  border-color: #57b8e0 !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: #2390bd !important;
  border-color: #2390bd !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2390bd !important;
  border-color: #2390bd !important;
}
.btn-info,
.btn-info:active {
  background-color: #85c0d9 !important;
  border-color: #85c0d9 !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: #439ec4 !important;
  border-color: #439ec4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #439ec4 !important;
  border-color: #439ec4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffd1dc !important;
  border-color: #ffd1dc !important;
  color: #d10032 !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: #ff7a9a !important;
  border-color: #ff7a9a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #d10032 !important;
  background-color: #ff7a9a !important;
  border-color: #ff7a9a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
  color: #856c00 !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: #2e2600 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #856c00 !important;
  background-color: #ffd82e !important;
  border-color: #ffd82e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !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: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !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: #000000 !important;
  border-color: #000000 !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: #ffd1dc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff7a9a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #d10032 !important;
  background-color: #ffd1dc !important;
  border-color: #ffd1dc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #57b8e0;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2390bd !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: #57b8e0 !important;
  border-color: #57b8e0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #85c0d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #439ec4 !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: #85c0d9 !important;
  border-color: #85c0d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd1dc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ff7a9a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #d10032 !important;
  background-color: #ffd1dc !important;
  border-color: #ffd1dc !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe885;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd82e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #856c00 !important;
  background-color: #ffe885 !important;
  border-color: #ffe885 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e6c63b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b39617 !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: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.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: #000000 !important;
  border-color: #000000 !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: #ffd1dc !important;
}
.text-secondary {
  color: #57b8e0 !important;
}
.text-success {
  color: #ffd1dc !important;
}
.text-info {
  color: #85c0d9 !important;
}
.text-warning {
  color: #ffe885 !important;
}
.text-danger {
  color: #e6c63b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff6b8e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #2186b0 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff6b8e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3b96bd !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffd51f !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a68b15 !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: #ffd1dc;
}
.nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #85c0d9;
}
.alert-warning {
  background-color: #ffe885;
}
.alert-danger {
  background-color: #e6c63b;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffd1dc;
  border-color: #ffd1dc;
  color: #eb0038;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffd1dc;
}
.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: #ffffff;
}
.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: #fdfbf0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.5rem;
}
.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: #ffd1dc !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Dosis', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.5rem;
}
blockquote {
  border-color: #ffd1dc;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffd1dc;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffd1dc;
}
.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: #ffd1dc;
  border-bottom-color: #ffd1dc;
}
.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: #000000 !important;
  background-color: #ffd1dc !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #57b8e0 !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='%23ffd1dc' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 100%;
  width: 86%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 801px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1201px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1441px) {
  .container {
    max-width: 1300px;
  }
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 190px;
  border-radius: 0;
  padding: 17px 48px 15px 50px;
  line-height: 1.33;
  font-weight: 500 !important;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
.mbr-section-btn .btn-primary {
  color: #ffffff !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary:hover {
  color: #000 !important;
  background: 0 0 !important;
}
.mbr-section-btn .btn-primary-outline {
  color: #000000 !important;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(70deg, #57b8e0, #5762e2, #be8ec6);
  background: 0 0;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.mbr-section-btn .btn-primary-outline:hover {
  color: #fff !important;
  background: #5cc3ee !important;
  background: linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
b {
  font-weight: 600 !important;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjLtT2Ybe {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tmjLtT2Ybe .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjLtT2Ybe .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjLtT2Ybe .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjLtT2Ybe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjLtT2Ybe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmscECy0iY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-tmscECy0iY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmscECy0iY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmscECy0iY .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tmscECy0iY .mbr-section-title,
.cid-tmscECy0iY .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tmam1LTYr2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmam1LTYr2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmam1LTYr2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmam1LTYr2 .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tmam1LTYr2 .container {
    padding: 0 50px !important;
  }
}
.cid-tmam1LTYr2 .row {
  align-items: stretch;
}
.cid-tmam1LTYr2 .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tmam1LTYr2 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tmam1LTYr2 .card-title {
  color: #070606;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .card-title {
    text-align: center;
  }
}
.cid-tmam1LTYr2 .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .mbr-text {
    text-align: center;
  }
}
.cid-tmam1LTYr2 .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tmam1LTYr2 .image-wrapper {
  filter: drop-shadow(5px 5px 2px #989898);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tmam1LTYr2 .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tmam1LTYr2 .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tmam1LTYr2 .image-wrapper {
    padding-right: 0;
  }
}
.cid-tmam1LTYr2 .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #ffd1dc;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tmam1LTYr2 .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tmam1LTYr2 .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tmam1LTYr2 .card-title DIV {
  text-align: left;
}
.cid-uFzzIrDMtr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-uFzzIrDMtr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzzIrDMtr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzzIrDMtr .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFzzIrDMtr .mbr-section-title,
.cid-uFzzIrDMtr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tmg95bCElR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tmg95bCElR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmg95bCElR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmg95bCElR .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tmg95bCElR .container {
    padding: 0 50px !important;
  }
}
.cid-tmg95bCElR .row {
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-tmg95bCElR .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tmg95bCElR .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tmg95bCElR .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .card-title {
    text-align: center;
  }
}
.cid-tmg95bCElR .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .mbr-text {
    text-align: center;
  }
}
.cid-tmg95bCElR .col-img {
  filter: drop-shadow(5px 5px 2px #989898);
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 75px !important;
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tmg95bCElR .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tmg95bCElR .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tmg95bCElR .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tmg95bCElR .image-wrapper {
    padding-right: 0;
  }
}
.cid-tmg95bCElR .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #ffd1dc;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tmg95bCElR .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tmg95bCElR .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tmg95bCElR .card-title DIV {
  text-align: left;
}
.cid-uFfvXivLp7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-uFfvXivLp7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFfvXivLp7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFfvXivLp7 .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFfvXivLp7 .mbr-section-title,
.cid-uFfvXivLp7 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tTyNzBkGXL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tTyNzBkGXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTyNzBkGXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTyNzBkGXL .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-tTyNzBkGXL .container {
    padding: 0 50px !important;
  }
}
.cid-tTyNzBkGXL .row {
  align-items: stretch;
}
.cid-tTyNzBkGXL .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tTyNzBkGXL .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .text-wrapper {
    padding-top: 30px;
  }
}
.cid-tTyNzBkGXL .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .card-title {
    text-align: center;
  }
}
.cid-tTyNzBkGXL .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .mbr-text {
    text-align: center;
  }
}
.cid-tTyNzBkGXL .col-img {
  filter: drop-shadow(5px 5px 2px #989898);
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-tTyNzBkGXL .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tTyNzBkGXL .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tTyNzBkGXL .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-tTyNzBkGXL .image-wrapper {
    padding-right: 0;
  }
}
.cid-tTyNzBkGXL .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #ffd1dc;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-tTyNzBkGXL .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-tTyNzBkGXL .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-tTyNzBkGXL .card-title DIV {
  text-align: left;
}
.cid-tmscFnVwQA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-tmscFnVwQA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmscFnVwQA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmscFnVwQA .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tmscFnVwQA .mbr-section-title,
.cid-tmscFnVwQA .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uEO5NchGQM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uEO5NchGQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEO5NchGQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEO5NchGQM .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-uEO5NchGQM .container {
    padding: 0 50px !important;
  }
}
.cid-uEO5NchGQM .row {
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-uEO5NchGQM .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uEO5NchGQM .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .text-wrapper {
    padding-top: 30px;
  }
}
.cid-uEO5NchGQM .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .card-title {
    text-align: center;
  }
}
.cid-uEO5NchGQM .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .mbr-text {
    text-align: center;
  }
}
.cid-uEO5NchGQM .col-img {
  filter: drop-shadow(5px 5px 2px #989898);
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 75px !important;
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-uEO5NchGQM .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uEO5NchGQM .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-uEO5NchGQM .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-uEO5NchGQM .image-wrapper {
    padding-right: 0;
  }
}
.cid-uEO5NchGQM .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #ffd1dc;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-uEO5NchGQM .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-uEO5NchGQM .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-uEO5NchGQM .card-title DIV {
  text-align: left;
}
.cid-uFgsRPST9I {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
}
.cid-uFgsRPST9I .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uFgsRPST9I .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uFgsRPST9I .mbr-section-btn {
  margin-top: 30px;
}
.cid-uFgsRPST9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFgsRPST9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFeC6dB0U9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
}
.cid-uFeC6dB0U9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFeC6dB0U9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFeC6dB0U9 .content-wrapper {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uFeC6dB0U9 .content-wrapper {
    padding: 0;
  }
}
.cid-uFeC6dB0U9 .content-wrapper .rating-wrapper {
  margin-bottom: 24px;
}
.cid-uFeC6dB0U9 .content-wrapper .rating-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  justify-content: center;
}
.cid-uFeC6dB0U9 .content-wrapper .rating-wrapper .list .item-wrap {
  padding: 12px;
  -webkit-text-stroke-width: .15rem;
  -webkit-text-stroke-color: #050f0f;
  margin-bottom: 0;
}
.cid-uFeC6dB0U9 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFeC6dB0U9 .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uFeC6dB0U9 .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uFeC6dB0U9 .list {
  color: #ffe66d;
  text-align: center;
}
.cid-uFeC6dB0U9 .mbr-text,
.cid-uFeC6dB0U9 .text-wrapper {
  color: #050f0f;
}
.cid-uFeC6dB0U9 .mbr-desc {
  color: #050f0f;
  text-align: center;
}
.cid-uFeC6dB0U9 .mbr-text,
.cid-uFeC6dB0U9 .text-wrapper,
.cid-uFeC6dB0U9 .rating-wrapper {
  text-align: center;
}
.cid-uFeC6dB0U9 H3 {
  color: #070606;
}
.cid-uFeG5WmpbP {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFeG5WmpbP .carousel-item {
  justify-content: center;
}
.cid-uFeG5WmpbP .carousel-item.active,
.cid-uFeG5WmpbP .carousel-item-next,
.cid-uFeG5WmpbP .carousel-item-prev {
  display: flex;
}
.cid-uFeG5WmpbP .carousel-controls a {
  transition: opacity .5s;
  font-size: 40px;
  height: 60px;
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  color: #070606;
}
@media (max-width: 768px) {
  .cid-uFeG5WmpbP .carousel-controls {
    display: none;
  }
}
.cid-uFeG5WmpbP .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .5;
  z-index: 10;
  display: -webkit-flex;
}
.cid-uFeG5WmpbP .author-wrap {
  margin-bottom: 10px;
}
.cid-uFeG5WmpbP .author-wrap .user_image {
  width: 80px;
  height: 80px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 20px;
}
.cid-uFeG5WmpbP .author-wrap .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uFeG5WmpbP .author-wrap .user-info {
  margin-top: 9px;
}
.cid-uFeG5WmpbP .author-wrap .user-info .user_name {
  text-align: left;
}
.cid-uFeG5WmpbP .author-wrap .user-info .user_desk {
  text-align: left;
}
@media (max-width: 230px) {
  .cid-uFeG5WmpbP .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uFeG5WmpbP .carousel-indicators {
  position: absolute;
  bottom: -45px;
  margin-bottom: 1.5rem !important;
}
.cid-uFeG5WmpbP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-uFeG5WmpbP .carousel-indicators li.active {
  background-color: #fa9db7;
}
.cid-uFeG5WmpbP .carousel-indicators li.active,
.cid-uFeG5WmpbP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uFeG5WmpbP .carousel-indicators li::after,
.cid-uFeG5WmpbP .carousel-indicators li::before {
  content: none;
}
.cid-uFeG5WmpbP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uFeG5WmpbP .carousel-indicators {
    display: none !important;
  }
}
.cid-uFeG5WmpbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFeG5WmpbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjLEpXWhG {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tmjLEpXWhG .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjLEpXWhG .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjLEpXWhG .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjLEpXWhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjLEpXWhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmkxjt2nXv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tmkxjt2nXv .container {
    max-width: 1400px;
  }
}
.cid-tmkxjt2nXv img {
  margin-bottom: -2.5rem;
  border-radius: 0%;
  width: 300px;
  height: 300px;
  transform: translateY(-100px);
  object-fit: contain;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmkxjt2nXv .link-wrap {
  display: inline-block;
  width: contain;
}
.cid-tmkxjt2nXv .card-wrapper {
  border-radius: 25px;
  background: #ffd1dc;
  background-position: center;
  padding: 0 4rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
@media (max-width: 1400px) {
  .cid-tmkxjt2nXv .card-wrapper {
    padding: 0 1.5rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmkxjt2nXv .card-wrapper {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }
}
.cid-tmkxjt2nXv .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 3px;
  width: fit-content;
  color: #d58f76;
}
.cid-tmkxjt2nXv .link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -2px;
  left: 0;
}
.cid-tmkxjt2nXv .link:hover:before {
  animation: 2s line;
}
@keyframes line {
  0% {
    transform: scale(1);
    transform-origin: right;
  }
  25% {
    transform: scale(0);
    transform-origin: right;
  }
  26% {
    transform: scale(0);
    transform-origin: left;
  }
  75% {
    transform: scale(1);
    transform-origin: left;
  }
}
.cid-tmkxjt2nXv .card-subtitle {
  color: #000000;
}
.cid-tmkxjt2nXv .mbr-price {
  color: #000000;
}
.cid-tmkxjt2nXv .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tmkxjt2nXv .mbr-text,
.cid-tmkxjt2nXv .link-align {
  color: #000000;
  text-align: left;
}
.cid-u4DYaQbMmK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u4DYaQbMmK .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-u4DYaQbMmK .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-u4DYaQbMmK .mbr-section-btn {
  margin-top: 30px;
}
.cid-u4DYaQbMmK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4DYaQbMmK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjM6vYFJb {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmjM6vYFJb .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjM6vYFJb .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjM6vYFJb .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjM6vYFJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjM6vYFJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmr8cYJm5A {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tmr8cYJm5A h4 {
  display: flex;
  margin-bottom: 0;
}
.cid-tmr8cYJm5A .panel-text {
  padding-bottom: 45px;
  color: #000000;
}
.cid-tmr8cYJm5A .wrap {
  display: flex;
}
.cid-tmr8cYJm5A .icon {
  min-width: 30px;
  min-height: 30px;
  border-radius: 100%;
  color: #000000 !important;
  font-size: .7rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
  transition: all 0.3s;
  transform: scaleY(-1);
}
.cid-tmr8cYJm5A .icon:before {
  content: "\e908" !important;
}
.cid-tmr8cYJm5A .icon-wrapper {
  height: 33px;
  width: 33px;
  border-radius: 100%;
  border: 2px solid #000000;
}
.cid-tmr8cYJm5A .panel-title.collapsed .icon {
  transform: scaleY(1) !important;
}
.cid-tmr8cYJm5A .mbr-section-title {
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-tmr8cYJm5A p {
  margin: 0;
}
.cid-tmr8cYJm5A .card .card-header a.panel-title {
  background-color: transparent!important;
  margin-top: 0px!important;
}
.cid-tmr8cYJm5A .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tmr8cYJm5A .panel-group {
  width: 100%;
}
.cid-tmr8cYJm5A .panel-title {
  border-radius: 0px;
  padding: 2rem 0;
}
.cid-tmr8cYJm5A .card {
  border-bottom: 1px solid #b8b8b8 !important;
}
.cid-tmr8cYJm5A .card .card-header {
  background: none;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tmr8cYJm5A .card .card-header a.panel-title {
  transition: all .3s;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tmr8cYJm5A .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tmr8cYJm5A .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmr8cYJm5A .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.cid-tmr8cYJm5A .header-text,
.cid-tmr8cYJm5A .sign {
  color: #000000;
}
.cid-tmr8cYJm5A .mbr-section-subtitle {
  color: #000000;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjMht9Mse {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmjMht9Mse .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjMht9Mse .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjMht9Mse .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjMht9Mse .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjMht9Mse .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmg6Zmf4rh {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tmg6Zmf4rh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmg6Zmf4rh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmg6Zmf4rh .container {
  max-width: 1600px;
}
.cid-tmg6Zmf4rh .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #f3f3f3;
  padding: 4rem 4rem 6.5rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .content-wrapper {
    padding: 40px 40px 5rem;
  }
}
@media (max-width: 767px) {
  .cid-tmg6Zmf4rh .content-wrapper {
    padding: 4rem 6vw 5rem;
  }
}
.cid-tmg6Zmf4rh .col-title {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .col-title {
    margin-bottom: 50px;
  }
}
.cid-tmg6Zmf4rh .mbr-section-title {
  color: #000000;
}
.cid-tmg6Zmf4rh .panel-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.83rem;
  border: none;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-tmg6Zmf4rh .panel-group {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}
.cid-tmg6Zmf4rh .card {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.83rem;
  border-radius: 1.25rem !important;
  background-color: rgba(255, 255, 255, 0.01);
}
.cid-tmg6Zmf4rh .sign.mbr-iconfont {
  font-size: 22px !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1.2rem;
  transition: all ease-in-out 0.3s;
}
.cid-tmg6Zmf4rh .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-tmg6Zmf4rh .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tmg6Zmf4rh .panel-title-edit {
  color: #070606;
  transition: all ease-in-out 0.3s;
}
.cid-tmg6Zmf4rh .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px !important;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .panel-title {
    padding: 16px 24px !important;
  }
}
.cid-tmg6Zmf4rh .panel-title:hover .panel-title-edit {
  color: #1497d0;
}
.cid-tmg6Zmf4rh .panel-body {
  padding: 16px 40px 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .panel-body {
    padding: 16px 24px 24px;
  }
}
.cid-tmg6Zmf4rh .panel-text {
  color: #000000;
  margin-bottom: 0 !important;
}
.cid-tmg6Zmf4rh .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tmg6Zmf4rh .col-text {
  width: 100%;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .col-text {
    margin-top: 40px;
  }
}
.cid-tmg6Zmf4rh .mbr-section-subtitle {
  color: #000000;
}
.cid-tmg6Zmf4rh .mbr-text {
  margin-top: 24px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmg6Zmf4rh .mbr-text {
    margin-top: 16px;
  }
}
.cid-tmg6Zmf4rh .btn-container {
  padding: 0 4rem;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-tmg6Zmf4rh .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-tmg6Zmf4rh .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-tmg6Zmf4rh .btn-container .btn {
    width: 100%;
  }
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjLSrstGr {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tmjLSrstGr .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjLSrstGr .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjLSrstGr .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjLSrstGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjLSrstGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-9g {
  /* Type valid CSS here */
}
#custom-html-9g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-9g p {
  font-size: 60px;
  color: #777;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmqBbSpJN0 {
  background-image: url("../../../assets/images/img-9913.webp");
  border-radius: 25px;
}
.cid-tmqBbSpJN0 .subtitle {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
}
.cid-tmqBbSpJN0 .sc__title {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  padding-bottom: 0;
}
.cid-tmqBbSpJN0 .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmjMuysOm7 {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmjMuysOm7 .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmjMuysOm7 .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmjMuysOm7 .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmjMuysOm7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmjMuysOm7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm4ZJ5Nawa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tm4ZJ5Nawa img {
  display: inline;
  border: 8px solid #ffffff;
  border-radius: 25px;
  filter: drop-shadow(5px 5px 10px #989898);
}
.cid-tm4ZJ5Nawa .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cid-tm4ZJ5Nawa .first {
  transform: rotate(10deg);
  max-height: 317px;
  width: auto;
}
.cid-tm4ZJ5Nawa .second {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tm4ZJ5Nawa .third {
  transform: rotate(5deg);
  max-height: 476px;
  width: auto;
  z-index: 10;
}
.cid-tm4ZJ5Nawa .fourth {
  transform: rotate(356deg);
  max-height: 390px;
  width: auto;
  z-index: 5;
}
.cid-tm4ZJ5Nawa .fifth {
  transform: rotate(350deg);
  max-height: 317px;
  width: auto;
}
@media (max-width: 1400px) {
  .cid-tm4ZJ5Nawa .first {
    max-height: 250px;
  }
  .cid-tm4ZJ5Nawa .second {
    max-height: 323px;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: 408px;
  }
  .cid-tm4ZJ5Nawa .fourth {
    max-height: 323px;
  }
  .cid-tm4ZJ5Nawa .fifth {
    max-height: 250px;
  }
}
@media (max-width: 1100px) {
  .cid-tm4ZJ5Nawa .first {
    max-height: 200px;
  }
  .cid-tm4ZJ5Nawa .second {
    max-height: 270px;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: 350px;
  }
  .cid-tm4ZJ5Nawa .fourth {
    max-height: 270px;
  }
  .cid-tm4ZJ5Nawa .fifth {
    max-height: 200px;
  }
}
@media (max-width: 900px) {
  .cid-tm4ZJ5Nawa .first {
    display: none;
  }
  .cid-tm4ZJ5Nawa .second {
    max-height: 323px;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: 408px;
  }
  .cid-tm4ZJ5Nawa .fourth {
    max-height: 323px;
  }
  .cid-tm4ZJ5Nawa .fifth {
    display: none;
  }
}
@media (max-width: 765px) {
  .cid-tm4ZJ5Nawa .second {
    max-height: 250px;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: 340px;
  }
  .cid-tm4ZJ5Nawa .fourth {
    max-height: 250px;
  }
}
@media (max-width: 650px) {
  .cid-tm4ZJ5Nawa .second {
    max-height: 180px;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: 270px;
  }
  .cid-tm4ZJ5Nawa .fourth {
    max-height: 180px;
  }
}
@media (max-width: 465px) {
  .cid-tm4ZJ5Nawa .second {
    display: none;
  }
  .cid-tm4ZJ5Nawa .third {
    max-height: initial;
    width: 90%;
  }
  .cid-tm4ZJ5Nawa .fourth {
    display: none;
  }
}
.cid-tm51BtOHcd {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tm51BtOHcd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm51BtOHcd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm51BtOHcd .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tm51BtOHcd .mbr-section-title,
.cid-tm51BtOHcd .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tmscltqEXD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-tmscltqEXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmscltqEXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmscltqEXD .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tmscltqEXD .mbr-section-title,
.cid-tmscltqEXD .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tmlWlueDgu {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tmlWlueDgu .mbr-section-title {
  color: #000000;
  filter: drop-shadow(5px 5px 2px #989898);
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmlWlueDgu .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: center;
}
.cid-tmlWlueDgu .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmlWlueDgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmlWlueDgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmsct9ahQX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-tmsct9ahQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmsct9ahQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmsct9ahQX .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tmsct9ahQX .mbr-section-title,
.cid-tmsct9ahQX .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tma9N8FwEn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  min-height: 845px;
  background-image: url("../../../assets/images/photo-2022-11-03-17-44-24-1280x1035.webp");
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tma9N8FwEn {
    min-height: 667px;
  }
}
.cid-tma9N8FwEn .row {
  align-items: stretch;
  width: 100%;
}
.cid-tma9N8FwEn .col-text {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-tma9N8FwEn .col-text {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-tma9N8FwEn .col-text {
    width: 60%;
  }
}
.cid-tma9N8FwEn .text-container {
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-tma9N8FwEn .text-container {
    padding: 0 0 0 16% !important;
  }
}
@media (max-width: 880px) {
  .cid-tma9N8FwEn .text-container {
    padding: 0 !important;
  }
}
@media (min-width: 1441px) {
  .cid-tma9N8FwEn .text-container {
    padding: 10px !important;
  }
}
.cid-tma9N8FwEn .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
@media (min-width: 1441px) {
  .cid-tma9N8FwEn .text-wrapper {
    padding: 0 55% 0 0;
  }
}
@media (max-width: 1440px) {
  .cid-tma9N8FwEn .text-wrapper {
    padding: 0 30% 0 0;
  }
}
@media (max-width: 1024px) {
  .cid-tma9N8FwEn .text-wrapper {
    padding: 0 25% 0 0;
  }
}
@media (max-width: 880px) {
  .cid-tma9N8FwEn .text-wrapper {
    padding: 0 15% 0 0;
  }
}
@media (max-width: 767px) {
  .cid-tma9N8FwEn .text-wrapper {
    padding: 0;
  }
}
.cid-tma9N8FwEn .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 10px;
}
.cid-tma9N8FwEn .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 0;
  text-align: left;
}
.cid-tma9N8FwEn .mbr-section-btn {
  width: 100%;
  margin-top: 30px;
}
.cid-tma9N8FwEn .mbr-section-btn .btn-transform {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(-90deg, currentColor 0, currentColor 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: left !important;
  transition: background-position 0.2s ease !important;
}
.cid-tma9N8FwEn .mbr-section-btn .btn-white-outline {
  color: #ffffff !important;
  border: 1px solid #ffffff;
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tma9N8FwEn .mbr-section-btn .btn-white-outline:hover {
  color: #fff !important;
  background: #ffffff !important;
}
.cid-tma9N8FwEn .mbr-section-btn .btn-white-outline:hover .btn-transform {
  background-image: -webkit-linear-gradient(45deg, #5cc3ee 0, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%) !important;
}
.cid-tma9N8FwEn .col-img {
  width: 100%;
}
@media (min-width: 1024px) {
  .cid-tma9N8FwEn .col-img {
    width: 50%;
  }
}
@media (min-width: 758px) {
  .cid-tma9N8FwEn .col-img {
    width: 40%;
  }
}
.cid-tma9N8FwEn .mbr-section-title,
.cid-tma9N8FwEn .mbr-section-btn {
  color: #ffffff;
}
.cid-tmscwuYTzv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffd1dc;
}
.cid-tmscwuYTzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmscwuYTzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmscwuYTzv .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tmscwuYTzv .mbr-section-title,
.cid-tmscwuYTzv .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tmsd5J9LYv {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmsd5J9LYv .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tmsd5J9LYv .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-tmsd5J9LYv .mbr-section-btn {
  margin-top: 30px;
}
.cid-tmsd5J9LYv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmsd5J9LYv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
.cid-yhBSG6YunC .icon-bar {
  z-index: 100002;
  right: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-yhBSG6YunC .icon-bar a:hover {
  background-color: #5cc1ed;
  margin-left: -50px;
  width: 100px;
}
.cid-yhBSG6YunC .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 10px;
  border-radius: 25px;
}
.cid-yhBSG6YunC .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .custom1 {
  background: #1497d0;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .custom2 {
  background: #1497d0;
  color: white;
  width: 50px;
}
.cid-yhBSG6YunC .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-yhBSG6YunC .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#5cc1ed, #1497d0);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-yhBSG6YunC .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#1497d0, #5cc1ed);
}
.cid-yhBSG6YunC .corner-ribbon.top-zen {
  top: auto;
  right: -50px;
  bottom: 25px;
  left: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-yhBSG6YunC P {
  color: #232323;
}
.cid-yhBSG6YunC DIV {
  color: #070606;
  text-align: right;
}
.cid-yhBSG6YunC H10 {
  color: #767676;
}
.cid-yhBSG6YunC .hidden {
  display: none;
}
.cid-yhBSG6YunC div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-ulsVfNAWQ1.popup-builder {
  background-color: #ffffff;
}
.cid-ulsVfNAWQ1.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ulsVfNAWQ1.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ulsVfNAWQ1 .modal-content,
.cid-ulsVfNAWQ1 .modal-dialog {
  height: auto;
}
.cid-ulsVfNAWQ1 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ulsVfNAWQ1 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ulsVfNAWQ1 .form-wrapper .mbr-form .form-group,
  .cid-ulsVfNAWQ1 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ulsVfNAWQ1 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ulsVfNAWQ1 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulsVfNAWQ1 .mbr-text {
  text-align: center;
}
.cid-ulsVfNAWQ1 .pt-0 {
  padding-top: 0 !important;
}
.cid-ulsVfNAWQ1 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ulsVfNAWQ1 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ulsVfNAWQ1 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ulsVfNAWQ1 .modal-open {
  overflow: hidden;
}
.cid-ulsVfNAWQ1 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ulsVfNAWQ1 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ulsVfNAWQ1 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ulsVfNAWQ1 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ulsVfNAWQ1 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ulsVfNAWQ1 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ulsVfNAWQ1 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ulsVfNAWQ1 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ulsVfNAWQ1 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ulsVfNAWQ1 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ulsVfNAWQ1 .modal-backdrop.fade {
  opacity: 0;
}
.cid-ulsVfNAWQ1 .modal-backdrop.show {
  opacity: .5;
}
.cid-ulsVfNAWQ1 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ulsVfNAWQ1 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ulsVfNAWQ1 .modal-header {
    padding: 1rem;
  }
}
.cid-ulsVfNAWQ1 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ulsVfNAWQ1 .modal-header .close svg {
  fill: #353535;
}
.cid-ulsVfNAWQ1 .modal-header .close:hover {
  opacity: 1;
}
.cid-ulsVfNAWQ1 .modal-header .close:focus {
  outline: none;
}
.cid-ulsVfNAWQ1 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ulsVfNAWQ1 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ulsVfNAWQ1 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulsVfNAWQ1 .modal-body {
    padding: 1rem;
  }
}
.cid-ulsVfNAWQ1 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ulsVfNAWQ1 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulsVfNAWQ1 .modal-footer {
    padding: 1rem;
  }
}
.cid-ulsVfNAWQ1 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ulsVfNAWQ1 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ulsVfNAWQ1 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ulsVfNAWQ1 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ulsVfNAWQ1 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ulsVfNAWQ1 .modal-lg,
  .cid-ulsVfNAWQ1 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ulsVfNAWQ1 .modal-xl {
    max-width: 1140px;
  }
}
.cid-ulsVfNAWQ1 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ulsVfNAWQ1 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ulsVfNAWQ1 .form-group {
  margin-bottom: 1rem;
}
.cid-ulsVfNAWQ1 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ulsVfNAWQ1 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ulsVfNAWQ1 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ulsVfNAWQ1 .mbr-section-btn {
  margin: 0;
}
.cid-ulsVfNAWQ1 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tmjNv1dTMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmjNv1dTMQ nav.navbar {
  position: fixed;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmjNv1dTMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmjNv1dTMQ .dropdown-item:hover,
.cid-tmjNv1dTMQ .dropdown-item:focus {
  background: #ffd1dc !important;
  color: white !important;
}
.cid-tmjNv1dTMQ .dropdown-item:hover span {
  color: white;
}
.cid-tmjNv1dTMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmjNv1dTMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmjNv1dTMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmjNv1dTMQ .nav-link {
  position: relative;
}
.cid-tmjNv1dTMQ .container {
  display: flex;
  margin: auto;
}
.cid-tmjNv1dTMQ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown-menu,
.cid-tmjNv1dTMQ .navbar.opened {
  background: #ffd1dc !important;
}
.cid-tmjNv1dTMQ .nav-item:focus,
.cid-tmjNv1dTMQ .nav-link:focus {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmjNv1dTMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmjNv1dTMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmjNv1dTMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmjNv1dTMQ .navbar {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom: 1px solid transparent;
  filter: drop-shadow(5px 5px 2px #989898);
  min-height: 70px;
  transition: all 0.3s;
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmjNv1dTMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmjNv1dTMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmjNv1dTMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmjNv1dTMQ .navbar.collapsed {
  justify-content: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmjNv1dTMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tmjNv1dTMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmjNv1dTMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmjNv1dTMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmjNv1dTMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmjNv1dTMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmjNv1dTMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmjNv1dTMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmjNv1dTMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmjNv1dTMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tmjNv1dTMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmjNv1dTMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmjNv1dTMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmjNv1dTMQ .dropdown-item.active,
.cid-tmjNv1dTMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmjNv1dTMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmjNv1dTMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffd1dc;
}
.cid-tmjNv1dTMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmjNv1dTMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmjNv1dTMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmjNv1dTMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 31px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmjNv1dTMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmjNv1dTMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmjNv1dTMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmjNv1dTMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 25px;
  border: 2px solid;
  padding: 20px;
  width: 200px;
  height: 5vw;
  max-height: 50px;
  min-height: 20px;
  background: #FFFFFF;
  filter: drop-shadow(5px 5px 2px #989898);
}
.cid-tmjNv1dTMQ a.nav-link:hover {
  background-color: #b5ddee;
  width: 210px;
  height: 6vw;
}
.cid-tmjNv1dTMQ .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-tmjNv1dTMQ .navbar {
    height: 70px;
  }
  .cid-tmjNv1dTMQ .navbar.opened {
    height: auto;
  }
  .cid-tmjNv1dTMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFhPQl61ot {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFhPQl61ot .mbr-section-title {
  filter: drop-shadow(5px 5px 2px #989898);
  color: #000000;
  margin-bottom: 0;
  background: linear-gradient(0deg, #5cc3ee 0%, #5d91ef 29%, #5e5ef0 50%, #947be1 73%, #ca97d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uFhPQl61ot .mbr-section-subtitle {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-uFhPQl61ot .mbr-section-btn {
  margin-top: 30px;
}
.cid-uFhPQl61ot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFhPQl61ot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFhR61n0cv {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFhR61n0cv .mbr-text {
  color: #000000;
}
.cid-uFhR61n0cv .mbr-section-subtitle {
  color: #000000;
}
.cid-uFhR61n0cv .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFhR61n0cv .mbr-text,
.cid-uFhR61n0cv .item .mbr-section-btn {
  text-align: left;
}
.cid-uFhR61n0cv .item-wrapper {
  filter: drop-shadow(5px 5px 2px #989898);
  border-radius: 25px;
  background: #ffd1dc;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uFhR61n0cv .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uFhR61n0cv .item-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uFhR61n0cv .item-wrapper {
    padding: 4rem;
  }
}
.cid-uFhR61n0cv .details-icon {
  color: #1b1b1b;
  padding-right: 0.5rem;
}
.cid-uFhR61n0cv .mbr-card-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uFhR61n0cv .details .details-item {
  display: inline-flex;
  padding-right: 1rem;
}
.cid-uFhR61n0cv .mbr-tag,
.cid-uFhR61n0cv .tags-wrapper {
  color: #000000;
}
.cid-tmrXtcV7bK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffd1dc;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
  filter: drop-shadow(5px -5px 2px #989898);
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .media-col {
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-tmrXtcV7bK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tmrXtcV7bK .cards-row,
.cid-tmrXtcV7bK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmrXtcV7bK .cards-col {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tmrXtcV7bK .cards-col {
    justify-content: flex-end;
  }
}
.cid-tmrXtcV7bK .social-col {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .cid-tmrXtcV7bK .row {
    text-align: center;
  }
  .cid-tmrXtcV7bK .cards-col {
    justify-content: center;
  }
  .cid-tmrXtcV7bK .social-col {
    justify-content: center;
    margin-top: 30px;
  }
}
.cid-tmrXtcV7bK .card-item {
  width: 45px;
  height: 30px;
  margin-right: 1rem;
}
.cid-tmrXtcV7bK .card-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .card-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-tmrXtcV7bK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmrXtcV7bK .soc-item:last-child {
  margin-right: 0;
}
.cid-tmrXtcV7bK .mbr-iconfont {
  color: #ffffff;
}
.cid-tmrXtcV7bK .mbr-text {
  color: #ffffff;
}
.cid-tmrXtcV7bK .copyright {
  color: #000000;
}
