.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #182195 !important;
}
.bg-success {
  background-color: #53c830 !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #fff0b0 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #182195 !important;
  border-color: #182195 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0c104a !important;
  border-color: #0c104a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c104a !important;
  border-color: #0c104a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #53c830 !important;
  border-color: #53c830 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #36821f !important;
  border-color: #36821f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #36821f !important;
  border-color: #36821f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
  color: #b08f00 !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: #594800 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #b08f00 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #182195;
  color: #182195;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0c104a !important;
  background-color: transparent!important;
  border-color: #0c104a !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #182195 !important;
  border-color: #182195 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #4479d9;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #53c830;
  color: #53c830;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #36821f !important;
  background-color: transparent!important;
  border-color: #36821f !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #53c830 !important;
  border-color: #53c830 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fff0b0;
  color: #fff0b0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe059 !important;
  background-color: transparent!important;
  border-color: #ffe059 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #b08f00 !important;
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #182195 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #53c830 !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #fff0b0 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a0e3d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #31761c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffdd4a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #182195;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #fff0b0;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #182195;
  border-color: #182195;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #182195;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4b55e2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a6e593;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #182195 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #182195;
}
/* 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: #182195;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #182195;
}
.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: #182195;
  border-bottom-color: #182195;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #182195 !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: #ffffff !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='%23182195' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uhX10oMifH {
  background-image: url("../../../assets/images/gemini-generated-image-41msz041msz041ms.png-2000x2000.png");
}
.cid-uhX10oMifH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhX10oMifH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhX10oMifH .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uhX10oMifH .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uhX10oMifH .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uhX10oMifH .media-content,
.cid-uhX10oMifH .mbr-figure {
  align-self: center;
}
.cid-uhX10oMifH .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uhX10oMifH .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uhX10oMifH .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uhX10oMifH .mbr-section-title DIV {
  text-align: center;
}
.cid-uhX10oMifH .mbr-text,
.cid-uhX10oMifH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhX10oMifH .mbr-section-title {
  color: #ffffff;
}
.cid-uPAArN4YpP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/gemini-generated-image-3bfxy93bfxy93bfx.png-2000x2000.png");
}
.cid-uPAArN4YpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAArN4YpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPAArN4YpP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPAArN4YpP .row {
  flex-direction: row-reverse;
}
.cid-uPAArN4YpP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uPAArN4YpP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uPAArN4YpP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uPAArN4YpP .mbr-section-title {
  color: #000000;
}
.cid-uPAArN4YpP .mbr-text,
.cid-uPAArN4YpP .mbr-section-btn {
  color: #232323;
}
.cid-uhqTWBdCkv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bed3f9;
}
.cid-uhqTWBdCkv .justify-content-center {
  align-items: center;
}
.cid-uhqTWBdCkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqTWBdCkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqTWBdCkv .item-wrapper {
  display: flex;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-uhqTWBdCkv .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhqTWBdCkv .mbr-section-btn {
  padding-left: 1.5rem;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-uhqTWBdCkv .mbr-section-btn {
    text-align: center;
    padding-left: 0rem;
  }
}
.cid-uhqTWBdCkv .row {
  align-items: center;
}
.cid-uhqTWBdCkv .card-text {
  color: #000000;
  margin-bottom: 0px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uhqTWBdCkv .card-text {
    text-align: center;
  }
}
.cid-uiiwJTcyUg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiiwJTcyUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiwJTcyUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiwJTcyUg .content-text {
  max-width: 800px;
}
.cid-uiiwJTcyUg .mbr-description {
  text-align: left;
}
.cid-ujr5i23sPj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-ujr5i23sPj img,
.cid-ujr5i23sPj .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-ujr5i23sPj img,
  .cid-ujr5i23sPj .item-img {
    max-height: 300px;
  }
}
.cid-ujr5i23sPj .item:focus,
.cid-ujr5i23sPj span:focus {
  outline: none;
}
.cid-ujr5i23sPj .item-wrapper {
  position: relative;
}
.cid-ujr5i23sPj .slide-content {
  position: relative;
  border-radius: 4px;
  background: #bed3f9;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ujr5i23sPj .slide-content .item-content {
  padding: 2.25rem 2.25rem 0;
}
.cid-ujr5i23sPj .slide-content .item-footer {
  padding: 0 2.25rem 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujr5i23sPj .slide-content .item-content {
    padding: 2rem 1.5rem 0;
  }
  .cid-ujr5i23sPj .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ujr5i23sPj .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-ujr5i23sPj .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-ujr5i23sPj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujr5i23sPj .mbr-section-title {
  color: #232323;
}
.cid-ujr5i23sPj .mbr-text,
.cid-ujr5i23sPj .mbr-section-btn {
  text-align: left;
}
.cid-ujr5i23sPj .item-title {
  text-align: left;
}
.cid-ujr5i23sPj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ujr5i23sPj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-ujr5i23sPj .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-ujr5i23sPj .embla__button--next,
.cid-ujr5i23sPj .embla__button--prev {
  display: flex;
}
.cid-ujr5i23sPj .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ujr5i23sPj .embla__button {
    display: none;
  }
}
.cid-ujr5i23sPj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ujr5i23sPj .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ujr5i23sPj .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujr5i23sPj .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujr5i23sPj .embla__button {
    top: auto;
  }
}
.cid-ujr5i23sPj .embla {
  position: relative;
  width: 100%;
}
.cid-ujr5i23sPj .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ujr5i23sPj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ujr5i23sPj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ujr5i23sPj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ujr5i23sPj .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-ujr5i23sPj .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-ujr5i23sPj .content-head {
  max-width: 800px;
}
.cid-uhnW97t01g {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/target-39.png-1953x1953.png");
}
.cid-uhnW97t01g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhnW97t01g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhnW97t01g .mbr-text {
  color: #000000;
  text-align: left;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhnW97t01g .mbr-text {
    margin-bottom: 1rem;
  }
}
.cid-uhnW97t01g .mbr-section-subtitle {
  color: #000000;
}
.cid-uhnW97t01g .item-wrapper {
  background: #bed3f9;
  margin-bottom: 2rem;
  padding: 2.25rem;
}
@media (max-width: 767px) {
  .cid-uhnW97t01g .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uhnW97t01g .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-uhnW97t01g .mbr-number {
  color: #182195;
}
.cid-uhnW97t01g .mbr-section-title {
  text-align: center;
  color: #182195;
}
.cid-uhnW97t01g .mbr-subtitle {
  text-align: center;
}
.cid-uhnW97t01g .card-text,
.cid-uhnW97t01g .item .mbr-section-btn {
  text-align: left;
}
.cid-u3B6fpCvYU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u3B6fpCvYU .carousel {
    min-height: 600px;
  }
  .cid-u3B6fpCvYU .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u3B6fpCvYU .carousel {
    min-height: 390px;
  }
  .cid-u3B6fpCvYU .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-u3B6fpCvYU .carousel {
    min-height: 330px;
  }
  .cid-u3B6fpCvYU .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-u3B6fpCvYU .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3B6fpCvYU .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3B6fpCvYU .carousel,
.cid-u3B6fpCvYU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u3B6fpCvYU .item-wrapper {
  width: 100%;
}
.cid-u3B6fpCvYU .carousel-caption {
  bottom: 40px;
}
.cid-u3B6fpCvYU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-u3B6fpCvYU .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-u3B6fpCvYU .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-u3B6fpCvYU .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3B6fpCvYU .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u3B6fpCvYU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3B6fpCvYU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u3B6fpCvYU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u3B6fpCvYU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u3B6fpCvYU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u3B6fpCvYU .carousel-indicators li.active,
.cid-u3B6fpCvYU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u3B6fpCvYU .carousel-indicators li::after,
.cid-u3B6fpCvYU .carousel-indicators li::before {
  content: none;
}
.cid-u3B6fpCvYU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u3B6fpCvYU .carousel-indicators {
    display: none !important;
  }
}
.cid-uzODW3cJxW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-1-1980x1980.webp");
}
.cid-uzODW3cJxW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzODW3cJxW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzODW3cJxW .card-wrapper {
  background: #232323;
}
@media (max-width: 767px) {
  .cid-uzODW3cJxW .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uzODW3cJxW .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uzODW3cJxW .card-wrapper {
    padding: 4rem;
  }
}
.cid-uzODW3cJxW .mbr-text,
.cid-uzODW3cJxW .mbr-section-btn {
  color: #ffffff;
}
.cid-uzODW3cJxW .card-title,
.cid-uzODW3cJxW .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uhnZ4QhtNc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/img-20221204-wa0020.jpg");
}
.cid-uhnZ4QhtNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhnZ4QhtNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhnZ4QhtNc .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhnZ4QhtNc .item-mb {
    margin-bottom: 0;
  }
}
.cid-uhnZ4QhtNc .item-wrapper {
  background: #bed3f9;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uhnZ4QhtNc .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uhnZ4QhtNc .item-wrapper {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
.cid-uhnZ4QhtNc .mbr-iconfont {
  display: inline-flex;
  font-size: 3rem;
  color: #182195;
  margin-bottom: 1rem;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  height: 80px;
  border-radius: 50%;
}
.cid-uhnZ4QhtNc .mbr-section-title {
  color: #182195;
}
.cid-uhnZ4QhtNc .mbr-section-subtitle {
  color: #232323;
}
.cid-uhnZ4QhtNc .card-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uhnZ4QhtNc .card-box .item-footer {
  margin-top: auto;
}
.cid-uhnZ4QhtNc .content-head {
  max-width: 800px;
}
.cid-uhqWNpad4H {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uhqWNpad4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhqWNpad4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhqWNpad4H .card-wrapper {
  background: #ffffff;
  padding: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uhqWNpad4H .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhqWNpad4H .card-wrapper {
    padding: 1.5rem;
  }
}
.cid-uhqWNpad4H .row {
  justify-content: space-between;
}
.cid-uhqWNpad4H .mbr-section-cardtitle {
  text-align: center;
}
.cid-uhqWNpad4H .mbr-cardtext,
.cid-uhqWNpad4H .mbr-section-btn {
  text-align: center;
}
.cid-uhqWNpad4H .mbr-section-title {
  text-align: left;
}
.cid-uhqWNpad4H .mbr-text,
.cid-uhqWNpad4H .mbr-section-btn {
  text-align: left;
}
.cid-tD17JpzB3j {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/img-20221204-wa0020.jpeg");
}
.cid-tD17JpzB3j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD17JpzB3j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD17JpzB3j ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tD17JpzB3j li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tD17JpzB3j ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #182195;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tD17JpzB3j H3 {
  text-align: center;
  color: #182195;
}
.cid-tNCTlL4vos {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNCTlL4vos .mbr-section-subtitle {
  text-align: left;
  color: #182195;
}
.cid-tNCTlL4vos .mbr-text {
  color: #000000;
}
.cid-tDLZV2YB9W {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tDLZV2YB9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDLZV2YB9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDLZV2YB9W .video-wrapper iframe {
  width: 100%;
}
.cid-tDLZV2YB9W .mbr-section-title,
.cid-tDLZV2YB9W .mbr-section-subtitle,
.cid-tDLZV2YB9W .mbr-text {
  text-align: center;
}
.cid-tDM9nHWyE4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/gemini-generated-image-idtufdidtufdidtu.png-2000x2000.png");
}
.cid-tDM9nHWyE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDM9nHWyE4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDM9nHWyE4 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tDM9nHWyE4 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tDM9nHWyE4 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tDM9nHWyE4 .wrapper {
  padding: 30px 0;
}
.cid-tDM9nHWyE4 .mbr-section-title {
  color: #fafafa;
}
.cid-tDM9nHWyE4 .mbr-text,
.cid-tDM9nHWyE4 .mbr-section-btn {
  color: #ffffff;
}
.cid-tDM9nHWyE4 H3 {
  color: #ffffff;
}
.cid-tDLIptPWiO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDLIptPWiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDLIptPWiO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDLIptPWiO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tDLIptPWiO .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tDLIptPWiO .embla__button--next,
.cid-tDLIptPWiO .embla__button--prev {
  display: flex;
}
.cid-tDLIptPWiO .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tDLIptPWiO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tDLIptPWiO .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tDLIptPWiO .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDLIptPWiO .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tDLIptPWiO .embla__button {
    top: auto;
  }
}
.cid-tDLIptPWiO .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tDLIptPWiO .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tDLIptPWiO .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tDLIptPWiO .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tDLIptPWiO .embla {
  position: relative;
  width: 100%;
}
.cid-tDLIptPWiO .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tDLIptPWiO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tDLIptPWiO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tDLIptPWiO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKA295T3AZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uKA295T3AZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKA295T3AZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKA295T3AZ .mbr-text {
  color: #000000;
}
.cid-uKA295T3AZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uKA295T3AZ .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uKA295T3AZ .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uKA295T3AZ .mbr-section-subtitle,
.cid-uKA295T3AZ .main-button {
  color: #000000;
}
.cid-uKA295T3AZ .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uKA295T3AZ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uKA295T3AZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKA295T3AZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKA295T3AZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tDM93Tvo8G {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/whatsapp-image-2023-04-16-at-21.10.53.jpg-1500x774.jpg");
}
.cid-tDM93Tvo8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDM93Tvo8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDM93Tvo8G .media-container-row {
  justify-content: space-between;
}
.cid-tDM93Tvo8G .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDM93Tvo8G .text-content {
    max-width: none;
  }
}
.cid-tDM93Tvo8G .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDM93Tvo8G .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDM93Tvo8G .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDM93Tvo8G .icons {
    justify-content: center !important;
  }
  .cid-tDM93Tvo8G .text-content * {
    text-align: center;
  }
}
.cid-tDM93Tvo8G .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tDM93Tvo8G P {
  color: #ffffff;
  text-align: center;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDMn1TqJzm {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background5.jpg");
}
.cid-tDMn1TqJzm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDMn1TqJzm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDMn1TqJzm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDMn1TqJzm .row {
    flex-direction: column-reverse;
  }
  .cid-tDMn1TqJzm .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tDMn1TqJzm .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDMn1TqJzm .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tDMn1TqJzm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tDPMA0Wf0s {
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-tDPMA0Wf0s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPMA0Wf0s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPMA0Wf0s .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tDPMA0Wf0s .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tDPMA0Wf0s .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tDPMA0Wf0s .card-wrapper {
    padding: 4rem;
  }
}
.cid-tDPMA0Wf0s .mbr-text,
.cid-tDPMA0Wf0s .mbr-section-btn {
  text-align: left;
}
.cid-tE0mewqVdD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/designer-4-1024x1024.jpeg");
}
.cid-tE0mewqVdD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE0mewqVdD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tE0mewqVdD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE0mewqVdD .row {
  flex-direction: row-reverse;
}
.cid-tE0mewqVdD img {
  width: 100%;
}
.cid-tE0mewqVdD .mbr-description {
  color: #000000;
}
.cid-tDPQCLgU46 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-image-2025-04-25-at-11.05.45-b39068d7.jpg-1600x1200.jpg");
}
.cid-tDPQCLgU46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPQCLgU46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPQCLgU46 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tDPQCLgU46 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tDPQCLgU46 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #182195;
}
.cid-tDPQCLgU46 .panel-body,
.cid-tDPQCLgU46 .card-header {
  padding: 1rem 0;
}
.cid-tDPQCLgU46 .panel-title-edit {
  color: #ffffff;
}
.cid-tDPQCLgU46 H3 {
  color: #ffffff;
}
.cid-tDPQCLgU46 .panel-text {
  color: #ffffff;
}
.cid-tDPQCLgU46 P {
  color: #ffffff;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDQeFh46UB {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/img-20230317-wa0035-1-1600x1201.jpeg");
}
.cid-tDQeFh46UB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDQeFh46UB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDQeFh46UB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDQeFh46UB .row {
  flex-direction: row-reverse;
}
.cid-tDQeFh46UB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDQeFh46UB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhs1T2O8rs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uhs1T2O8rs .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uhs1T2O8rs .smallImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-uhs1T2O8rs .largeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-uhs1T2O8rs .largeImage .item {
    margin-bottom: 2rem;
  }
  .cid-uhs1T2O8rs .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cid-uhs1T2O8rs .largeImage .item {
    margin-bottom: 1rem;
  }
}
.cid-uhs1T2O8rs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhs1T2O8rs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhs1T2O8rs .mbr-description {
  text-align: left;
}
.cid-uhs1T2O8rs .card-title,
.cid-uhs1T2O8rs .iconfont-wrapper {
  color: #000000;
}
.cid-uhs1T2O8rs .card-text {
  color: #000000;
}
.cid-uhs1T2O8rs .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uhs1T2O8rs .mbr-number {
  color: #9fe870;
}
.cid-uhs1T2O8rs .mbr-text,
.cid-uhs1T2O8rs .mbr-section-btn {
  text-align: center;
}
.cid-uhs1T2O8rs .card-text,
.cid-uhs1T2O8rs .item .mbr-section-btn {
  text-align: left;
}
.cid-uhs1T2O8rs .smallImage {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhs1T2O8rs .smallImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-uhs1T2O8rs .largeImage {
  width: 100%;
  height: 632px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uhs1T2O8rs .largeImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-tDQh0tegka {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDQh0tegka .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDQhDl0CMX {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDQhDl0CMX .mbr-text {
  text-align: left;
}
.cid-tDQi9EaRDg {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/red-modern-football-sport-flyer-20240201-234009-661x935.jpeg");
}
.cid-tDQi9EaRDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDQi9EaRDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDQi9EaRDg .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDQi9EaRDg .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tDQi9EaRDg .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tDQi9EaRDg P {
  color: #ffffff;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tE0r5q5oVn {
  background-image: url("../../../assets/images/img-20230226-wa0032-1000x750.jpeg");
}
.cid-tE0r5q5oVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE0r5q5oVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE0r5q5oVn .mbr-section-title {
  color: #ffffff;
}
.cid-tE0r5q5oVn .mbr-text,
.cid-tE0r5q5oVn .mbr-section-btn {
  color: #ffffff;
}
.cid-uKAly2LCgB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uKAly2LCgB .video-wrapper iframe {
  width: 100%;
}
.cid-uKAly2LCgB .mbr-section-title,
.cid-uKAly2LCgB .mbr-section-subtitle,
.cid-uKAly2LCgB .mbr-text {
  text-align: center;
}
.cid-tE0rSXYN4x {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tE0rSXYN4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE0rSXYN4x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE0rSXYN4x .video-wrapper iframe {
  width: 100%;
}
.cid-tE0rSXYN4x .mbr-section-title,
.cid-tE0rSXYN4x .mbr-section-subtitle,
.cid-tE0rSXYN4x .mbr-text {
  text-align: center;
}
.cid-tE0wI0zSjc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tE0wI0zSjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE0wI0zSjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE0wI0zSjc .video-wrapper iframe {
  width: 100%;
}
.cid-tE0wI0zSjc .mbr-section-title,
.cid-tE0wI0zSjc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tE0wI0zSjc .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDQ7E9g5IF {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background15.jpeg");
}
.cid-tDQ7E9g5IF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDQ7E9g5IF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDQ7E9g5IF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tDQ7E9g5IF .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tDQ7E9g5IF .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tDQ7E9g5IF .mbr-section-title {
  color: #ffffff;
}
.cid-tDQ7E9g5IF .mbr-text,
.cid-tDQ7E9g5IF .mbr-section-btn,
.cid-tDQ7E9g5IF .social-row {
  color: #ffffff;
}
.cid-tDQaWG2ZXv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bed3f9;
}
.cid-tDQaWG2ZXv blockquote {
  border-color: #182195;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tDQaWG2ZXv .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tDQaWG2ZXv .mbr-section-title {
  color: #000000;
}
.cid-uiiIPF51U9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-20230225-wa0070-1280x729.jpg");
}
.cid-uiiIPF51U9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiIPF51U9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiIPF51U9 .mbr-section-btn {
  opacity: 0;
  transition-delay: 0.1s;
  z-index: 1;
  position: relative;
  margin: auto;
}
.cid-uiiIPF51U9 .content-head {
  max-width: 800px;
}
.cid-uiiIPF51U9 .card1 {
  background-image: url("../../../assets/images/img-20221210-wa0011flyer-973x1546.jpeg");
  background-size: cover;
  background-position: center center;
}
.cid-uiiIPF51U9 .card1:before {
  background: #d70081;
}
.cid-uiiIPF51U9 .card2 {
  background-image: url("../../../assets/images/piccard1-449x661.jpg");
  background-size: cover;
  background-position: center center;
}
.cid-uiiIPF51U9 .card2:before {
  background: #ffd7ef;
}
.cid-uiiIPF51U9 .card3 {
  background-image: url("../../../assets/images/img-20230217-wa0039-415x613.jpeg");
  background-size: cover;
  background-position: center center;
}
.cid-uiiIPF51U9 .card3:before {
  background: #ffea64;
}
.cid-uiiIPF51U9 .card4 {
  background-image: url("../../../assets/images/team4.jpg");
  background-size: cover;
  background-position: center center;
}
.cid-uiiIPF51U9 .card4:before {
  background: #4479d9;
}
.cid-uiiIPF51U9 .content-wrap {
  margin: auto;
  display: flex;
  height: 100%;
}
.cid-uiiIPF51U9 .card-wrap {
  border-radius: inherit;
  height: 400px;
  position: relative;
  transition: all 0.3s;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uiiIPF51U9 .card-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uiiIPF51U9 .card-wrap:before {
  content: "";
  position: absolute;
  border-radius: inherit;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition-delay: 0.1s;
  opacity: 0;
}
.cid-uiiIPF51U9 .card {
  transition: transform 0.6s;
}
.cid-uiiIPF51U9 .card:hover .card-wrap,
.cid-uiiIPF51U9 .card:focus-within .card-wrap {
  transform: rotateY(180deg);
}
.cid-uiiIPF51U9 .card:hover .card-wrap:before,
.cid-uiiIPF51U9 .card:focus-within .card-wrap:before {
  opacity: 1;
}
.cid-uiiIPF51U9 .card:hover .mbr-section-btn,
.cid-uiiIPF51U9 .card:focus-within .mbr-section-btn {
  opacity: 1;
  transform: rotateY(180deg);
}
@media (max-width: 767px) {
  .cid-uiiIPF51U9 .card:hover .card-wrap {
    transform: none;
  }
  .cid-uiiIPF51U9 .card:hover .card-wrap:before {
    opacity: 0.8;
  }
  .cid-uiiIPF51U9 .card-wrap:before {
    opacity: 0.8;
  }
  .cid-uiiIPF51U9 .card-wrap:hover {
    transform: none;
  }
  .cid-uiiIPF51U9 .card-wrap:hover .mbr-section-btn {
    transform: none;
  }
  .cid-uiiIPF51U9 .mbr-section-btn {
    opacity: 1;
  }
}
.cid-uiiD7HhppT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/designer-4-1024x1024.jpeg");
}
@media (max-width: 767px) {
  .cid-uiiD7HhppT .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uiiD7HhppT .google-map {
  height: 400px;
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-uiiD7HhppT .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uiiD7HhppT .google-map iframe {
    min-height: 350px;
  }
}
.cid-uiiD7HhppT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uiiD7HhppT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uiiD7HhppT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uiiD7HhppT .content-head {
  max-width: 800px;
}
.cid-uiiD7HhppT .mbr-section-title {
  color: #182195;
}
.cid-uiiD7HhppT .mbr-section-subtitle {
  color: #182195;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uhrSpblUcy {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/img-20240107-wa0001-900x1600.jpeg");
}
.cid-uhrSpblUcy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.8;
}
.cid-uhrSpblUcy .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uhrSpblUcy .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uhrSpblUcy {
    align-items: center;
  }
  .cid-uhrSpblUcy .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uhrSpblUcy .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uhrSpblUcy {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uhrSpblUcy .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhrSpblUcy .content-wrap {
    width: 100%;
  }
}
.cid-uhrSpblUcy .mbr-section-title {
  text-align: center;
  color: #182195;
}
.cid-uhrSpblUcy .mbr-text,
.cid-uhrSpblUcy .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uhrSpblUcy .mbr-description {
  text-align: center;
  color: #ffffff;
}
.cid-tDQ1LECD8z {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mega-mendung-batik.jpeg");
}
.cid-tDQ1LECD8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDQ1LECD8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDQ1LECD8z H3 {
  color: #ffffff;
  text-align: center;
}
.cid-tDQ1LECD8z .mbr-text,
.cid-tDQ1LECD8z .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-xNje8DJoHW {
  padding-top: 4rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-xNje8DJoHW .mbr-section-title {
  text-align: center;
  color: #182195;
}
.cid-xNje8DJoHW .frame {
  min-height: 1000px;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tEGQEYBEQR {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/designer-4-1024x1024.jpeg");
}
.cid-tEGQEYBEQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEGQEYBEQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEGQEYBEQR .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tEGQEYBEQR .mbr-section-title {
  color: #ffffff;
}
.cid-tEGQEYBEQR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhr1JOjlCD {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uhr1JOjlCD .item:focus,
.cid-uhr1JOjlCD span:focus {
  outline: none;
}
.cid-uhr1JOjlCD .item {
  cursor: pointer;
}
.cid-uhr1JOjlCD .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uhr1JOjlCD .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uhr1JOjlCD .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-uhr1JOjlCD .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.cid-uhr1JOjlCD .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #232323;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uhr1JOjlCD .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 25s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-uhr1JOjlCD .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 18s;
}
.cid-uhr1JOjlCD .mbr-section-title,
.cid-uhr1JOjlCD .mbr-section-subtitle {
  color: #000000;
}
.cid-uKAep5PKDI {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/head2.png-1772x857.png");
}
.cid-uKAep5PKDI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKAep5PKDI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uKAep5PKDI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKAep5PKDI .row {
  flex-direction: row-reverse;
}
.cid-uKAep5PKDI .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uKAep5PKDI .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uKAep5PKDI .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uKAep5PKDI .mbr-section-title {
  color: #000000;
}
.cid-uKAep5PKDI .mbr-text,
.cid-uKAep5PKDI .mbr-section-btn {
  color: #000000;
}
.cid-tE0iNgp5iv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/-6ee4888f-5a82-475b-8641-97590d6d52aa-1024x1024.jpeg");
}
.cid-tE0iNgp5iv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE0iNgp5iv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE0iNgp5iv .mbr-section-title {
  text-align: center;
}
.cid-tE0iNgp5iv .mbr-text,
.cid-tE0iNgp5iv .mbr-section-btn {
  text-align: center;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDp0c1ogJA {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDp0c1ogJA blockquote {
  border-color: #182195;
  border-radius: 4px;
  background-color: #bed3f9;
}
.cid-tDp0c1ogJA .mbr-section-title {
  text-align: center;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDp15tqHiu {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tDp15tqHiu blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #bed3f9;
}
.cid-tDp15tqHiu .mbr-section-title {
  text-align: center;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDP5YbOysx {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mega-mendung-batik.jpeg");
}
.cid-tDP5YbOysx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDP5YbOysx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDP5YbOysx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDP5YbOysx .row {
  flex-direction: row-reverse;
}
.cid-tDP5YbOysx img {
  width: 100%;
}
.cid-tDP5YbOysx .mbr-description {
  color: #182195;
}
.cid-tDP4XtF2kp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDP4XtF2kp blockquote {
  border-color: #182195;
  border-radius: 4px;
  background-color: #bed3f9;
}
.cid-tDP4XtF2kp .mbr-section-title {
  text-align: center;
}
.cid-urQRttXV1d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-urQRttXV1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-urQRttXV1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urQRttXV1d .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-urQRttXV1d .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-urQRttXV1d .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-urQRttXV1d .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-urQRttXV1d .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-urQRttXV1d .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-urQRttXV1d .carousel-control,
.cid-urQRttXV1d .close {
  background: #1b1b1b;
}
.cid-urQRttXV1d .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-urQRttXV1d .carousel-control-prev span {
  margin-right: 5px;
}
.cid-urQRttXV1d .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-urQRttXV1d .carousel-control-next span {
  margin-left: 5px;
}
.cid-urQRttXV1d .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-urQRttXV1d .close::before {
  content: '\e91a';
}
.cid-urQRttXV1d .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-urQRttXV1d .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-urQRttXV1d .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urQRttXV1d .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-urQRttXV1d .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-urQRttXV1d .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-urQRttXV1d .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-urQRttXV1d .carousel-indicators li.active,
.cid-urQRttXV1d .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-urQRttXV1d .carousel-indicators li::after,
.cid-urQRttXV1d .carousel-indicators li::before {
  content: none;
}
.cid-urQRttXV1d .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urQRttXV1d .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-urQRttXV1d .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-urQRttXV1d .carousel-indicators {
    display: none;
  }
}
.cid-urQRttXV1d .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-urQRttXV1d .carousel-inner > .active {
  display: block;
}
.cid-urQRttXV1d .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-urQRttXV1d .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-urQRttXV1d .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-urQRttXV1d .carousel-control,
  .cid-urQRttXV1d .carousel-indicators,
  .cid-urQRttXV1d .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-urQRttXV1d .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-urQRttXV1d .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-urQRttXV1d .carousel-indicators .active,
.cid-urQRttXV1d .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-urQRttXV1d .carousel-indicators .active {
  background: #fff;
}
.cid-urQRttXV1d .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-urQRttXV1d .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-urQRttXV1d .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-urQRttXV1d .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-urQRttXV1d .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-urQRttXV1d .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-urQRttXV1d .carousel {
  width: 100%;
}
.cid-urQRttXV1d .modal-backdrop.in {
  opacity: 0.8;
}
.cid-urQRttXV1d .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-urQRttXV1d .modal.fade .modal-dialog,
.cid-urQRttXV1d .modal.in .modal-dialog {
  transform: none;
}
.cid-urQRttXV1d .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-urQRttXV1d H6 {
  text-align: center;
}
.cid-urQRttXV1d H3 {
  color: #182195;
}
.cid-uiiaATkVA3 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiiaATkVA3 blockquote {
  border-color: #4479d9;
  border-radius: 4px;
  background-color: #bed3f9;
}
.cid-uiiaATkVA3 .mbr-section-title {
  text-align: left;
}
.cid-uiiboaW936 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #bed3f9;
}
.cid-uiiboaW936 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiiboaW936 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiiboaW936 .card-wrapper {
  overflow: hidden;
  background: #ffffff;
}
.cid-uiiboaW936 .text-wrapper {
  padding: 4rem 3rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uiiboaW936 .text-wrapper {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uiiboaW936 .text-wrapper {
    padding: 1.5rem;
  }
}
.cid-uiiboaW936 .row {
  align-items: center;
  margin-right: -1rem;
  margin-left: -1rem;
}
.cid-uiiboaW936 .row {
  flex-direction: row-reverse;
}
.cid-uiiboaW936 .image-wrapper {
  padding: 0 1rem;
}
.cid-uiiboaW936 img,
.cid-uiiboaW936 .image-wrapper {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uiiboaW936 img,
  .cid-uiiboaW936 .image-wrapper {
    max-height: 350px;
  }
}
.cid-uiiboaW936 .mbr-section-title {
  color: #000000;
}
.cid-uiiboaW936 .mbr-text {
  color: #000000;
}
.cid-tDPgpu7kbJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tDPgpu7kbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPgpu7kbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPgpu7kbJ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tDPgpu7kbJ .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-tDPgpu7kbJ .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tDPyDpFD5r {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-tDPyDpFD5r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPyDpFD5r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPyDpFD5r .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tDPyDpFD5r .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tDPyDpFD5r .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tDPyDpFD5r .mbr-text,
.cid-tDPyDpFD5r .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tDPyDpFD5r .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tDPDCNJHZy {
  background-image: url("../../../assets/images/-1a1c3fec-5510-4490-9b50-268e41986313-1024x1024.jpg");
}
.cid-tDPDCNJHZy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPDCNJHZy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDPDCNJHZy .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tDPDCNJHZy .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tDPDCNJHZy .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tDPELkybuy {
  background-image: url("../../../assets/images/-a31fa556-3228-45fb-9364-6742f748dcae-1024x1024.jpg");
}
.cid-tDPELkybuy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDPELkybuy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDPELkybuy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDPELkybuy .row {
  flex-direction: row-reverse;
}
.cid-tDPELkybuy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDPELkybuy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDPELkybuy .mbr-section-title {
  color: #ffffff;
}
.cid-tDPELkybuy .mbr-text {
  color: #ffffff;
}
.cid-tDPELkybuy .mbr-description {
  color: #ffe161;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uhWZakNEpQ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uhWZakNEpQ .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;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uhWZakNEpQ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhWZakNEpQ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhWZakNEpQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhWZakNEpQ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uhWZakNEpQ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uhWZakNEpQ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uhWZakNEpQ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uhWZakNEpQ .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uhWZakNEpQ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uhWZakNEpQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uhWZakNEpQ .nav-item:focus,
.cid-uhWZakNEpQ .nav-link:focus {
  outline: none;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhWZakNEpQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhWZakNEpQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhWZakNEpQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhWZakNEpQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uhWZakNEpQ .navbar.opened {
  transition: all 0.25s;
}
.cid-uhWZakNEpQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhWZakNEpQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uhWZakNEpQ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uhWZakNEpQ .navbar.collapsed {
  justify-content: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhWZakNEpQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhWZakNEpQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhWZakNEpQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhWZakNEpQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar {
    min-height: 72px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhWZakNEpQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhWZakNEpQ .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-uhWZakNEpQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhWZakNEpQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uhWZakNEpQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhWZakNEpQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhWZakNEpQ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uhWZakNEpQ .dropdown-item.active,
.cid-uhWZakNEpQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uhWZakNEpQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhWZakNEpQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uhWZakNEpQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uhWZakNEpQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhWZakNEpQ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .navbar-buttons {
    text-align: left;
  }
}
.cid-uhWZakNEpQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhWZakNEpQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhWZakNEpQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhWZakNEpQ .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uhWZakNEpQ .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uhWZakNEpQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhWZakNEpQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uhWZakNEpQ .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhWZakNEpQ .navbar {
    height: 70px;
  }
  .cid-uhWZakNEpQ .navbar.opened {
    height: auto;
  }
  .cid-uhWZakNEpQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uhWZakNEpQ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uhWZakNEpQ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-brand {
    margin-right: auto;
  }
  .cid-uhWZakNEpQ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uhWZakNEpQ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uhWZakNEpQ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uhWZakNEpQ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uhWZakNEpQ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhWZakNEpQ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uPB810DfOx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2e481a;
}
.cid-uPB810DfOx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPB810DfOx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPB810DfOx .card-wrapper {
  background: #9fe870;
}
@media (max-width: 767px) {
  .cid-uPB810DfOx .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPB810DfOx .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uPB810DfOx .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uPB810DfOx .mbr-text,
.cid-uPB810DfOx .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uPB810DfOx .card-title,
.cid-uPB810DfOx .card-box {
  text-align: center;
  color: #2e481a;
}
.cid-tDoczI1Zlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-uPB7uYHprb {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uPB7uYHprb .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;
}
@media (max-width: 767px) {
  .cid-uPB7uYHprb .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uPB7uYHprb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPB7uYHprb .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uPB7uYHprb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPB7uYHprb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPB7uYHprb .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uPB7uYHprb .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uPB7uYHprb .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
}
.cid-uPB7uYHprb .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uPB7uYHprb .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uPB7uYHprb .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uPB7uYHprb .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
}
.cid-uPB7uYHprb .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uPB7uYHprb .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uPB7uYHprb .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uPB7uYHprb .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uPB7uYHprb .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uPB7uYHprb .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uPB7uYHprb .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uPB7uYHprb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uPB7uYHprb .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
}
@media (max-width: 992px) {
  .cid-uPB7uYHprb .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uPB7uYHprb .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uPB7uYHprb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPB7uYHprb .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #232323;
}
.cid-uPB7uYHprb .nav-item:focus,
.cid-uPB7uYHprb .nav-link:focus {
  outline: none;
}
.cid-uPB7uYHprb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPB7uYHprb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPB7uYHprb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPB7uYHprb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPB7uYHprb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPB7uYHprb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPB7uYHprb .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uPB7uYHprb .navbar.opened {
  transition: all 0.25s;
}
.cid-uPB7uYHprb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPB7uYHprb .navbar .navbar-logo img {
  width: auto;
}
.cid-uPB7uYHprb .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uPB7uYHprb .navbar.collapsed {
  justify-content: center;
}
.cid-uPB7uYHprb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPB7uYHprb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPB7uYHprb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uPB7uYHprb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPB7uYHprb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPB7uYHprb .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-uPB7uYHprb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPB7uYHprb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPB7uYHprb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uPB7uYHprb .navbar {
    min-height: 72px;
  }
  .cid-uPB7uYHprb .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uPB7uYHprb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPB7uYHprb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPB7uYHprb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPB7uYHprb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPB7uYHprb .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-uPB7uYHprb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPB7uYHprb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uPB7uYHprb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPB7uYHprb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPB7uYHprb .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uPB7uYHprb .dropdown-item.active,
.cid-uPB7uYHprb .dropdown-item:active {
  background-color: transparent;
}
.cid-uPB7uYHprb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPB7uYHprb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPB7uYHprb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPB7uYHprb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uPB7uYHprb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uPB7uYHprb .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uPB7uYHprb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPB7uYHprb .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uPB7uYHprb .navbar-buttons {
    text-align: left;
  }
}
.cid-uPB7uYHprb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPB7uYHprb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPB7uYHprb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPB7uYHprb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPB7uYHprb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPB7uYHprb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPB7uYHprb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPB7uYHprb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPB7uYHprb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPB7uYHprb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPB7uYHprb .navbar-dropdown {
  padding: 0;
  background-color: #232323 !important;
  position: fixed;
}
.cid-uPB7uYHprb .opacityScroll {
  background: rgba(35, 35, 35, 0) !important;
}
.cid-uPB7uYHprb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPB7uYHprb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uPB7uYHprb .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPB7uYHprb .navbar {
    height: 70px;
  }
  .cid-uPB7uYHprb .navbar.opened {
    height: auto;
  }
  .cid-uPB7uYHprb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uPB7uYHprb .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uPB7uYHprb .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uPB7uYHprb .navbar-brand {
    margin-right: auto;
  }
  .cid-uPB7uYHprb .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #232323;
    backdrop-filter: blur(8px);
  }
  .cid-uPB7uYHprb .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uPB7uYHprb .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uPB7uYHprb .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uPB7uYHprb .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uPB7uYHprb .navbar-collapse {
    left: -0.7rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 991px) and (min-width: 768px) and (max-width: 991px) {
  .cid-uPB7uYHprb .navbar-collapse {
    left: 0rem;
    width: 106%;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-uPB7uYHprb .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uPB8jn6FIs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #2e481a;
}
.cid-uPB8jn6FIs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPB8jn6FIs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPB8jn6FIs .card-wrapper {
  background: #9fe870;
}
@media (max-width: 767px) {
  .cid-uPB8jn6FIs .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPB8jn6FIs .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uPB8jn6FIs .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uPB8jn6FIs .mbr-text,
.cid-uPB8jn6FIs .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uPB8jn6FIs .card-title,
.cid-uPB8jn6FIs .card-box {
  text-align: center;
  color: #2e481a;
}
.cid-uPB7uZ7PSw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
