body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.625rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 3.28125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.1rem;
    font-size: calc( 1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.5687499999999999rem + (2.625 - 1.5687499999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1rem + (1 - 1) * ((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: #000000 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #fcff1e !important;
}
.btn-primary .btn-overlay {
  background-color: #000000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #c0c228 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
  color: #1e1e00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #1e1e00 !important;
  background-color: #c0c228 !important;
  border-color: #c0c228 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !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.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 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 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcff1e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #1e1e00 !important;
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #fcff1e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b5b700 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #fcff1e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #bcd948 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-t2YNqczNcv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YNqczNcv nav.navbar {
  position: absolute !important;
}
.cid-t2YNqczNcv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YNqczNcv .nav-link {
  position: relative;
}
.cid-t2YNqczNcv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YNqczNcv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-t2YNqczNcv .nav-item:focus,
.cid-t2YNqczNcv .nav-link:focus {
  outline: none;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YNqczNcv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YNqczNcv .navbar {
  min-height: 70px;
  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-t2YNqczNcv .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YNqczNcv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YNqczNcv .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YNqczNcv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar.collapsed {
  justify-content: center;
}
.cid-t2YNqczNcv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YNqczNcv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YNqczNcv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YNqczNcv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YNqczNcv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YNqczNcv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YNqczNcv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YNqczNcv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YNqczNcv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YNqczNcv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YNqczNcv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YNqczNcv .dropdown-item.active,
.cid-t2YNqczNcv .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YNqczNcv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YNqczNcv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YNqczNcv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YNqczNcv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YNqczNcv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YNqczNcv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2YNqczNcv .navbar {
    height: 70px;
  }
  .cid-t2YNqczNcv .navbar.opened {
    height: auto;
  }
  .cid-t2YNqczNcv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YNqczNcv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YNqczNcv .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: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YNqczNcv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YNqczNcv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YNqczNcv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .container {
    position: relative;
  }
  .cid-t2YNqczNcv .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YNqczNcv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YNqczNcv .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YNqczNcv .navbar-fixed-top {
  position: absolute !important;
}
.cid-t2YUH3TQAq {
  background-image: url("../../../assets/images/60435206-1500x1120.jpeg");
}
.cid-t2YUH3TQAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2YUH3TQAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2YUH3TQAq .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-t2YUH3TQAq .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-t2YUH3TQAq .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-t2YUH3TQAq .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-t2YUH3TQAq .mbr-section-btn {
  margin-top: 144px;
}
.cid-t2YUH3TQAq .mbr-section-title,
.cid-t2YUH3TQAq .mbr-section-btn {
  text-align: left;
}
.cid-t2ZkCfcHJd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-t2ZkCfcHJd .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .content-container {
  display: flex;
  flex-direction: column;
  padding: 6rem 0 0 0 !important;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .content-container {
    padding: 2.5rem 0 0 0 !important;
  }
}
.cid-t2ZkCfcHJd .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2ZkCfcHJd .text-container {
  max-width: 37.5rem;
  margin-right: auto;
  margin-bottom: 1.5rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-t2ZkCfcHJd .text-container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.cid-t2ZkCfcHJd .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZkCfcHJd .label-text {
  width: 100%;
  margin-bottom: 0.8rem;
  color: #1B1F0A;
}
.cid-t2ZkCfcHJd .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZkCfcHJd .mbr-section-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 8px;
}
.cid-t2ZkCfcHJd .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2ZkCfcHJd .btn-container {
  width: 100%;
}
.cid-t2ZkCfcHJd .mbr-section-btn {
  margin-top: 0.6rem;
}
@media (max-width: 575px) {
  .cid-t2ZkCfcHJd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-t2ZkCfcHJd .col-img {
  width: 100%;
  max-width: 100%;
}
.cid-t2ZkCfcHJd .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  max-height: 326px;
}
.cid-t2ZkCfcHJd .img-container img {
  max-width: 100%;
  max-height: 326px;
  width: auto;
  height: auto;
}
.cid-t2YW8wTxz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #070900;
}
.cid-t2YW8wTxz2 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YW8wTxz2 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YW8wTxz2 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2YW8wTxz2 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2YW8wTxz2 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #101303;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2rem !important;
  }
}
.cid-t2YW8wTxz2 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2YW8wTxz2 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .img-container {
    padding-right: 0;
  }
}
.cid-t2YW8wTxz2 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2YW8wTxz2 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2YW8wTxz2 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .text-container {
    padding-left: 0;
  }
}
.cid-t2YW8wTxz2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YW8wTxz2 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2YW8wTxz2 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2YW8wTxz2 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 4px;
}
.cid-t2YW8wTxz2 .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-uD2sRSo6de {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-uD2sRSo6de .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2sRSo6de .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2sRSo6de .row {
  justify-content: center;
}
.cid-uD2sRSo6de .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uD2sRSo6de .title-wrapper .mbr-section-title {
    margin-bottom: 35px;
  }
}
.cid-uD2sRSo6de .item {
  margin-bottom: 35px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uD2sRSo6de .item {
    margin-bottom: 16px;
  }
}
.cid-uD2sRSo6de .item:hover .item-wrapper .item-img img,
.cid-uD2sRSo6de .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-uD2sRSo6de .item .item-wrapper {
  justify-content: space-between;
  height: 100%;
  padding: 40px;
  border-radius: 2rem;
  background-color: #bbbbbb;
}
@media (max-width: 992px) {
  .cid-uD2sRSo6de .item .item-wrapper {
    padding: 40px 20px;
  }
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uD2sRSo6de .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  font-size: 60px;
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .item-title {
  margin-bottom: 20px;
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .list {
  padding: 0;
  margin: 0 0 15px 0;
  list-style-type: none;
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .list .item-wrap {
  margin-bottom: 15px;
}
.cid-uD2sRSo6de .item .item-wrapper .card-box .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uD2sRSo6de .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uD2sRSo6de .item-title {
  color: #000000;
}
.cid-uD2sRSo6de .list {
  color: #000000;
}
.cid-uD2sRSo6de .item-title,
.cid-uD2sRSo6de .icon-wrapper,
.cid-uD2sRSo6de .mbr-section-btn {
  text-align: center;
}
.cid-t2YVqbwMGe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-t2YVqbwMGe .row {
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YVqbwMGe .mbr-section-title {
  color: #000000;
}
.cid-t2YVqbwMGe .mbr-section-subtitle {
  color: #000000;
}
.cid-t2YVqbwMGe .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YVqbwMGe .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YVqbwMGe .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #070900;
}
@media (max-width: 991px) {
  .cid-t2YVqbwMGe .text-container {
    padding: 24px;
  }
}
.cid-t2YVqbwMGe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YVqbwMGe .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YVqbwMGe .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-t2YVqbwMGe .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-t2YVqbwMGe .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-t2ZsxmO4G1 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #bbbbbb;
}
.cid-t2ZsxmO4G1 .row {
  align-items: stretch;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .row {
    flex-wrap: wrap;
  }
}
.cid-t2ZsxmO4G1 .title-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
  padding: 5rem 0 !important;
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .title-container {
    width: 100%;
    padding: 5rem 0 0 0 !important;
  }
}
.cid-t2ZsxmO4G1 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .mbr-section-head {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cid-t2ZsxmO4G1 .mbr-section-head {
    margin-bottom: 3rem;
  }
}
.cid-t2ZsxmO4G1 .mbr-section-title {
  color: #1B1F0A;
}
.cid-t2ZsxmO4G1 .mbr-section-subtitle {
  color: #1B1F0A;
}
.cid-t2ZsxmO4G1 .opinion-container {
  display: flex;
  flex-direction: column;
  width: max-content;
  padding: 1.8rem;
  border: 1px solid #1b1f0a;
}
.cid-t2ZsxmO4G1 .opinion-container .iconfont-wrapper {
  margin-right: 4px;
}
.cid-t2ZsxmO4G1 .opinion-container .iconfont-wrapper .mbr-iconfont {
  font-size: 24px;
  color: #1b1f0a;
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .opinion-container {
    display: none;
  }
}
.cid-t2ZsxmO4G1 .opinion-stars {
  display: flex;
  margin-bottom: 0.5rem;
}
.cid-t2ZsxmO4G1 .opinion-text {
  color: #1b1f0a;
  opacity: 0.8;
}
.cid-t2ZsxmO4G1 .opinion-number {
  color: #1b1f0a;
}
.cid-t2ZsxmO4G1 .opinion-comment {
  color: #1b1f0a;
  opacity: 0.8;
}
.cid-t2ZsxmO4G1 .content-container {
  width: 50%;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 10px !important;
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .content-container {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 8px 0 0 !important;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  .cid-t2ZsxmO4G1 .content-container {
    margin-bottom: 3.5rem;
    padding: 0 !important;
  }
}
.cid-t2ZsxmO4G1 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2ZsxmO4G1 .text-container {
  padding: 24px;
  width: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2ZsxmO4G1 .text-container {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-t2ZsxmO4G1 .text-container {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .cid-t2ZsxmO4G1 .text-container {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-t2ZsxmO4G1 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZsxmO4G1 .testimonial-stars {
  display: flex;
  margin-left: auto;
}
.cid-t2ZsxmO4G1 .testimonial-stars .iconfont-wrapper {
  margin-right: 4px;
}
.cid-t2ZsxmO4G1 .testimonial-stars .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 16px;
  color: #20e7f9;
}
.cid-t2ZsxmO4G1 .testimonial-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}
.cid-t2ZsxmO4G1 .card-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2ZsxmO4G1 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-t2Zt6qJK78 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f3f4ef;
}
.cid-t2Zt6qJK78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2Zt6qJK78 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2Zt6qJK78 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-t2Zt6qJK78 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t2Zt6qJK78 .img-container {
  display: flex;
  padding: 4.75rem 4rem;
}
.cid-t2Zt6qJK78 .img-container img {
  max-width: 100%;
}
.cid-t2Zt6qJK78 .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-t2Zt6qJK78 .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-t2Zt6qJK78 .section-head {
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .toggle-panel {
  margin-top: 40px;
}
.cid-t2Zt6qJK78 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-t2Zt6qJK78 .card:hover {
  margin-left: 1rem;
}
.cid-t2Zt6qJK78 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-t2Zt6qJK78 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #000000;
  transition: .3s all;
}
.cid-t2Zt6qJK78 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-t2Zt6qJK78 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-t2Zt6qJK78 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-t2Zt6qJK78 .panel-title-edit {
  color: #000000;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-uD2x0tVSKt {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uD2x0tVSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2x0tVSKt .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uD2x0tVSKt .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uD2x0tVSKt .line {
  width: 100%;
  height: 1px;
  background: gray;
  opacity: 0.5;
  margin: 1rem 0;
}
.cid-uD2x0tVSKt .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uD2x0tVSKt .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uD2x0tVSKt .card-box {
  padding: 0 2rem;
}
.cid-uD2x0tVSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2x0tVSKt .card-title,
.cid-uD2x0tVSKt .iconfont-wrapper,
.cid-uD2x0tVSKt .card-text {
  color: #000000;
  text-align: center;
}
.cid-uD2x0tVSKt .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x0tVSKt .mbr-section-btn {
  text-align: center;
}
.cid-uD2x0tVSKt .card-text,
.cid-uD2x0tVSKt .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x0tVSKt .card-title,
.cid-uD2x0tVSKt .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-uD2x0tVSKt .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uD2uU4004t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2uU4004t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2uU4004t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2uU4004t .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2uU4004t .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .list {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2uU4004t .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2uU4004t .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2uU4004t .list .item-wrap:hover::before,
.cid-uD2uU4004t .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2uU4004t .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2uU4004t .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2uU4004t .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2uU4004t .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2uU4004t .mbr-section-title {
  color: #ffffff;
}
.cid-t2YNqczNcv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YNqczNcv nav.navbar {
  position: absolute !important;
}
.cid-t2YNqczNcv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YNqczNcv .nav-link {
  position: relative;
}
.cid-t2YNqczNcv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YNqczNcv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-t2YNqczNcv .nav-item:focus,
.cid-t2YNqczNcv .nav-link:focus {
  outline: none;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YNqczNcv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YNqczNcv .navbar {
  min-height: 70px;
  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-t2YNqczNcv .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YNqczNcv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YNqczNcv .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YNqczNcv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar.collapsed {
  justify-content: center;
}
.cid-t2YNqczNcv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YNqczNcv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YNqczNcv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YNqczNcv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YNqczNcv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YNqczNcv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YNqczNcv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YNqczNcv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YNqczNcv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YNqczNcv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YNqczNcv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YNqczNcv .dropdown-item.active,
.cid-t2YNqczNcv .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YNqczNcv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YNqczNcv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YNqczNcv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YNqczNcv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YNqczNcv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YNqczNcv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2YNqczNcv .navbar {
    height: 70px;
  }
  .cid-t2YNqczNcv .navbar.opened {
    height: auto;
  }
  .cid-t2YNqczNcv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YNqczNcv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YNqczNcv .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: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YNqczNcv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YNqczNcv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YNqczNcv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .container {
    position: relative;
  }
  .cid-t2YNqczNcv .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YNqczNcv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YNqczNcv .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YNqczNcv .navbar-fixed-top {
  position: absolute !important;
}
.cid-uD2w2E4QVe {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uD2w2E4QVe .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uD2w2E4QVe form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uD2w2E4QVe form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uD2w2E4QVe form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uD2w2E4QVe .row {
  margin: 0;
}
.cid-uD2w2E4QVe .card {
  padding: 3rem;
  border: 1px solid #000000 !important;
}
@media (max-width: 767px) {
  .cid-uD2w2E4QVe .card {
    padding: 2rem 0.5rem;
  }
}
.cid-uD2w2E4QVe h3 {
  margin-bottom: 3rem !important;
}
.cid-uD2w2E4QVe .content-head {
  max-width: 800px;
}
.cid-uD2w2E4QVe textarea {
  min-height: 200px;
}
.cid-uD2w2E4QVe input,
.cid-uD2w2E4QVe textarea {
  border: 1px solid #000000 !important;
  border-radius: 0 !important;
  padding: 0.5rem;
}
.cid-uD2w2E4QVe .mbr-section-title {
  color: #221b35;
}
.cid-uD2w2E4QVe LABEL {
  color: #221b35;
}
.cid-uwxRZzEWgy {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uwxRZzEWgy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwxRZzEWgy .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uwxRZzEWgy .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwxRZzEWgy .line {
  width: 100%;
  height: 1px;
  background: gray;
  opacity: 0.5;
  margin: 1rem 0;
}
.cid-uwxRZzEWgy .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uwxRZzEWgy .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uwxRZzEWgy .card-box {
  padding: 0 2rem;
}
.cid-uwxRZzEWgy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwxRZzEWgy .card-title,
.cid-uwxRZzEWgy .iconfont-wrapper,
.cid-uwxRZzEWgy .card-text {
  color: #000000;
  text-align: center;
}
.cid-uwxRZzEWgy .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uwxRZzEWgy .mbr-section-btn {
  text-align: center;
}
.cid-uwxRZzEWgy .card-text,
.cid-uwxRZzEWgy .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uwxRZzEWgy .card-title,
.cid-uwxRZzEWgy .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-uwxRZzEWgy .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uD2uU4004t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2uU4004t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2uU4004t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2uU4004t .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2uU4004t .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .list {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2uU4004t .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2uU4004t .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2uU4004t .list .item-wrap:hover::before,
.cid-uD2uU4004t .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2uU4004t .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2uU4004t .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2uU4004t .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2uU4004t .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2uU4004t .mbr-section-title {
  color: #ffffff;
}
.cid-t2YNqczNcv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YNqczNcv nav.navbar {
  position: absolute !important;
}
.cid-t2YNqczNcv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YNqczNcv .nav-link {
  position: relative;
}
.cid-t2YNqczNcv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YNqczNcv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-t2YNqczNcv .nav-item:focus,
.cid-t2YNqczNcv .nav-link:focus {
  outline: none;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YNqczNcv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YNqczNcv .navbar {
  min-height: 70px;
  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-t2YNqczNcv .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YNqczNcv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YNqczNcv .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YNqczNcv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar.collapsed {
  justify-content: center;
}
.cid-t2YNqczNcv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YNqczNcv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YNqczNcv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YNqczNcv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YNqczNcv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YNqczNcv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YNqczNcv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YNqczNcv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YNqczNcv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YNqczNcv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YNqczNcv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YNqczNcv .dropdown-item.active,
.cid-t2YNqczNcv .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YNqczNcv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YNqczNcv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YNqczNcv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YNqczNcv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YNqczNcv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YNqczNcv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2YNqczNcv .navbar {
    height: 70px;
  }
  .cid-t2YNqczNcv .navbar.opened {
    height: auto;
  }
  .cid-t2YNqczNcv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YNqczNcv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YNqczNcv .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: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YNqczNcv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YNqczNcv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YNqczNcv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .container {
    position: relative;
  }
  .cid-t2YNqczNcv .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YNqczNcv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YNqczNcv .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YNqczNcv .navbar-fixed-top {
  position: absolute !important;
}
.cid-uwxSNV0XcM {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uwxSNV0XcM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwxSNV0XcM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwxSNV0XcM .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uwxSNV0XcM .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uwxSNV0XcM .container {
    padding: 0 20px;
  }
}
.cid-uwxSNV0XcM .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwxSNV0XcM .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uwxSNV0XcM .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uwxSNV0XcM .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uwxSNV0XcM .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uwxSNV0XcM .text-wrapper .list {
  margin: 0;
  padding-left: 22px;
}
.cid-uwxSNV0XcM .text-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uwxSNV0XcM .mbr-section-title {
  color: #ffffff;
}
.cid-uwxSNV0XcM .mbr-text {
  color: #ffffff;
}
.cid-uwxSNV0XcM .list {
  color: #e4dfd4;
}
.cid-uD2uU4004t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2uU4004t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2uU4004t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2uU4004t .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2uU4004t .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .list {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2uU4004t .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2uU4004t .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2uU4004t .list .item-wrap:hover::before,
.cid-uD2uU4004t .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2uU4004t .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2uU4004t .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2uU4004t .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2uU4004t .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2uU4004t .mbr-section-title {
  color: #ffffff;
}
.cid-t2YNqczNcv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YNqczNcv nav.navbar {
  position: absolute !important;
}
.cid-t2YNqczNcv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YNqczNcv .nav-link {
  position: relative;
}
.cid-t2YNqczNcv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YNqczNcv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-t2YNqczNcv .nav-item:focus,
.cid-t2YNqczNcv .nav-link:focus {
  outline: none;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YNqczNcv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YNqczNcv .navbar {
  min-height: 70px;
  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-t2YNqczNcv .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YNqczNcv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YNqczNcv .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YNqczNcv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar.collapsed {
  justify-content: center;
}
.cid-t2YNqczNcv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YNqczNcv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YNqczNcv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YNqczNcv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YNqczNcv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YNqczNcv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YNqczNcv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YNqczNcv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YNqczNcv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YNqczNcv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YNqczNcv .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-t2YNqczNcv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YNqczNcv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YNqczNcv .dropdown-item.active,
.cid-t2YNqczNcv .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YNqczNcv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YNqczNcv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YNqczNcv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YNqczNcv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YNqczNcv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YNqczNcv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2YNqczNcv .navbar {
    height: 70px;
  }
  .cid-t2YNqczNcv .navbar.opened {
    height: auto;
  }
  .cid-t2YNqczNcv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YNqczNcv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YNqczNcv .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: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YNqczNcv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YNqczNcv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YNqczNcv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .container {
    position: relative;
  }
  .cid-t2YNqczNcv .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YNqczNcv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YNqczNcv .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YNqczNcv .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-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YNqczNcv .navbar-fixed-top {
  position: absolute !important;
}
.cid-uwxQdB1w57 {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-uwxQdB1w57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwxQdB1w57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwxQdB1w57 .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uwxQdB1w57 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uwxQdB1w57 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uwxQdB1w57 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uwxQdB1w57 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uwxQdB1w57 .image-wrapper img {
    height: 350px;
  }
}
.cid-uwxQdB1w57 .mbr-section-title {
  color: #191c25;
}
.cid-uwxQdB1w57 .mbr-text {
  color: #191c25;
}
.cid-uD2x3lYZmc {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uD2x3lYZmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2x3lYZmc .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uD2x3lYZmc .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uD2x3lYZmc .line {
  width: 100%;
  height: 1px;
  background: gray;
  opacity: 0.5;
  margin: 1rem 0;
}
.cid-uD2x3lYZmc .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uD2x3lYZmc .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uD2x3lYZmc .card-box {
  padding: 0 2rem;
}
.cid-uD2x3lYZmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2x3lYZmc .card-title,
.cid-uD2x3lYZmc .iconfont-wrapper,
.cid-uD2x3lYZmc .card-text {
  color: #000000;
  text-align: center;
}
.cid-uD2x3lYZmc .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x3lYZmc .mbr-section-btn {
  text-align: center;
}
.cid-uD2x3lYZmc .card-text,
.cid-uD2x3lYZmc .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x3lYZmc .card-title,
.cid-uD2x3lYZmc .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-uD2x3lYZmc .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uD2uU4004t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2uU4004t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2uU4004t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2uU4004t .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2uU4004t .container {
    padding: 0 20px;
  }
}
.cid-uD2uU4004t .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2uU4004t .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .list {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2uU4004t .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2uU4004t .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2uU4004t .list .item-wrap:hover::before,
.cid-uD2uU4004t .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2uU4004t .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2uU4004t .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2uU4004t .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2uU4004t .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2uU4004t .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2uU4004t .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2uU4004t .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2uU4004t .mbr-section-title {
  color: #ffffff;
}
.cid-uD2vr4O8oT {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uD2vr4O8oT nav.navbar {
  position: absolute !important;
}
.cid-uD2vr4O8oT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2vr4O8oT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uD2vr4O8oT .nav-link {
  position: relative;
}
.cid-uD2vr4O8oT .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-uD2vr4O8oT .container {
    flex-wrap: nowrap;
  }
}
.cid-uD2vr4O8oT .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uD2vr4O8oT .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-uD2vr4O8oT .nav-item:focus,
.cid-uD2vr4O8oT .nav-link:focus {
  outline: none;
}
.cid-uD2vr4O8oT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uD2vr4O8oT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD2vr4O8oT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uD2vr4O8oT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2vr4O8oT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uD2vr4O8oT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uD2vr4O8oT .navbar {
  min-height: 70px;
  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-uD2vr4O8oT .navbar.opened {
  transition: all 0.3s;
}
.cid-uD2vr4O8oT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uD2vr4O8oT .navbar .navbar-logo img {
  width: auto;
}
.cid-uD2vr4O8oT .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uD2vr4O8oT .navbar.collapsed {
  justify-content: center;
}
.cid-uD2vr4O8oT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uD2vr4O8oT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uD2vr4O8oT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uD2vr4O8oT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uD2vr4O8oT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uD2vr4O8oT .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-uD2vr4O8oT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uD2vr4O8oT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uD2vr4O8oT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uD2vr4O8oT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uD2vr4O8oT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uD2vr4O8oT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uD2vr4O8oT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uD2vr4O8oT .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-uD2vr4O8oT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uD2vr4O8oT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uD2vr4O8oT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uD2vr4O8oT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uD2vr4O8oT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uD2vr4O8oT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uD2vr4O8oT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uD2vr4O8oT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uD2vr4O8oT .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-uD2vr4O8oT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uD2vr4O8oT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uD2vr4O8oT .dropdown-item.active,
.cid-uD2vr4O8oT .dropdown-item:active {
  background-color: transparent;
}
.cid-uD2vr4O8oT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uD2vr4O8oT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uD2vr4O8oT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uD2vr4O8oT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-uD2vr4O8oT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uD2vr4O8oT .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uD2vr4O8oT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uD2vr4O8oT .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-uD2vr4O8oT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uD2vr4O8oT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-uD2vr4O8oT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD2vr4O8oT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2vr4O8oT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2vr4O8oT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD2vr4O8oT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2vr4O8oT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD2vr4O8oT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD2vr4O8oT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2vr4O8oT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uD2vr4O8oT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uD2vr4O8oT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uD2vr4O8oT .navbar {
    height: 70px;
  }
  .cid-uD2vr4O8oT .navbar.opened {
    height: auto;
  }
  .cid-uD2vr4O8oT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD2vr4O8oT .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uD2vr4O8oT .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-uD2vr4O8oT .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2vr4O8oT .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uD2vr4O8oT .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2vr4O8oT .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uD2vr4O8oT .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uD2vr4O8oT .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: .3s all;
  transform: rotate(-90deg);
}
.cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-uD2vr4O8oT .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-uD2vr4O8oT .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2vr4O8oT .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uD2vr4O8oT .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uD2vr4O8oT .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uD2vr4O8oT .container {
    position: relative;
  }
  .cid-uD2vr4O8oT .navbar-brand {
    margin-right: auto;
  }
  .cid-uD2vr4O8oT .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-uD2vr4O8oT .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-uD2vr4O8oT .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-uD2vr4O8oT .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uD2vr4O8oT .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-uD2vr4O8oT .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uD2vr4O8oT .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-uD2vr4O8oT .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-uD2vr4O8oT .navbar-fixed-top {
  position: absolute !important;
}
.cid-uD2vr5ialm {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-uD2vr5ialm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2vr5ialm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2vr5ialm .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uD2vr5ialm .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uD2vr5ialm .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uD2vr5ialm .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uD2vr5ialm .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uD2vr5ialm .image-wrapper img {
    height: 350px;
  }
}
.cid-uD2vr5ialm .mbr-section-title {
  color: #191c25;
}
.cid-uD2vr5ialm .mbr-text {
  color: #191c25;
}
.cid-uD2x5RvLQw {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uD2x5RvLQw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2x5RvLQw .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uD2x5RvLQw .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uD2x5RvLQw .line {
  width: 100%;
  height: 1px;
  background: gray;
  opacity: 0.5;
  margin: 1rem 0;
}
.cid-uD2x5RvLQw .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uD2x5RvLQw .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uD2x5RvLQw .card-box {
  padding: 0 2rem;
}
.cid-uD2x5RvLQw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2x5RvLQw .card-title,
.cid-uD2x5RvLQw .iconfont-wrapper,
.cid-uD2x5RvLQw .card-text {
  color: #000000;
  text-align: center;
}
.cid-uD2x5RvLQw .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x5RvLQw .mbr-section-btn {
  text-align: center;
}
.cid-uD2x5RvLQw .card-text,
.cid-uD2x5RvLQw .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x5RvLQw .card-title,
.cid-uD2x5RvLQw .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-uD2x5RvLQw .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uD2vr5Ik4L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2vr5Ik4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2vr5Ik4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2vr5Ik4L .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2vr5Ik4L .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2vr5Ik4L .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2vr5Ik4L .container {
    padding: 0 20px;
  }
}
.cid-uD2vr5Ik4L .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2vr5Ik4L .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2vr5Ik4L .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2vr5Ik4L .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2vr5Ik4L .list {
    margin-bottom: 30px;
  }
}
.cid-uD2vr5Ik4L .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2vr5Ik4L .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2vr5Ik4L .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2vr5Ik4L .list .item-wrap:hover::before,
.cid-uD2vr5Ik4L .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2vr5Ik4L .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2vr5Ik4L .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2vr5Ik4L .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2vr5Ik4L .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2vr5Ik4L .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2vr5Ik4L .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2vr5Ik4L .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2vr5Ik4L .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2vr5Ik4L .mbr-section-title {
  color: #ffffff;
}
.cid-uD2vrpEdvt {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uD2vrpEdvt nav.navbar {
  position: absolute !important;
}
.cid-uD2vrpEdvt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2vrpEdvt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uD2vrpEdvt .nav-link {
  position: relative;
}
.cid-uD2vrpEdvt .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-uD2vrpEdvt .container {
    flex-wrap: nowrap;
  }
}
.cid-uD2vrpEdvt .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uD2vrpEdvt .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-uD2vrpEdvt .nav-item:focus,
.cid-uD2vrpEdvt .nav-link:focus {
  outline: none;
}
.cid-uD2vrpEdvt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uD2vrpEdvt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD2vrpEdvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uD2vrpEdvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2vrpEdvt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uD2vrpEdvt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uD2vrpEdvt .navbar {
  min-height: 70px;
  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-uD2vrpEdvt .navbar.opened {
  transition: all 0.3s;
}
.cid-uD2vrpEdvt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uD2vrpEdvt .navbar .navbar-logo img {
  width: auto;
}
.cid-uD2vrpEdvt .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uD2vrpEdvt .navbar.collapsed {
  justify-content: center;
}
.cid-uD2vrpEdvt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uD2vrpEdvt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uD2vrpEdvt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uD2vrpEdvt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uD2vrpEdvt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uD2vrpEdvt .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-uD2vrpEdvt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uD2vrpEdvt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uD2vrpEdvt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uD2vrpEdvt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uD2vrpEdvt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uD2vrpEdvt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uD2vrpEdvt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uD2vrpEdvt .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-uD2vrpEdvt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uD2vrpEdvt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uD2vrpEdvt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uD2vrpEdvt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uD2vrpEdvt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uD2vrpEdvt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uD2vrpEdvt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uD2vrpEdvt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uD2vrpEdvt .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-uD2vrpEdvt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uD2vrpEdvt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uD2vrpEdvt .dropdown-item.active,
.cid-uD2vrpEdvt .dropdown-item:active {
  background-color: transparent;
}
.cid-uD2vrpEdvt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uD2vrpEdvt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uD2vrpEdvt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uD2vrpEdvt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-uD2vrpEdvt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uD2vrpEdvt .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uD2vrpEdvt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uD2vrpEdvt .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-uD2vrpEdvt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uD2vrpEdvt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-uD2vrpEdvt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD2vrpEdvt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2vrpEdvt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2vrpEdvt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD2vrpEdvt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2vrpEdvt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD2vrpEdvt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD2vrpEdvt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2vrpEdvt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uD2vrpEdvt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uD2vrpEdvt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uD2vrpEdvt .navbar {
    height: 70px;
  }
  .cid-uD2vrpEdvt .navbar.opened {
    height: auto;
  }
  .cid-uD2vrpEdvt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD2vrpEdvt .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uD2vrpEdvt .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-uD2vrpEdvt .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2vrpEdvt .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uD2vrpEdvt .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2vrpEdvt .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uD2vrpEdvt .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uD2vrpEdvt .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: .3s all;
  transform: rotate(-90deg);
}
.cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-uD2vrpEdvt .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-uD2vrpEdvt .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2vrpEdvt .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uD2vrpEdvt .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uD2vrpEdvt .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uD2vrpEdvt .container {
    position: relative;
  }
  .cid-uD2vrpEdvt .navbar-brand {
    margin-right: auto;
  }
  .cid-uD2vrpEdvt .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-uD2vrpEdvt .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-uD2vrpEdvt .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-uD2vrpEdvt .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uD2vrpEdvt .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-uD2vrpEdvt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uD2vrpEdvt .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-uD2vrpEdvt .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-uD2vrpEdvt .navbar-fixed-top {
  position: absolute !important;
}
.cid-uD2vrqaBqe {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #f3f4ef;
}
.cid-uD2vrqaBqe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2vrqaBqe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2vrqaBqe .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uD2vrqaBqe .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uD2vrqaBqe .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uD2vrqaBqe .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uD2vrqaBqe .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uD2vrqaBqe .image-wrapper img {
    height: 350px;
  }
}
.cid-uD2vrqaBqe .mbr-section-title {
  color: #191c25;
}
.cid-uD2vrqaBqe .mbr-text {
  color: #191c25;
}
.cid-uD2x7TJnJv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-uD2x7TJnJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2x7TJnJv .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uD2x7TJnJv .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uD2x7TJnJv .line {
  width: 100%;
  height: 1px;
  background: gray;
  opacity: 0.5;
  margin: 1rem 0;
}
.cid-uD2x7TJnJv .card-title {
  position: relative;
  padding-bottom: 1rem;
}
.cid-uD2x7TJnJv .card-title:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: -35px;
  top: 3px;
  background: currentColor;
  border-radius: 50%;
}
.cid-uD2x7TJnJv .card-box {
  padding: 0 2rem;
}
.cid-uD2x7TJnJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2x7TJnJv .card-title,
.cid-uD2x7TJnJv .iconfont-wrapper,
.cid-uD2x7TJnJv .card-text {
  color: #000000;
  text-align: center;
}
.cid-uD2x7TJnJv .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x7TJnJv .mbr-section-btn {
  text-align: center;
}
.cid-uD2x7TJnJv .card-text,
.cid-uD2x7TJnJv .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uD2x7TJnJv .card-title,
.cid-uD2x7TJnJv .iconfont-wrapper {
  text-align: left;
  color: #ffffff;
}
.cid-uD2x7TJnJv .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uD2vrqDS8q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2vrqDS8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2vrqDS8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2vrqDS8q .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2vrqDS8q .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2vrqDS8q .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2vrqDS8q .container {
    padding: 0 20px;
  }
}
.cid-uD2vrqDS8q .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2vrqDS8q .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2vrqDS8q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2vrqDS8q .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2vrqDS8q .list {
    margin-bottom: 30px;
  }
}
.cid-uD2vrqDS8q .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2vrqDS8q .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2vrqDS8q .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2vrqDS8q .list .item-wrap:hover::before,
.cid-uD2vrqDS8q .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2vrqDS8q .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2vrqDS8q .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2vrqDS8q .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2vrqDS8q .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2vrqDS8q .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2vrqDS8q .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2vrqDS8q .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2vrqDS8q .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2vrqDS8q .mbr-section-title {
  color: #ffffff;
}
.cid-uD2xTajLDq {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uD2xTajLDq nav.navbar {
  position: absolute !important;
}
.cid-uD2xTajLDq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2xTajLDq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uD2xTajLDq .nav-link {
  position: relative;
}
.cid-uD2xTajLDq .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-uD2xTajLDq .container {
    flex-wrap: nowrap;
  }
}
.cid-uD2xTajLDq .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uD2xTajLDq .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-uD2xTajLDq .nav-item:focus,
.cid-uD2xTajLDq .nav-link:focus {
  outline: none;
}
.cid-uD2xTajLDq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uD2xTajLDq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uD2xTajLDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uD2xTajLDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uD2xTajLDq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uD2xTajLDq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uD2xTajLDq .navbar {
  min-height: 70px;
  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-uD2xTajLDq .navbar.opened {
  transition: all 0.3s;
}
.cid-uD2xTajLDq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uD2xTajLDq .navbar .navbar-logo img {
  width: auto;
}
.cid-uD2xTajLDq .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uD2xTajLDq .navbar.collapsed {
  justify-content: center;
}
.cid-uD2xTajLDq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uD2xTajLDq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uD2xTajLDq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uD2xTajLDq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uD2xTajLDq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uD2xTajLDq .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-uD2xTajLDq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uD2xTajLDq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uD2xTajLDq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uD2xTajLDq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uD2xTajLDq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uD2xTajLDq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uD2xTajLDq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uD2xTajLDq .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-uD2xTajLDq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uD2xTajLDq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uD2xTajLDq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uD2xTajLDq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uD2xTajLDq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uD2xTajLDq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uD2xTajLDq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uD2xTajLDq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uD2xTajLDq .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-uD2xTajLDq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uD2xTajLDq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uD2xTajLDq .dropdown-item.active,
.cid-uD2xTajLDq .dropdown-item:active {
  background-color: transparent;
}
.cid-uD2xTajLDq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uD2xTajLDq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uD2xTajLDq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uD2xTajLDq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-uD2xTajLDq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uD2xTajLDq .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uD2xTajLDq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uD2xTajLDq .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-uD2xTajLDq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uD2xTajLDq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-uD2xTajLDq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uD2xTajLDq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2xTajLDq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uD2xTajLDq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uD2xTajLDq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2xTajLDq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uD2xTajLDq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uD2xTajLDq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uD2xTajLDq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uD2xTajLDq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uD2xTajLDq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uD2xTajLDq .navbar {
    height: 70px;
  }
  .cid-uD2xTajLDq .navbar.opened {
    height: auto;
  }
  .cid-uD2xTajLDq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uD2xTajLDq .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uD2xTajLDq .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-uD2xTajLDq .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2xTajLDq .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uD2xTajLDq .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2xTajLDq .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uD2xTajLDq .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uD2xTajLDq .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: .3s all;
  transform: rotate(-90deg);
}
.cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-uD2xTajLDq .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-uD2xTajLDq .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uD2xTajLDq .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uD2xTajLDq .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-uD2xTajLDq .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uD2xTajLDq .container {
    position: relative;
  }
  .cid-uD2xTajLDq .navbar-brand {
    margin-right: auto;
  }
  .cid-uD2xTajLDq .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-uD2xTajLDq .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-uD2xTajLDq .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-uD2xTajLDq .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uD2xTajLDq .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: .3s all;
    transform: rotate(0deg);
  }
  .cid-uD2xTajLDq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uD2xTajLDq .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-uD2xTajLDq .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-uD2xTajLDq .navbar-fixed-top {
  position: absolute !important;
}
.cid-uD2xVBd4F1 {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #080813;
}
.cid-uD2xVBd4F1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2xVBd4F1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2xVBd4F1 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uD2xVBd4F1 .content-wrapper .mbr-section-title span {
  color: #000000;
}
.cid-uD2xVBd4F1 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uD2xVBd4F1 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uD2xVBd4F1 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #000000, #000000, #000000);
}
@media (max-width: 992px) {
  .cid-uD2xVBd4F1 .border-wrap {
    margin-top: 32px;
  }
}
.cid-uD2xVBd4F1 .mbr-section-title {
  color: #ffffff;
}
.cid-uD2xVBd4F1 .mbr-text,
.cid-uD2xVBd4F1 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uD2xVBd4F1 .mbr-section-title,
.cid-uD2xVBd4F1 .mbr-section-btn {
  text-align: center;
}
.cid-uD2xTbhDb3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #0c0b08;
}
.cid-uD2xTbhDb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD2xTbhDb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD2xTbhDb3 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uD2xTbhDb3 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uD2xTbhDb3 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uD2xTbhDb3 .container {
    padding: 0 20px;
  }
}
.cid-uD2xTbhDb3 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uD2xTbhDb3 .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2xTbhDb3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uD2xTbhDb3 .list {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uD2xTbhDb3 .list {
    margin-bottom: 30px;
  }
}
.cid-uD2xTbhDb3 .list .item-wrap {
  position: relative;
  padding-bottom: 5px;
  margin: 9px 18px;
  margin-bottom: 0;
}
.cid-uD2xTbhDb3 .list .item-wrap:first-child {
  margin-left: 0;
}
.cid-uD2xTbhDb3 .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uD2xTbhDb3 .list .item-wrap:hover::before,
.cid-uD2xTbhDb3 .list .item-wrap:focus::before {
  width: 100%;
}
.cid-uD2xTbhDb3 .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uD2xTbhDb3 .social-wrapper {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uD2xTbhDb3 .social-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uD2xTbhDb3 .social-wrapper .soc-item {
  margin: 0 5px 5px 0;
}
.cid-uD2xTbhDb3 .social-wrapper .soc-item a {
  display: block;
}
.cid-uD2xTbhDb3 .social-wrapper .soc-item a:hover .mbr-iconfont {
  opacity: .5;
}
.cid-uD2xTbhDb3 .social-wrapper .soc-item a .mbr-iconfont {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: #ffffff;
  border: 1px solid #424242;
  border-radius: 100%;
  transition: all 0.3s ease-out;
}
.cid-uD2xTbhDb3 .copyright {
  padding: 30px 0;
  border-top: 1px solid #424242;
  margin: 0;
  color: #ffffff;
}
.cid-uD2xTbhDb3 .mbr-section-title {
  color: #ffffff;
}
