body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #25fde9 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #25fde9 !important;
}
.bg-warning {
  background-color: #1a191a !important;
}
.bg-danger {
  background-color: #000080 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
  color: #00231f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #00231f !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
  color: #00231f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #00231f !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
}
.btn-info,
.btn-info:active {
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
  color: #00231f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #00231f !important;
  background-color: #02c9b7 !important;
  border-color: #02c9b7 !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #1a191a !important;
  border-color: #1a191a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #000080 !important;
  border-color: #000080 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000029 !important;
  border-color: #000029 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000029 !important;
  border-color: #000029 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #25fde9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #02c9b7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #00231f !important;
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #25fde9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #02c9b7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #00231f !important;
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #25fde9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #02c9b7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #00231f !important;
  background-color: #25fde9 !important;
  border-color: #25fde9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1a191a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1a191a !important;
  border-color: #1a191a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000080;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000029 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #000080 !important;
  border-color: #000080 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #25fde9 !important;
}
.text-secondary {
  color: #25fde9 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #25fde9 !important;
}
.text-warning {
  color: #1a191a !important;
}
.text-danger {
  color: #000080 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #02baa9 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #02baa9 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #02baa9 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #00001a !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: #25fde9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #25fde9;
}
.alert-warning {
  background-color: #1a191a;
}
.alert-danger {
  background-color: #000080;
}
.mbr-gallery-filter li.active .btn {
  background-color: #25fde9;
  border-color: #25fde9;
  color: #013c36;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #25fde9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #effffd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effffd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #cdcbcd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #0000ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #25fde9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #25fde9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #25fde9;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #25fde9;
}
.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: #25fde9;
  border-bottom-color: #25fde9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #25fde9 !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: #25fde9 !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='%2325fde9' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWiodSr7cO .mbr-section-title,
.cid-uWiodSr7cO .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uWiodSr7cO .mbr-section-text {
  color: #767676;
}
.cid-uWiodSr7cO .mbr-text,
.cid-uWiodSr7cO .typed-text,
.cid-uWiodSr7cO .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uWiodSr7cO .btn {
  margin-left: 4px !important;
}
.cid-uWiodSr7cO .animated-element {
  color: #25fde9;
}
.cid-uWiodSr7cO .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #25fde9;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uWiodSr7cO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWiodSr7cO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-uWiodSr7cO .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uWiodSr7cO .mbr-section-subtitle,
.cid-uWiodSr7cO .typed-text {
  color: #ffffff;
  text-align: left;
}
.cid-uUNrlkB7GS {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uUNrlkB7GS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNrlkB7GS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNrlkB7GS .word {
  margin: center;
  color: #000080;
  font: 700 normal 2.66666667em "Montserrat", sans-serif;
  text-shadow: 1px 2px #9fdbf8, 2px 4px #9fdbf8, 3px 6px #9fdbf8, 4px 8px #9fdbf8, 5px 10px #9fdbf8, 6px 12px #9fdbf8, 7px 14px #9fdbf8, 8px 16px #9fdbf8, 9px 18px #9fdbf8, 10px 20px #9fdbf8;
  transform: rotate(-5deg);
}
.cid-uUNqxQTFuO {
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(to bottom right, #1a191a, #1a191a);
}
.cid-uUNqxQTFuO .text-color {
  color: #ffffff;
}
.cid-uUNqxQTFuO * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}
.cid-uUNqxQTFuO *:before,
.cid-uUNqxQTFuO *:after {
  box-sizing: border-box;
}
.cid-uUNqxQTFuO html,
.cid-uUNqxQTFuO body {
  min-height: 100%;
}
.cid-uUNqxQTFuO h1 {
  display: table;
  margin: 5% auto 0;
  text-transform: uppercase;
  font-family: 'Times Roman', sans-serif;
  font-size: 3em;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px white, 0 1px black;
}
.cid-uUNqxQTFuO .container {
  margin: 4% auto;
  width: 210px;
  height: 140px;
  position: relative;
  perspective: 1000px;
}
.cid-uUNqxQTFuO #carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotation 20s infinite linear;
}
.cid-uUNqxQTFuO #carousel:hover {
  animation-play-state: paused;
}
.cid-uUNqxQTFuO #carousel figure {
  display: block;
  position: absolute;
  width: 90%;
  height: 50%px;
  left: 10px;
  top: 10px;
  background: black;
  overflow: hidden;
  border: solid 3px black;
}
.cid-uUNqxQTFuO #carousel figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(2) {
  transform: rotateY(40deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(3) {
  transform: rotateY(80deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(4) {
  transform: rotateY(120deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(5) {
  transform: rotateY(160deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(6) {
  transform: rotateY(200deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(7) {
  transform: rotateY(240deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(8) {
  transform: rotateY(280deg) translateZ(288px);
}
.cid-uUNqxQTFuO #carousel figure:nth-child(9) {
  transform: rotateY(320deg) translateZ(288px);
}
.cid-uUNqxQTFuO img:hover {
  -webkit-filter: grayscale(0);
  transform: scale(1.2, 1.2);
}
@keyframes rotation {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.cid-uUNqxQTFuO H1 {
  color: #222222;
  text-align: center;
}
.cid-uUNVGGfQhj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-uUNVGGfQhj .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uUNVGGfQhj img,
.cid-uUNVGGfQhj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uUNVGGfQhj .item:focus,
.cid-uUNVGGfQhj span:focus {
  outline: none;
}
.cid-uUNVGGfQhj .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNVGGfQhj .item {
    margin-bottom: 1rem;
  }
}
.cid-uUNVGGfQhj .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uUNVGGfQhj .mbr-section-title {
  color: #ffffff;
}
.cid-uUNVGGfQhj .mbr-text,
.cid-uUNVGGfQhj .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uUNVGGfQhj .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNVGGfQhj .content-head {
  max-width: 800px;
}
.cid-uUNWlC6lc5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-uUNWlC6lc5 .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uUNWlC6lc5 img,
.cid-uUNWlC6lc5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uUNWlC6lc5 .item:focus,
.cid-uUNWlC6lc5 span:focus {
  outline: none;
}
.cid-uUNWlC6lc5 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNWlC6lc5 .item {
    margin-bottom: 1rem;
  }
}
.cid-uUNWlC6lc5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uUNWlC6lc5 .mbr-section-title {
  color: #232323;
}
.cid-uUNWlC6lc5 .mbr-text,
.cid-uUNWlC6lc5 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uUNWlC6lc5 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNWlC6lc5 .content-head {
  max-width: 800px;
}
.cid-uUNMmSYZu5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uUNMmSYZu5 img,
.cid-uUNMmSYZu5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uUNMmSYZu5 .item:focus,
.cid-uUNMmSYZu5 span:focus {
  outline: none;
}
.cid-uUNMmSYZu5 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNMmSYZu5 .item {
    margin-bottom: 1rem;
  }
}
.cid-uUNMmSYZu5 .item-content {
  margin-top: 2rem;
  padding: 0 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uUNMmSYZu5 .item-content {
    padding: 0 1.5rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uUNMmSYZu5 .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-uUNMmSYZu5 .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uUNMmSYZu5 .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uUNMmSYZu5 .mbr-section-title {
  color: #ffffff;
}
.cid-uUNMmSYZu5 .item-title {
  text-align: center;
}
.cid-uUNMmSYZu5 .item-subtitle {
  text-align: left;
}
.cid-uUNMmSYZu5 .mbr-text,
.cid-uUNMmSYZu5 .item .mbr-section-btn {
  text-align: center;
}
.cid-uUNMmSYZu5 .content-head {
  max-width: 800px;
}
.cid-uVD3vuS2eh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVD3vuS2eh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVD3vuS2eh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVD3vuS2eh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uVD3vuS2eh .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uVD3vuS2eh .embla__button--next,
.cid-uVD3vuS2eh .embla__button--prev {
  display: flex;
}
.cid-uVD3vuS2eh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uVD3vuS2eh .embla__button {
    display: none;
  }
}
.cid-uVD3vuS2eh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uVD3vuS2eh .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uVD3vuS2eh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVD3vuS2eh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uVD3vuS2eh .embla__button {
    top: auto;
  }
}
.cid-uVD3vuS2eh .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uVD3vuS2eh .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uVD3vuS2eh .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uVD3vuS2eh .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uVD3vuS2eh .embla {
  position: relative;
  width: 100%;
}
.cid-uVD3vuS2eh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uVD3vuS2eh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uVD3vuS2eh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uVD3vuS2eh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uVD3vuS2eh .user_text {
  text-align: center;
}
.cid-uVD3vuS2eh .user_name {
  color: #25fde9;
}
.cid-uUNz2M8cIW {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
.cid-uUNz2M8cIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNz2M8cIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNz2M8cIW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uUNz2M8cIW .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uUNz2M8cIW .embla__button--next,
.cid-uUNz2M8cIW .embla__button--prev {
  display: flex;
}
.cid-uUNz2M8cIW .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUNz2M8cIW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uUNz2M8cIW .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uUNz2M8cIW .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUNz2M8cIW .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uUNz2M8cIW .embla__button {
    top: auto;
  }
}
.cid-uUNz2M8cIW .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uUNz2M8cIW .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uUNz2M8cIW .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uUNz2M8cIW .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uUNz2M8cIW .embla {
  position: relative;
  width: 100%;
}
.cid-uUNz2M8cIW .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUNz2M8cIW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uUNz2M8cIW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uUNz2M8cIW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uUNz2M8cIW .user_name {
  color: #25fde9;
}
.cid-uUNz2M8cIW .user_text {
  color: #ffffff;
}
.cid-uUNz2M8cIW H3 {
  color: #ffffff;
}
.cid-uUNzM9KuEu {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #1a191a;
}
.cid-uUNzM9KuEu .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uUNzM9KuEu .panel-group {
  border: none;
}
.cid-uUNzM9KuEu .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uUNzM9KuEu .card-header {
    padding: 0rem;
  }
}
.cid-uUNzM9KuEu .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uUNzM9KuEu .img-col {
  padding: 0;
}
.cid-uUNzM9KuEu .img-item {
  height: 100%;
}
.cid-uUNzM9KuEu img {
  height: 100%;
  object-fit: cover;
}
.cid-uUNzM9KuEu .collapsed span {
  transform: rotate(0deg);
}
.cid-uUNzM9KuEu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uUNzM9KuEu p {
  margin-bottom: 0.3rem;
}
.cid-uUNzM9KuEu .panel-title-edit {
  color: #000080;
}
.cid-uUNzM9KuEu .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uUNzM9KuEu .card {
  background: #25fde9;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uUNzM9KuEu .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uUNzM9KuEu .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uUNzM9KuEu .panel-text {
  color: #000000;
}
.cid-uUNzM9KuEu .mbr-section-title {
  text-align: center;
  color: #1a191a;
}
.cid-uUNzM9KuEu .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUNzM9KuEu .panel-title-edit,
.cid-uUNzM9KuEu .mbr-iconfont {
  color: #1a191a;
  text-align: left;
}
.cid-uWioC03Mat {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-uWioC03Mat .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWioC03Mat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-uWioC03Mat .mbr-section-title {
  color: #ffffff;
}
.cid-uWioCx2OLc {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #1a191a;
}
.cid-uWioCx2OLc P {
  color: #767676;
}
.cid-uWioCx2OLc .sausage-dog-animation {
  height: 25rem;
  max-height: 80vh;
  max-width: 80vw;
}
.cid-uWioCx2OLc .ear,
.cid-uWioCx2OLc .closed-eye,
.cid-uWioCx2OLc .lean,
.cid-uWioCx2OLc .front-legs,
.cid-uWioCx2OLc .leg,
.cid-uWioCx2OLc .head,
.cid-uWioCx2OLc .tail,
.cid-uWioCx2OLc .tail-blur,
.cid-uWioCx2OLc .shadow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.cid-uWioCx2OLc .ball,
.cid-uWioCx2OLc .ball-decoration,
.cid-uWioCx2OLc .ball-sound {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.cid-uWioCx2OLc .ball {
  animation-name: squishBall;
  transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -632.28196);
}
@keyframes squishBall {
  0%,
  50%,
  72%,
  80%,
  92%,
  100% {
    d: path("m 930.80242,477.19065 c -13.05851,3.00801 -24.77881,15.97694 -26.81485,30.67673 -2.03603,14.69979 5.61282,31.12503 15.54844,43.47271 9.93563,12.34768 22.15522,20.61485 36.12779,24.29677 13.97258,3.68192 29.69644,2.77869 42.91157,-2.81649 13.21513,-5.59518 23.92113,-15.88139 30.65943,-28.14324 6.7383,-12.26185 9.5079,-26.49697 5.7369,-38.5172 -3.771,-12.02022 -14.0825,-21.82316 -25.5603,-24.46605 -11.47786,-2.6429 -24.12011,1.87601 -37.63861,0.6591 -13.5185,-1.21691 -27.91187,-8.17033 -40.97037,-5.16233 z");
    transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -632.28196);
  }
  65%,
  85% {
    d: path("m 932.4158,479.26229 c -14.67189,0.93637 -26.39219,13.9053 -28.42823,28.60509 -2.03603,14.69979 5.61282,31.12503 15.94228,38.97676 10.32947,7.85173 23.3365,7.12856 34.39281,10.90173 11.0563,3.77318 20.16082,12.04166 33.72906,12.76579 13.56828,0.72414 31.59878,-6.09489 42.72528,-18.16177 11.1265,-12.06689 15.3474,-29.37891 10.9229,-43.93943 -4.4245,-14.56052 -17.4943,-26.36654 -28.8312,-27.22343 -11.337,-0.85689 -20.93852,9.23684 -34.54977,8.73602 -13.61125,-0.50082 -31.23124,-11.59712 -45.90313,-10.66076 z");
    transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -642.28196);
  }
}
.cid-uWioCx2OLc .ball-decoration {
  animation-name: ballDecorationAnimation;
}
@keyframes ballDecorationAnimation {
  0%,
  50%,
  72%,
  80%,
  92%,
  100% {
    d: path("m 963.39546,597.71943 c 21.49913,-19.30313 4.80913,-64.80408 16.71919,-83.46282 16.19467,-25.37116 67.93925,-22.92156 89.43095,-47.68524");
  }
  65%,
  85% {
    d: path("m 978.40243,581.77452 c 21.49916,-19.30313 -15.82546,-51.20401 -3.9154,-69.86275 16.19467,-25.37116 63.71847,-19.16982 85.21017,-43.9335");
  }
}
.cid-uWioCx2OLc .ball-sound {
  animation-name: ballSound;
  visibility: hidden;
}
@keyframes ballSound {
  0%,
  60%,
  70%,
  80%,
  90%,
  100% {
    visibility: hidden;
    transform: translateY(0);
  }
  65%,
  67%,
  69%,
  85%,
  87%,
  89% {
    visibility: visible;
    transform: translateY(-3px);
  }
  66%,
  68%,
  86%,
  88% {
    visibility: visible;
    transform: translateY(3px);
  }
}
.cid-uWioCx2OLc .ear {
  animation-name: moveEar;
  transform-origin: top center;
  transform-box: fill-box;
}
@keyframes moveEar {
  0%,
  12%,
  21%,
  31%,
  35%,
  100% {
    transform: rotateZ(0);
  }
  9%,
  19%,
  29% {
    transform: rotateZ(-10deg);
  }
  13%,
  23%,
  33% {
    transform: rotateZ(10deg);
  }
}
.cid-uWioCx2OLc .closed-eye {
  animation-name: closeEye;
}
@keyframes closeEye {
  0%,
  50%,
  100% {
    visibility: hidden;
  }
  10% {
    visibility: visible;
  }
}
.cid-uWioCx2OLc .lean {
  animation-name: leanDown;
  transform-origin: center;
}
@keyframes leanDown {
  0%,
  50%,
  100% {
    transform: rotateZ(0) translateY(0);
  }
  60%,
  90% {
    transform: rotateZ(10deg) translateY(5%);
  }
}
.cid-uWioCx2OLc .front-legs {
  animation-name: flexLegs;
}
@keyframes flexLegs {
  0%,
  50%,
  100% {
    transform: translateX(0);
  }
  60%,
  90% {
    transform: translateX(12%);
  }
}
.cid-uWioCx2OLc .leg {
  animation-name: rotateLegs;
  transform-origin: bottom left;
  transform-box: fill-box;
  transform: translateX(16%) rotate(-10deg);
}
@keyframes rotateLegs {
  0%,
  50%,
  100% {
    transform: translateX(16%) rotate(-10deg);
  }
  60%,
  90% {
    transform: translateX(35%) rotate(-83deg);
  }
}
.cid-uWioCx2OLc .head {
  animation-name: lookDown;
  transform-origin: top right;
  transform-box: fill-box;
}
@keyframes lookDown {
  0%,
  55%,
  100% {
    transform: rotateZ(0) translate(0, 0);
  }
  60%,
  90% {
    transform: rotateZ(5deg) translate(2.5%, 6%);
  }
}
.cid-uWioCx2OLc .tail {
  animation-name: moveTail;
  transform-origin: bottom center;
}
@keyframes moveTail {
  0%,
  50%,
  90%,
  100% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 14.092,504.432 14.092,504.432 c 0,0 128.8135,26.71916 147.5365,64.19816 z");
  }
  64%,
  70%,
  76%,
  82% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 77.565044,422.94078 77.565044,422.94078 c 0,0 65.340456,108.21038 84.063456,145.68938 z");
  }
  60%,
  66%,
  72%,
  78%,
  84% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 14.092,504.432 14.092,504.432 c 0,0 128.8135,26.71916 147.5365,64.19816 z");
  }
  62%,
  68%,
  74%,
  80%,
  86% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 159.419,390.74 159.419,390.74 c 0,0 -16.5135,140.41116 2.2095,177.89016 z");
  }
}
.cid-uWioCx2OLc .tail-blur {
  animation-name: tailBlur;
  transform-origin: bottom center;
}
@keyframes tailBlur {
  0%,
  59%,
  90%,
  100% {
    opacity: 0;
  }
  64%,
  70%,
  76%,
  82% {
    transform: rotate(-2deg);
    opacity: 0;
  }
  60%,
  66%,
  72%,
  78%,
  84% {
    opacity: 0.3;
  }
  62%,
  68%,
  74%,
  80%,
  86% {
    transform: rotate(2deg);
    opacity: 0;
  }
}
.cid-uWioCx2OLc .shadow {
  animation-name: scaleShadow;
  transform-origin: center center;
}
@keyframes scaleShadow {
  0%,
  55%,
  100% {
    transform: scaleX(1) translateX(0);
  }
  60%,
  90% {
    transform: scaleX(1.1) translateX(4%);
  }
}
.cid-uWioCx2OLc .mbr-text,
.cid-uWioCx2OLc .mbr-section-btn {
  color: #1a191a;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUOkurR022 .mbr-section-title,
.cid-uUOkurR022 .mbr-section-subtitle {
  color: #879a9f;
}
.cid-uUOkurR022 .mbr-section-text {
  color: #767676;
}
.cid-uUOkurR022 .mbr-text,
.cid-uUOkurR022 .typed-text,
.cid-uUOkurR022 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-uUOkurR022 .btn {
  margin-left: 4px !important;
}
.cid-uUOkurR022 .animated-element {
  color: #25fde9;
}
.cid-uUOkurR022 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #25fde9;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uUOkurR022 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUOkurR022 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-uUOkurR022 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uUOkurR022 .mbr-section-subtitle,
.cid-uUOkurR022 .typed-text {
  color: #ffffff;
  text-align: left;
}
.cid-uVJqKPHizc {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uVJqKPHizc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVJqKPHizc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVJqKPHizc .word {
  margin: center;
  color: #1a191a;
  font: 700 normal 2.66666667em "Montserrat", sans-serif;
  text-shadow: 1px 2px #bbbbbb, 2px 4px #bbbbbb, 3px 6px #bbbbbb, 4px 8px #bbbbbb, 5px 10px #bbbbbb, 6px 12px #bbbbbb, 7px 14px #bbbbbb, 8px 16px #bbbbbb, 9px 18px #bbbbbb, 10px 20px #bbbbbb;
  transform: rotate(-5deg);
}
.cid-uUOlpAcsJw {
  padding-top: 30px;
  padding-bottom: 15px;
  background: linear-gradient(to bottom right, #ffffff, #ffffff);
}
.cid-uUOlpAcsJw .text-color {
  color: #ffffff;
}
.cid-uUOlpAcsJw * {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}
.cid-uUOlpAcsJw *:before,
.cid-uUOlpAcsJw *:after {
  box-sizing: border-box;
}
.cid-uUOlpAcsJw html,
.cid-uUOlpAcsJw body {
  min-height: 100%;
}
.cid-uUOlpAcsJw h1 {
  display: table;
  margin: 5% auto 0;
  text-transform: uppercase;
  font-family: 'Times Roman', sans-serif;
  font-size: 3em;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 1px white, 0 1px black;
}
.cid-uUOlpAcsJw .container {
  margin: 4% auto;
  width: 210px;
  height: 140px;
  position: relative;
  perspective: 1000px;
}
.cid-uUOlpAcsJw #carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotation 20s infinite linear;
}
.cid-uUOlpAcsJw #carousel:hover {
  animation-play-state: paused;
}
.cid-uUOlpAcsJw #carousel figure {
  display: block;
  position: absolute;
  width: 90%;
  height: 50%px;
  left: 10px;
  top: 10px;
  background: black;
  overflow: hidden;
  border: solid 3px black;
}
.cid-uUOlpAcsJw #carousel figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(2) {
  transform: rotateY(40deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(3) {
  transform: rotateY(80deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(4) {
  transform: rotateY(120deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(5) {
  transform: rotateY(160deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(6) {
  transform: rotateY(200deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(7) {
  transform: rotateY(240deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(8) {
  transform: rotateY(280deg) translateZ(288px);
}
.cid-uUOlpAcsJw #carousel figure:nth-child(9) {
  transform: rotateY(320deg) translateZ(288px);
}
.cid-uUOlpAcsJw img:hover {
  -webkit-filter: grayscale(0);
  transform: scale(1.2, 1.2);
}
@keyframes rotation {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.cid-uUOlpAcsJw H1 {
  color: #222222;
  text-align: center;
}
.cid-uUOleyeZ0m {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-uUOleyeZ0m .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uUOleyeZ0m img,
.cid-uUOleyeZ0m .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uUOleyeZ0m .item:focus,
.cid-uUOleyeZ0m span:focus {
  outline: none;
}
.cid-uUOleyeZ0m .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uUOleyeZ0m .item {
    margin-bottom: 1rem;
  }
}
.cid-uUOleyeZ0m .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uUOleyeZ0m .mbr-section-title {
  color: #ffffff;
}
.cid-uUOleyeZ0m .mbr-text,
.cid-uUOleyeZ0m .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uUOleyeZ0m .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUOleyeZ0m .content-head {
  max-width: 800px;
}
.cid-uZHas1bnwd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-uZHas1bnwd .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uZHas1bnwd img,
.cid-uZHas1bnwd .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uZHas1bnwd .item:focus,
.cid-uZHas1bnwd span:focus {
  outline: none;
}
.cid-uZHas1bnwd .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZHas1bnwd .item {
    margin-bottom: 1rem;
  }
}
.cid-uZHas1bnwd .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uZHas1bnwd .mbr-section-title {
  color: #ffffff;
}
.cid-uZHas1bnwd .mbr-text,
.cid-uZHas1bnwd .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uZHas1bnwd .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZHas1bnwd .content-head {
  max-width: 800px;
}
.cid-uYojaK0gZo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1a191a;
}
.cid-uYojaK0gZo .item-subtitle {
  line-height: 1.2;
  color: #232323;
  text-align: center;
}
.cid-uYojaK0gZo img,
.cid-uYojaK0gZo .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uYojaK0gZo .item:focus,
.cid-uYojaK0gZo span:focus {
  outline: none;
}
.cid-uYojaK0gZo .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uYojaK0gZo .item {
    margin-bottom: 1rem;
  }
}
.cid-uYojaK0gZo .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uYojaK0gZo .mbr-section-title {
  color: #232323;
}
.cid-uYojaK0gZo .mbr-text,
.cid-uYojaK0gZo .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uYojaK0gZo .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYojaK0gZo .content-head {
  max-width: 800px;
}
.cid-uWivcjwgLC {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uWivcjwgLC img,
.cid-uWivcjwgLC .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uWivcjwgLC .item:focus,
.cid-uWivcjwgLC span:focus {
  outline: none;
}
.cid-uWivcjwgLC .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uWivcjwgLC .item {
    margin-bottom: 1rem;
  }
}
.cid-uWivcjwgLC .item-content {
  margin-top: 2rem;
  padding: 0 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uWivcjwgLC .item-content {
    padding: 0 1.5rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWivcjwgLC .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-uWivcjwgLC .item-wrapper {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWivcjwgLC .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uWivcjwgLC .mbr-section-title {
  color: #ffffff;
}
.cid-uWivcjwgLC .item-title {
  text-align: center;
}
.cid-uWivcjwgLC .item-subtitle {
  text-align: left;
}
.cid-uWivcjwgLC .mbr-text,
.cid-uWivcjwgLC .item .mbr-section-btn {
  text-align: center;
}
.cid-uWivcjwgLC .content-head {
  max-width: 800px;
}
.cid-uUTzjSRqAn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uUTzjSRqAn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUTzjSRqAn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUTzjSRqAn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uUTzjSRqAn .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uUTzjSRqAn .embla__button--next,
.cid-uUTzjSRqAn .embla__button--prev {
  display: flex;
}
.cid-uUTzjSRqAn .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uUTzjSRqAn .embla__button {
    display: none;
  }
}
.cid-uUTzjSRqAn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uUTzjSRqAn .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uUTzjSRqAn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUTzjSRqAn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uUTzjSRqAn .embla__button {
    top: auto;
  }
}
.cid-uUTzjSRqAn .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uUTzjSRqAn .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uUTzjSRqAn .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uUTzjSRqAn .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uUTzjSRqAn .embla {
  position: relative;
  width: 100%;
}
.cid-uUTzjSRqAn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUTzjSRqAn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uUTzjSRqAn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uUTzjSRqAn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uUTzjSRqAn .user_text {
  text-align: center;
}
.cid-uUTzjSRqAn .user_name {
  color: #25fde9;
}
.cid-uUOlTesT3e {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
.cid-uUOlTesT3e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUOlTesT3e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUOlTesT3e .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uUOlTesT3e .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uUOlTesT3e .embla__button--next,
.cid-uUOlTesT3e .embla__button--prev {
  display: flex;
}
.cid-uUOlTesT3e .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUOlTesT3e .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uUOlTesT3e .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uUOlTesT3e .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUOlTesT3e .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uUOlTesT3e .embla__button {
    top: auto;
  }
}
.cid-uUOlTesT3e .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uUOlTesT3e .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uUOlTesT3e .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uUOlTesT3e .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uUOlTesT3e .embla {
  position: relative;
  width: 100%;
}
.cid-uUOlTesT3e .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUOlTesT3e .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uUOlTesT3e .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uUOlTesT3e .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uUOlTesT3e .user_name {
  color: #25fde9;
}
.cid-uUOlTesT3e .user_text {
  color: #ffffff;
}
.cid-uUOlTesT3e H3 {
  color: #ffffff;
}
.cid-uUOlL6VOOa {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #1a191a;
}
.cid-uUOlL6VOOa .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uUOlL6VOOa .panel-group {
  border: none;
}
.cid-uUOlL6VOOa .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uUOlL6VOOa .card-header {
    padding: 0rem;
  }
}
.cid-uUOlL6VOOa .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uUOlL6VOOa .img-col {
  padding: 0;
}
.cid-uUOlL6VOOa .img-item {
  height: 100%;
}
.cid-uUOlL6VOOa img {
  height: 100%;
  object-fit: cover;
}
.cid-uUOlL6VOOa .collapsed span {
  transform: rotate(0deg);
}
.cid-uUOlL6VOOa .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uUOlL6VOOa p {
  margin-bottom: 0.3rem;
}
.cid-uUOlL6VOOa .panel-title-edit {
  color: #000080;
}
.cid-uUOlL6VOOa .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uUOlL6VOOa .card {
  background: #25fde9;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uUOlL6VOOa .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uUOlL6VOOa .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uUOlL6VOOa .panel-text {
  color: #000000;
}
.cid-uUOlL6VOOa .mbr-section-title {
  text-align: center;
  color: #1a191a;
}
.cid-uUOlL6VOOa .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uUOlL6VOOa .panel-title-edit,
.cid-uUOlL6VOOa .mbr-iconfont {
  color: #000000;
  text-align: left;
}
.cid-uVJSGkmh1C {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-uVJSGkmh1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVJSGkmh1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-uVJSGkmh1C .mbr-section-title {
  color: #ffffff;
}
.cid-uUOlw5BvO4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #1a191a;
}
.cid-uUOlw5BvO4 P {
  color: #767676;
}
.cid-uUOlw5BvO4 .sausage-dog-animation {
  height: 25rem;
  max-height: 80vh;
  max-width: 80vw;
}
.cid-uUOlw5BvO4 .ear,
.cid-uUOlw5BvO4 .closed-eye,
.cid-uUOlw5BvO4 .lean,
.cid-uUOlw5BvO4 .front-legs,
.cid-uUOlw5BvO4 .leg,
.cid-uUOlw5BvO4 .head,
.cid-uUOlw5BvO4 .tail,
.cid-uUOlw5BvO4 .tail-blur,
.cid-uUOlw5BvO4 .shadow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.cid-uUOlw5BvO4 .ball,
.cid-uUOlw5BvO4 .ball-decoration,
.cid-uUOlw5BvO4 .ball-sound {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.cid-uUOlw5BvO4 .ball {
  animation-name: squishBall;
  transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -632.28196);
}
@keyframes squishBall {
  0%,
  50%,
  72%,
  80%,
  92%,
  100% {
    d: path("m 930.80242,477.19065 c -13.05851,3.00801 -24.77881,15.97694 -26.81485,30.67673 -2.03603,14.69979 5.61282,31.12503 15.54844,43.47271 9.93563,12.34768 22.15522,20.61485 36.12779,24.29677 13.97258,3.68192 29.69644,2.77869 42.91157,-2.81649 13.21513,-5.59518 23.92113,-15.88139 30.65943,-28.14324 6.7383,-12.26185 9.5079,-26.49697 5.7369,-38.5172 -3.771,-12.02022 -14.0825,-21.82316 -25.5603,-24.46605 -11.47786,-2.6429 -24.12011,1.87601 -37.63861,0.6591 -13.5185,-1.21691 -27.91187,-8.17033 -40.97037,-5.16233 z");
    transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -632.28196);
  }
  65%,
  85% {
    d: path("m 932.4158,479.26229 c -14.67189,0.93637 -26.39219,13.9053 -28.42823,28.60509 -2.03603,14.69979 5.61282,31.12503 15.94228,38.97676 10.32947,7.85173 23.3365,7.12856 34.39281,10.90173 11.0563,3.77318 20.16082,12.04166 33.72906,12.76579 13.56828,0.72414 31.59878,-6.09489 42.72528,-18.16177 11.1265,-12.06689 15.3474,-29.37891 10.9229,-43.93943 -4.4245,-14.56052 -17.4943,-26.36654 -28.8312,-27.22343 -11.337,-0.85689 -20.93852,9.23684 -34.54977,8.73602 -13.61125,-0.50082 -31.23124,-11.59712 -45.90313,-10.66076 z");
    transform: matrix(1.0951654, 0.52195853, -0.52866476, 1.2371611, 208.27138, -642.28196);
  }
}
.cid-uUOlw5BvO4 .ball-decoration {
  animation-name: ballDecorationAnimation;
}
@keyframes ballDecorationAnimation {
  0%,
  50%,
  72%,
  80%,
  92%,
  100% {
    d: path("m 963.39546,597.71943 c 21.49913,-19.30313 4.80913,-64.80408 16.71919,-83.46282 16.19467,-25.37116 67.93925,-22.92156 89.43095,-47.68524");
  }
  65%,
  85% {
    d: path("m 978.40243,581.77452 c 21.49916,-19.30313 -15.82546,-51.20401 -3.9154,-69.86275 16.19467,-25.37116 63.71847,-19.16982 85.21017,-43.9335");
  }
}
.cid-uUOlw5BvO4 .ball-sound {
  animation-name: ballSound;
  visibility: hidden;
}
@keyframes ballSound {
  0%,
  60%,
  70%,
  80%,
  90%,
  100% {
    visibility: hidden;
    transform: translateY(0);
  }
  65%,
  67%,
  69%,
  85%,
  87%,
  89% {
    visibility: visible;
    transform: translateY(-3px);
  }
  66%,
  68%,
  86%,
  88% {
    visibility: visible;
    transform: translateY(3px);
  }
}
.cid-uUOlw5BvO4 .ear {
  animation-name: moveEar;
  transform-origin: top center;
  transform-box: fill-box;
}
@keyframes moveEar {
  0%,
  12%,
  21%,
  31%,
  35%,
  100% {
    transform: rotateZ(0);
  }
  9%,
  19%,
  29% {
    transform: rotateZ(-10deg);
  }
  13%,
  23%,
  33% {
    transform: rotateZ(10deg);
  }
}
.cid-uUOlw5BvO4 .closed-eye {
  animation-name: closeEye;
}
@keyframes closeEye {
  0%,
  50%,
  100% {
    visibility: hidden;
  }
  10% {
    visibility: visible;
  }
}
.cid-uUOlw5BvO4 .lean {
  animation-name: leanDown;
  transform-origin: center;
}
@keyframes leanDown {
  0%,
  50%,
  100% {
    transform: rotateZ(0) translateY(0);
  }
  60%,
  90% {
    transform: rotateZ(10deg) translateY(5%);
  }
}
.cid-uUOlw5BvO4 .front-legs {
  animation-name: flexLegs;
}
@keyframes flexLegs {
  0%,
  50%,
  100% {
    transform: translateX(0);
  }
  60%,
  90% {
    transform: translateX(12%);
  }
}
.cid-uUOlw5BvO4 .leg {
  animation-name: rotateLegs;
  transform-origin: bottom left;
  transform-box: fill-box;
  transform: translateX(16%) rotate(-10deg);
}
@keyframes rotateLegs {
  0%,
  50%,
  100% {
    transform: translateX(16%) rotate(-10deg);
  }
  60%,
  90% {
    transform: translateX(35%) rotate(-83deg);
  }
}
.cid-uUOlw5BvO4 .head {
  animation-name: lookDown;
  transform-origin: top right;
  transform-box: fill-box;
}
@keyframes lookDown {
  0%,
  55%,
  100% {
    transform: rotateZ(0) translate(0, 0);
  }
  60%,
  90% {
    transform: rotateZ(5deg) translate(2.5%, 6%);
  }
}
.cid-uUOlw5BvO4 .tail {
  animation-name: moveTail;
  transform-origin: bottom center;
}
@keyframes moveTail {
  0%,
  50%,
  90%,
  100% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 14.092,504.432 14.092,504.432 c 0,0 128.8135,26.71916 147.5365,64.19816 z");
  }
  64%,
  70%,
  76%,
  82% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 77.565044,422.94078 77.565044,422.94078 c 0,0 65.340456,108.21038 84.063456,145.68938 z");
  }
  60%,
  66%,
  72%,
  78%,
  84% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 14.092,504.432 14.092,504.432 c 0,0 128.8135,26.71916 147.5365,64.19816 z");
  }
  62%,
  68%,
  74%,
  80%,
  86% {
    d: path("m 161.6285,568.63016 20.92664,-20.00034 C 151.50961,521.73829 159.419,390.74 159.419,390.74 c 0,0 -16.5135,140.41116 2.2095,177.89016 z");
  }
}
.cid-uUOlw5BvO4 .tail-blur {
  animation-name: tailBlur;
  transform-origin: bottom center;
}
@keyframes tailBlur {
  0%,
  59%,
  90%,
  100% {
    opacity: 0;
  }
  64%,
  70%,
  76%,
  82% {
    transform: rotate(-2deg);
    opacity: 0;
  }
  60%,
  66%,
  72%,
  78%,
  84% {
    opacity: 0.3;
  }
  62%,
  68%,
  74%,
  80%,
  86% {
    transform: rotate(2deg);
    opacity: 0;
  }
}
.cid-uUOlw5BvO4 .shadow {
  animation-name: scaleShadow;
  transform-origin: center center;
}
@keyframes scaleShadow {
  0%,
  55%,
  100% {
    transform: scaleX(1) translateX(0);
  }
  60%,
  90% {
    transform: scaleX(1.1) translateX(4%);
  }
}
.cid-uUOlw5BvO4 .mbr-text,
.cid-uUOlw5BvO4 .mbr-section-btn {
  color: #1a191a;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5NdUUQlC {
  display: flex;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
@media (min-width: 768px) {
  .cid-uV5NdUUQlC {
    align-items: center;
  }
  .cid-uV5NdUUQlC .row {
    justify-content: flex-start;
  }
  .cid-uV5NdUUQlC .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uV5NdUUQlC .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uV5NdUUQlC {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uV5NdUUQlC .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uV5NdUUQlC .content-wrap {
    width: 100%;
  }
}
.cid-uV5NdUUQlC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5NdUUQlC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5NdUUQlC .mbr-section-title,
.cid-uV5NdUUQlC .mbr-section-subtitle {
  text-align: left;
  color: #ffc091;
}
.cid-uV5NdUUQlC .mbr-text,
.cid-uV5NdUUQlC .mbr-section-btn {
  text-align: center;
}
.cid-uV5NdUUQlC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uV5NhFbfpd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uV5NhFbfpd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5NhFbfpd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uV5NhFbfpd .card-content-text {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .cid-uV5NhFbfpd .card-content-text {
    padding: 0 2.25rem 2.25rem 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uV5NhFbfpd .card-content-text {
    padding: 1rem 4rem 4rem 4rem;
  }
}
.cid-uV5NhFbfpd .card-wrapper {
  background: #ffffff;
}
.cid-uV5NhFbfpd .mbr-text,
.cid-uV5NhFbfpd .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uV5NhFbfpd .card-title,
.cid-uV5NhFbfpd .card-box {
  text-align: center;
  color: #000000;
}
.cid-uV5Nj0707s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uV5Nj0707s .item:focus,
.cid-uV5Nj0707s span:focus {
  outline: none;
}
.cid-uV5Nj0707s .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uV5Nj0707s .content-head {
  max-width: 800px;
}
.cid-uV5Nj0707s .item {
  color: #25fde9;
  min-height: 90px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cid-uV5Nj0707s .item {
    min-height: 45px;
  }
}
.cid-uV5Q0j7vxA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uV5Q0j7vxA .carousel {
    min-height: 800px;
  }
  .cid-uV5Q0j7vxA .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uV5Q0j7vxA .carousel {
    min-height: 520px;
  }
  .cid-uV5Q0j7vxA .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uV5Q0j7vxA .carousel {
    min-height: 440px;
  }
  .cid-uV5Q0j7vxA .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-uV5Q0j7vxA .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uV5Q0j7vxA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uV5Q0j7vxA .carousel,
.cid-uV5Q0j7vxA .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uV5Q0j7vxA .item-wrapper {
  width: 100%;
}
.cid-uV5Q0j7vxA .carousel-caption {
  bottom: 40px;
}
.cid-uV5Q0j7vxA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uV5Q0j7vxA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uV5Q0j7vxA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uV5Q0j7vxA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uV5Q0j7vxA .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uV5Q0j7vxA .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5Q0j7vxA .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uV5Q0j7vxA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uV5Q0j7vxA .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uV5Q0j7vxA .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uV5Q0j7vxA .carousel-indicators li.active,
.cid-uV5Q0j7vxA .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uV5Q0j7vxA .carousel-indicators li::after,
.cid-uV5Q0j7vxA .carousel-indicators li::before {
  content: none;
}
.cid-uV5Q0j7vxA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uV5Q0j7vxA .carousel-indicators {
    display: none !important;
  }
}
.cid-uV5P15F7x2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
.cid-uV5P15F7x2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5P15F7x2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5P15F7x2 .card-wrapper {
  background: #25fde9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uV5P15F7x2 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uV5P15F7x2 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uV5P15F7x2 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uV5P15F7x2 .mbr-text,
.cid-uV5P15F7x2 .mbr-section-btn {
  color: #1a191a;
  text-align: center;
}
.cid-uV5P15F7x2 .card-title,
.cid-uV5P15F7x2 .card-box {
  text-align: center;
}
.cid-uV5NlzoFq3 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
.cid-uV5NlzoFq3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5NlzoFq3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5NlzoFq3 .title .num {
  width: 100%;
  display: block;
}
.cid-uV5NlzoFq3 .title .card-title {
  z-index: 1;
}
.cid-uV5NlzoFq3 .num {
  color: #ffffff;
  text-align: center;
}
.cid-uV5NlzoFq3 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uV5NlzoFq3 * {
    text-align: center !important;
  }
  .cid-uV5NlzoFq3 .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uV5NlzoFq3 .content-head {
  max-width: 800px;
}
.cid-uV5NlzoFq3 .card-text {
  text-align: center;
}
.cid-uV5NlzoFq3 .card-title,
.cid-uV5NlzoFq3 .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-uV5Nn9TKbZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a191a;
}
.cid-uV5Nn9TKbZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5Nn9TKbZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5Nn9TKbZ .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uV5Nn9TKbZ .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uV5Nn9TKbZ .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uV5Nn9TKbZ .card-wrapper {
    padding: 4rem;
  }
}
.cid-uV5Nn9TKbZ .mbr-text,
.cid-uV5Nn9TKbZ .mbr-section-btn {
  color: #000000;
}
.cid-uV5Nn9TKbZ .card-title,
.cid-uV5Nn9TKbZ .card-box {
  text-align: center;
  color: #000000;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV60ybw70S {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uV60ybw70S .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uV5YD3LgPi {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uV5YD3LgPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5YD3LgPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uV5YD3LgPi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uV5YD3LgPi .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uV5YD3LgPi .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uV5YD3LgPi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uV5YD3LgPi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uV5YD3LgPi .mbr-text,
.cid-uV5YD3LgPi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v0CRLpnbkN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0CRLpnbkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CRLpnbkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CRLpnbkN .mbr-section-title {
  color: #ffffff;
}
.cid-v0CQZiU4fz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
@media (min-width: 992px) {
  .cid-v0CQZiU4fz .carousel {
    min-height: 600px;
  }
  .cid-v0CQZiU4fz .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v0CQZiU4fz .carousel {
    min-height: 390px;
  }
  .cid-v0CQZiU4fz .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v0CQZiU4fz .carousel {
    min-height: 330px;
  }
  .cid-v0CQZiU4fz .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v0CQZiU4fz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v0CQZiU4fz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v0CQZiU4fz .carousel,
.cid-v0CQZiU4fz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0CQZiU4fz .item-wrapper {
  width: 100%;
}
.cid-v0CQZiU4fz .carousel-caption {
  bottom: 40px;
}
.cid-v0CQZiU4fz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v0CQZiU4fz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v0CQZiU4fz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v0CQZiU4fz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v0CQZiU4fz .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0CQZiU4fz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0CQZiU4fz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0CQZiU4fz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0CQZiU4fz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v0CQZiU4fz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0CQZiU4fz .carousel-indicators li.active,
.cid-v0CQZiU4fz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0CQZiU4fz .carousel-indicators li::after,
.cid-v0CQZiU4fz .carousel-indicators li::before {
  content: none;
}
.cid-v0CQZiU4fz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0CQZiU4fz .carousel-indicators {
    display: none !important;
  }
}
.cid-v0CRVwl6br {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0CRVwl6br .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CRVwl6br .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CRVwl6br .mbr-section-title {
  color: #ffffff;
}
.cid-uV5ZOysexd {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
@media (min-width: 992px) {
  .cid-uV5ZOysexd .carousel {
    min-height: 800px;
  }
  .cid-uV5ZOysexd .carousel img {
    max-height: 800px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uV5ZOysexd .carousel {
    min-height: 520px;
  }
  .cid-uV5ZOysexd .carousel img {
    max-height: 520px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uV5ZOysexd .carousel {
    min-height: 440px;
  }
  .cid-uV5ZOysexd .carousel img {
    max-height: 440px;
    object-fit: contain;
  }
  .cid-uV5ZOysexd .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uV5ZOysexd .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uV5ZOysexd .carousel,
.cid-uV5ZOysexd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uV5ZOysexd .item-wrapper {
  width: 100%;
}
.cid-uV5ZOysexd .carousel-caption {
  bottom: 40px;
}
.cid-uV5ZOysexd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uV5ZOysexd .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uV5ZOysexd .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uV5ZOysexd .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uV5ZOysexd .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uV5ZOysexd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uV5ZOysexd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uV5ZOysexd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uV5ZOysexd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uV5ZOysexd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uV5ZOysexd .carousel-indicators li.active,
.cid-uV5ZOysexd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uV5ZOysexd .carousel-indicators li::after,
.cid-uV5ZOysexd .carousel-indicators li::before {
  content: none;
}
.cid-uV5ZOysexd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uV5ZOysexd .carousel-indicators {
    display: none !important;
  }
}
.cid-uV61EYE0aw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uV61EYE0aw .content-head {
  max-width: 800px;
}
.cid-uV61EYE0aw .mbr-text,
.cid-uV61EYE0aw .mbr-section-btn {
  color: #ffffff;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV646atty1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uV646atty1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV646atty1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV63CfPpPs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uV63CfPpPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV63CfPpPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uV5WTppw5i {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
@media (min-width: 768px) {
  .cid-uV5WTppw5i {
    align-items: flex-end;
  }
  .cid-uV5WTppw5i .row {
    justify-content: center;
  }
  .cid-uV5WTppw5i .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uV5WTppw5i .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uV5WTppw5i {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-uV5WTppw5i .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uV5WTppw5i .content-wrap {
    width: 100%;
  }
}
.cid-uV5WTppw5i .mbr-section-title,
.cid-uV5WTppw5i .mbr-section-subtitle {
  text-align: center;
}
.cid-uV5WTppw5i .mbr-text,
.cid-uV5WTppw5i .mbr-section-btn {
  text-align: center;
}
.cid-uV5WsrL5CJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a191a;
}
.cid-uV5WsrL5CJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5WsrL5CJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uV5WsrL5CJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uV5WsrL5CJ .row {
  flex-direction: row-reverse;
}
.cid-uV5WsrL5CJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uV5WsrL5CJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uV5WsrL5CJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uV5WsrL5CJ .mbr-section-title {
  color: #ffffff;
}
.cid-uV5WsrL5CJ .mbr-text,
.cid-uV5WsrL5CJ .mbr-section-btn {
  color: #000000;
}
.cid-uV5XeoPsht {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uV5XeoPsht .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5XeoPsht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5XeoPsht .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #25fde9;
  margin-bottom: 2rem;
}
.cid-uV5XeoPsht .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #25fde9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV5XeoPsht .card-title,
.cid-uV5XeoPsht .card-box {
  color: #ffffff;
}
.cid-uV5WrUaEAL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uV5WrUaEAL .item:focus,
.cid-uV5WrUaEAL span:focus {
  outline: none;
}
.cid-uV5WrUaEAL .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uV5WrUaEAL .content-head {
  max-width: 800px;
}
.cid-uV5WrUaEAL .item {
  color: #232323;
  min-height: 90px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .cid-uV5WrUaEAL .item {
    min-height: 45px;
  }
}
.cid-uV5Wv0yc9e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a191a;
}
.cid-uV5Wv0yc9e .item-subtitle {
  line-height: 1.2;
  color: #000000;
}
.cid-uV5Wv0yc9e img,
.cid-uV5Wv0yc9e .item-img {
  width: 100%;
}
.cid-uV5Wv0yc9e .item:focus,
.cid-uV5Wv0yc9e span:focus {
  outline: none;
}
.cid-uV5Wv0yc9e .item {
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .cid-uV5Wv0yc9e .item {
    margin-bottom: 1rem;
  }
}
.cid-uV5Wv0yc9e .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uV5Wv0yc9e .mbr-section-title {
  color: #ffffff;
}
.cid-uV5Wv0yc9e .mbr-text,
.cid-uV5Wv0yc9e .mbr-section-btn {
  color: #000000;
}
.cid-uV5Wv0yc9e .item-title {
  color: #000000;
  text-align: center;
}
.cid-uV5Wv0yc9e .content-head {
  max-width: 800px;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-EkuV6vX4GH .whatsapp-wrapper {
  position: fixed;
  bottom: 19px;
  right: 9px;
  z-index: 9999;
}
.cid-EkuV6vX4GH .whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: auto;
  height: auto;
  min-width: calc(50px);
  min-height: calc(50px);
}
.cid-EkuV6vX4GH .whatsapp-button:hover {
  transform: scale(1.1);
}
.cid-EkuV6vX4GH .whatsapp-button::after {
  content: attr(data-tooltip);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.cid-EkuV6vX4GH .whatsapp-button:hover::after {
  opacity: 1;
}
.cid-EkuV6vX4GH .tooltip-top::after {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-EkuV6vX4GH .tooltip-bottom::after {
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.cid-EkuV6vX4GH .tooltip-left::after {
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
}
.cid-EkuV6vX4GH .tooltip-right::after {
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .cid-EkuV6vX4GH .whatsapp-button::after {
    display: none;
  }
}
.cid-EkuV6vX4GH DIV {
  color: #ffffff;
}
.cid-EkuV6vX4GH p {
  color: #000;
}
.cid-EkuV6vX4GH .hidden {
  display: none;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUNSAiyLAU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNSAiyLAU .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uUNSAiyLAU form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uUNSAiyLAU form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uUNSAiyLAU form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uUNSAiyLAU .content-head {
  max-width: 800px;
}
.cid-uUNSAiyLAU .mbr-section-title {
  color: #ffffff;
}
.cid-uWizq38c6w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a191a;
}
.cid-uWizq38c6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWizq38c6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWizq38c6w .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #25fde9;
  margin-bottom: 2rem;
}
.cid-uWizq38c6w .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uWizq38c6w .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWizq38c6w .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uWizq38c6w .mbr-section-title {
  color: #ffffff;
}
.cid-uWizHTCRnq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1a191a;
}
.cid-uWizHTCRnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWizHTCRnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWizHTCRnq .google-map {
  height: 30rem;
  position: relative;
}
.cid-uWizHTCRnq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uWizHTCRnq .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uWizHTCRnq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uWizHTCRnq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUNRqN84Cj {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1a191a;
}
.cid-uUNRqN84Cj .container-fluid {
  padding: 0 3rem;
}
.cid-uUNRqN84Cj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRqN84Cj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUNRqN84Cj .table-wrapper {
  margin: 0 auto;
}
.cid-uUNRqN84Cj .head-item {
  min-width: 70px;
}
.cid-uUNRqN84Cj table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUNRqN84Cj table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #25fde9;
  color: white;
  vertical-align: middle;
}
.cid-uUNRqN84Cj table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uUNRqN84Cj .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uUNRqN84Cj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUNRqN84Cj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uUNRqN84Cj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uUNRqN84Cj .dataTables_wrapper {
  display: block;
}
.cid-uUNRqN84Cj .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uUNRqN84Cj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUNRqN84Cj .head-item:after,
.cid-uUNRqN84Cj .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uUNRqN84Cj .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRqN84Cj .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uUNRqN84Cj .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRqN84Cj .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uUNRqN84Cj .table-wrapper {
    width: 100% !important;
  }
  .cid-uUNRqN84Cj .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUNRqN84Cj table th,
  .cid-uUNRqN84Cj table td {
    padding: 0.75rem;
  }
}
.cid-uUNRqN84Cj .body-item {
  color: #ffffff;
}
.cid-uUNRqN84Cj .mbr-section-title,
.cid-uUNRqN84Cj .underline {
  color: #ffffff;
}
.cid-uUNRqN84Cj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNRqN84Cj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNRrjlJeC {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #25fde9;
}
.cid-uUNRrjlJeC .container-fluid {
  padding: 0 3rem;
}
.cid-uUNRrjlJeC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRrjlJeC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUNRrjlJeC .table-wrapper {
  margin: 0 auto;
}
.cid-uUNRrjlJeC .head-item {
  min-width: 70px;
}
.cid-uUNRrjlJeC table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUNRrjlJeC table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #1a191a;
  color: white;
  vertical-align: middle;
}
.cid-uUNRrjlJeC table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uUNRrjlJeC .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uUNRrjlJeC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUNRrjlJeC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uUNRrjlJeC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uUNRrjlJeC .dataTables_wrapper {
  display: block;
}
.cid-uUNRrjlJeC .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uUNRrjlJeC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUNRrjlJeC .head-item:after,
.cid-uUNRrjlJeC .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uUNRrjlJeC .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRrjlJeC .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uUNRrjlJeC .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRrjlJeC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uUNRrjlJeC .table-wrapper {
    width: 100% !important;
  }
  .cid-uUNRrjlJeC .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUNRrjlJeC table th,
  .cid-uUNRrjlJeC table td {
    padding: 0.75rem;
  }
}
.cid-uUNRrjlJeC .body-item {
  color: #1a191a;
}
.cid-uUNRrjlJeC .mbr-section-title,
.cid-uUNRrjlJeC .underline {
  color: #1a191a;
}
.cid-uUNRrjlJeC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNRrjlJeC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNRLN2By1 {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1a191a;
}
.cid-uUNRLN2By1 .container-fluid {
  padding: 0 3rem;
}
.cid-uUNRLN2By1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRLN2By1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUNRLN2By1 .table-wrapper {
  margin: 0 auto;
}
.cid-uUNRLN2By1 .head-item {
  min-width: 70px;
}
.cid-uUNRLN2By1 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUNRLN2By1 table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #cfac12;
  color: white;
  vertical-align: middle;
}
.cid-uUNRLN2By1 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uUNRLN2By1 .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uUNRLN2By1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUNRLN2By1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uUNRLN2By1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uUNRLN2By1 .dataTables_wrapper {
  display: block;
}
.cid-uUNRLN2By1 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uUNRLN2By1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUNRLN2By1 .head-item:after,
.cid-uUNRLN2By1 .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uUNRLN2By1 .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRLN2By1 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uUNRLN2By1 .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRLN2By1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uUNRLN2By1 .table-wrapper {
    width: 100% !important;
  }
  .cid-uUNRLN2By1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUNRLN2By1 table th,
  .cid-uUNRLN2By1 table td {
    padding: 0.75rem;
  }
}
.cid-uUNRLN2By1 .body-item {
  color: #ffffff;
}
.cid-uUNRLN2By1 .mbr-section-title,
.cid-uUNRLN2By1 .underline {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRLN2By1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNRLN2By1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNRMz8HMY {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-uUNRMz8HMY .container-fluid {
  padding: 0 3rem;
}
.cid-uUNRMz8HMY .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRMz8HMY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUNRMz8HMY .table-wrapper {
  margin: 0 auto;
}
.cid-uUNRMz8HMY .head-item {
  min-width: 70px;
}
.cid-uUNRMz8HMY table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUNRMz8HMY table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #1a191a;
  color: white;
  vertical-align: middle;
}
.cid-uUNRMz8HMY table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uUNRMz8HMY .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uUNRMz8HMY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUNRMz8HMY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uUNRMz8HMY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uUNRMz8HMY .dataTables_wrapper {
  display: block;
}
.cid-uUNRMz8HMY .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uUNRMz8HMY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUNRMz8HMY .head-item:after,
.cid-uUNRMz8HMY .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uUNRMz8HMY .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRMz8HMY .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uUNRMz8HMY .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRMz8HMY .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uUNRMz8HMY .table-wrapper {
    width: 100% !important;
  }
  .cid-uUNRMz8HMY .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUNRMz8HMY table th,
  .cid-uUNRMz8HMY table td {
    padding: 0.75rem;
  }
}
.cid-uUNRMz8HMY .body-item {
  color: #1a191a;
}
.cid-uUNRMz8HMY .mbr-section-title,
.cid-uUNRMz8HMY .underline {
  color: #1a191a;
}
.cid-uUNRMz8HMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNRMz8HMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNRN1tKCA {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #1a191a;
}
.cid-uUNRN1tKCA .container-fluid {
  padding: 0 3rem;
}
.cid-uUNRN1tKCA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uUNRN1tKCA .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uUNRN1tKCA .table-wrapper {
  margin: 0 auto;
}
.cid-uUNRN1tKCA .head-item {
  min-width: 70px;
}
.cid-uUNRN1tKCA table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uUNRN1tKCA table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #25fde9;
  color: white;
  vertical-align: middle;
}
.cid-uUNRN1tKCA table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uUNRN1tKCA .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uUNRN1tKCA .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uUNRN1tKCA .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uUNRN1tKCA .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uUNRN1tKCA .dataTables_wrapper {
  display: block;
}
.cid-uUNRN1tKCA .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uUNRN1tKCA .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uUNRN1tKCA .head-item:after,
.cid-uUNRN1tKCA .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uUNRN1tKCA .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRN1tKCA .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uUNRN1tKCA .dataTables_filter {
    text-align: center;
  }
  .cid-uUNRN1tKCA .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uUNRN1tKCA .table-wrapper {
    width: 100% !important;
  }
  .cid-uUNRN1tKCA .container-fluid {
    padding: 0 1rem;
  }
  .cid-uUNRN1tKCA table th,
  .cid-uUNRN1tKCA table td {
    padding: 0.75rem;
  }
}
.cid-uUNRN1tKCA .body-item {
  color: #ffffff;
}
.cid-uUNRN1tKCA .mbr-section-title,
.cid-uUNRN1tKCA .underline {
  color: #ffffff;
}
.cid-uUNRN1tKCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNRN1tKCA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUOckt1xco {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uUOckt1xco .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uUNIQgNJuq {
  padding-top: 105px;
  padding-bottom: 45px;
  background: transparent;
}
.cid-uUNIQgNJuq .mbr-section-subtitle {
  color: #767676;
}
.cid-uUNIQgNJuq .container11 {
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 607px;
  max-width: 556px;
  overflow: hidden;
  width: 98vw;
}
.cid-uUNIQgNJuq .container11 figure {
  background-image: url("../../../assets/images/96e27ba74e07ab63439eccd333c46f314126-1.jpeg");
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}
.cid-uUNIQgNJuq #compare11 {
  background-image: url("../../../assets/images/96e27ba74e07ab63439eccd333c46f314126.jpeg");
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}
.cid-uUNIQgNJuq input#slider11 {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.cid-uUNIQgNJuq input#slider11::-moz-range-track {
  background: transparent;
}
.cid-uUNIQgNJuq input#slider11::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}
.cid-uUNIQgNJuq input#slider11::-ms-fill-lower {
  background-color: transparent;
}
.cid-uUNIQgNJuq input#slider11::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uUNIQgNJuq input#slider11::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uUNIQgNJuq input#slider11::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uUNIQgNJuq input#slider::-ms-tooltip {
  display: none;
}
.cid-uUNIQgNJuq #compare11::before {
  background: url("https://www.unsitepourtous.be/mobi/comparision.png") no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}
@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.cid-uUNIQgNJuq H2 {
  color: #1a191a;
}
.cid-uUNIFJckPO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uUNIFJckPO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNIFJckPO .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNIFJckPO .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNIFJckPO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNIFJckPO .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: #ffffff;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #25fde9;
  height: 80px;
  border-radius: 50%;
}
.cid-uUNIFJckPO .card-title,
.cid-uUNIFJckPO .iconfont-wrapper,
.cid-uUNIFJckPO .card-text {
  color: #000000;
  text-align: center;
}
.cid-uUNIFJckPO .content-head {
  max-width: 800px;
}
.cid-uUNIFJckPO .mbr-section-title {
  color: #000000;
}
.cid-uUNIFJckPO .mbr-section-btn {
  text-align: center;
}
.cid-uUNIFJckPO .card-title,
.cid-uUNIFJckPO .iconfont-wrapper {
  color: #ffffff;
}
.cid-uUNJ7y7h4P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNJ7y7h4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNJ7y7h4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uUNJ7y7h4P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNJ7y7h4P .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUNJ7y7h4P .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUNJ7y7h4P .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUNJ7y7h4P .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNJ7y7h4P .mbr-text,
.cid-uUNJ7y7h4P .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uUNIj4zOEb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNIj4zOEb .content-head {
  max-width: 800px;
}
.cid-uUNIj4zOEb .mbr-text,
.cid-uUNIj4zOEb .mbr-section-btn {
  color: #ffffff;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUNNVAV6Fo {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uUNNVAV6Fo .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uUNH3mLZV7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-uUNH3mLZV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNH3mLZV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uUNH3mLZV7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNH3mLZV7 .row {
  flex-direction: row-reverse;
}
.cid-uUNH3mLZV7 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUNH3mLZV7 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUNH3mLZV7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUNH3mLZV7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNH3mLZV7 .mbr-text,
.cid-uUNH3mLZV7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uUNHiHZQEK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uUNHiHZQEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNHiHZQEK .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNHiHZQEK .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNHiHZQEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNHiHZQEK .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: #ffffff;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #25fde9;
  height: 80px;
  border-radius: 50%;
}
.cid-uUNHiHZQEK .card-title,
.cid-uUNHiHZQEK .iconfont-wrapper,
.cid-uUNHiHZQEK .card-text {
  color: #000000;
  text-align: center;
}
.cid-uUNHiHZQEK .content-head {
  max-width: 800px;
}
.cid-uUNHiHZQEK .mbr-section-title {
  color: #000000;
}
.cid-uUNHiHZQEK .mbr-section-btn {
  text-align: center;
}
.cid-uUNHiHZQEK .card-title,
.cid-uUNHiHZQEK .iconfont-wrapper {
  color: #ffffff;
}
.cid-uUNHu8GQKK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1a191a;
}
.cid-uUNHu8GQKK .content-text {
  max-width: 800px;
}
.cid-uUNHG0a3vH {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #1a191a;
}
.cid-uUNHG0a3vH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNHG0a3vH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uUNHG0a3vH .container-fluid {
    padding: 0;
  }
}
.cid-uUNHG0a3vH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uUNHG0a3vH .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uUNHG0a3vH .embla__button--next,
.cid-uUNHG0a3vH .embla__button--prev {
  display: flex;
}
.cid-uUNHG0a3vH .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uUNHG0a3vH .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uUNHG0a3vH .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUNHG0a3vH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uUNHG0a3vH .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUNHG0a3vH .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uUNHG0a3vH .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uUNHG0a3vH .embla {
  position: relative;
  width: 100%;
}
.cid-uUNHG0a3vH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUNHG0a3vH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uUNHG0a3vH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uUNHG0a3vH .embla__slide a {
  cursor: grab;
}
.cid-uUNHG0a3vH .embla__slide a:active {
  cursor: grabbing;
}
.cid-uUNHG0a3vH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uUNHG0a3vH .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uUNHG0a3vH .mbr-section-title {
  color: #ffffff;
}
.cid-uUNHG0a3vH .mbr-section-subtitle {
  color: #232323;
}
.cid-uUNHG0a3vH .mbr-box {
  color: #ffffff;
}
.cid-uUNHG0a3vH .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uUNHG0a3vH img,
.cid-uUNHG0a3vH .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uUNHG0a3vH .item-wrapper {
  position: relative;
}
.cid-uUNHG0a3vH .content-head {
  max-width: 800px;
}
.cid-uUNGHKmdKE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #1a191a;
}
.cid-uUNGHKmdKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNGHKmdKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uUNGHKmdKE .container-fluid {
    padding: 0;
  }
}
.cid-uUNGHKmdKE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uUNGHKmdKE .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uUNGHKmdKE .embla__button--next,
.cid-uUNGHKmdKE .embla__button--prev {
  display: flex;
}
.cid-uUNGHKmdKE .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uUNGHKmdKE .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uUNGHKmdKE .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uUNGHKmdKE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uUNGHKmdKE .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uUNGHKmdKE .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uUNGHKmdKE .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uUNGHKmdKE .embla {
  position: relative;
  width: 100%;
}
.cid-uUNGHKmdKE .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uUNGHKmdKE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uUNGHKmdKE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uUNGHKmdKE .embla__slide a {
  cursor: grab;
}
.cid-uUNGHKmdKE .embla__slide a:active {
  cursor: grabbing;
}
.cid-uUNGHKmdKE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uUNGHKmdKE .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uUNGHKmdKE .mbr-section-title {
  color: #ffffff;
}
.cid-uUNGHKmdKE .mbr-section-subtitle {
  color: #232323;
}
.cid-uUNGHKmdKE .mbr-box {
  color: #ffffff;
}
.cid-uUNGHKmdKE .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uUNGHKmdKE img,
.cid-uUNGHKmdKE .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uUNGHKmdKE .item-wrapper {
  position: relative;
}
.cid-uUNGHKmdKE .content-head {
  max-width: 800px;
}
.cid-uUNHU6J5sQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNHU6J5sQ .content-head {
  max-width: 800px;
}
.cid-uUNHU6J5sQ .mbr-text,
.cid-uUNHU6J5sQ .mbr-section-btn {
  color: #fafafa;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUOcn7u6nA {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uUOcn7u6nA .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uUNFH0Dyq1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uUNFH0Dyq1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNFH0Dyq1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uUNFH0Dyq1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNFH0Dyq1 .row {
  flex-direction: row-reverse;
}
.cid-uUNFH0Dyq1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUNFH0Dyq1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUNFH0Dyq1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUNFH0Dyq1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNFH0Dyq1 .mbr-text,
.cid-uUNFH0Dyq1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uUNFWu9Aff {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uUNFWu9Aff .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNFWu9Aff .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uUNFWu9Aff .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNFWu9Aff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUNFWu9Aff .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: #ffffff;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #25fde9;
  height: 80px;
  border-radius: 50%;
}
.cid-uUNFWu9Aff .card-title,
.cid-uUNFWu9Aff .iconfont-wrapper,
.cid-uUNFWu9Aff .card-text {
  color: #000000;
  text-align: center;
}
.cid-uUNFWu9Aff .content-head {
  max-width: 800px;
}
.cid-uUNFWu9Aff .mbr-section-title {
  color: #000000;
}
.cid-uUNFWu9Aff .mbr-section-btn {
  text-align: center;
}
.cid-uUNFWu9Aff .card-title,
.cid-uUNFWu9Aff .iconfont-wrapper {
  color: #ffffff;
}
.cid-uUNGeDigyi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNGeDigyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUNGeDigyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uUNGeDigyi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUNGeDigyi .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uUNGeDigyi .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uUNGeDigyi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uUNGeDigyi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uUNGeDigyi .mbr-text,
.cid-uUNGeDigyi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uUNFlEu9nw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uUNFlEu9nw .content-head {
  max-width: 800px;
}
.cid-uUNFlEu9nw .mbr-text,
.cid-uUNFlEu9nw .mbr-section-btn {
  color: #ffffff;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uY0afKgWM7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uY0afKgWM7 .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uY0agoyq4R {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uY0agoyq4R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0agoyq4R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uY0agoyq4R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uY0agoyq4R .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uY0agoyq4R .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uY0agoyq4R .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uY0agoyq4R .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uY0agoyq4R .mbr-text,
.cid-uY0agoyq4R .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v0W3ZTDLCF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0W3ZTDLCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W3ZTDLCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W3ZTDLCF .mbr-section-title {
  color: #ffffff;
}
.cid-v0W5k6Eajz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W5k6Eajz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W5k6Eajz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W5k6Eajz .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W5k6Eajz .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W5k6Eajz .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W5k6Eajz .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W5k6Eajz .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W5k6Eajz .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W5k6Eajz .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W5k6Eajz .social-row {
  text-align: center;
}
.cid-v0W5k6Eajz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W5k6Eajz .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W5k6Eajz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W5k6Eajz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W5k6Eajz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W5k6Eajz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W5k6Eajz .embla__button--next,
.cid-v0W5k6Eajz .embla__button--prev {
  display: flex;
}
.cid-v0W5k6Eajz .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W5k6Eajz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W5k6Eajz .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W5k6Eajz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W5k6Eajz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W5k6Eajz .embla__button {
    top: auto;
  }
}
.cid-v0W5k6Eajz .embla {
  position: relative;
  width: 100%;
}
.cid-v0W5k6Eajz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W5k6Eajz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W5k6Eajz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W5k6Eajz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WuOPI7tG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WuOPI7tG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WuOPI7tG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WuOPI7tG .mbr-section-title {
  color: #ffffff;
}
.cid-v0WuS9uGWV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WuS9uGWV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WuS9uGWV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WuS9uGWV .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WuS9uGWV .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WuS9uGWV .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WuS9uGWV .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WuS9uGWV .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WuS9uGWV .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WuS9uGWV .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WuS9uGWV .social-row {
  text-align: center;
}
.cid-v0WuS9uGWV .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WuS9uGWV .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WuS9uGWV .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WuS9uGWV .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WuS9uGWV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WuS9uGWV .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WuS9uGWV .embla__button--next,
.cid-v0WuS9uGWV .embla__button--prev {
  display: flex;
}
.cid-v0WuS9uGWV .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WuS9uGWV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WuS9uGWV .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WuS9uGWV .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WuS9uGWV .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WuS9uGWV .embla__button {
    top: auto;
  }
}
.cid-v0WuS9uGWV .embla {
  position: relative;
  width: 100%;
}
.cid-v0WuS9uGWV .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WuS9uGWV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WuS9uGWV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WuS9uGWV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WuZBKaXi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WuZBKaXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WuZBKaXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WuZBKaXi .mbr-section-title {
  color: #ffffff;
}
.cid-v0Ww4WquEa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0Ww4WquEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Ww4WquEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Ww4WquEa .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0Ww4WquEa .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0Ww4WquEa .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0Ww4WquEa .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0Ww4WquEa .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0Ww4WquEa .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Ww4WquEa .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0Ww4WquEa .social-row {
  text-align: center;
}
.cid-v0Ww4WquEa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0Ww4WquEa .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0Ww4WquEa .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0Ww4WquEa .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0Ww4WquEa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0Ww4WquEa .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0Ww4WquEa .embla__button--next,
.cid-v0Ww4WquEa .embla__button--prev {
  display: flex;
}
.cid-v0Ww4WquEa .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0Ww4WquEa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0Ww4WquEa .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0Ww4WquEa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0Ww4WquEa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0Ww4WquEa .embla__button {
    top: auto;
  }
}
.cid-v0Ww4WquEa .embla {
  position: relative;
  width: 100%;
}
.cid-v0Ww4WquEa .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0Ww4WquEa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0Ww4WquEa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0Ww4WquEa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WwwaM9YY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WwwaM9YY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WwwaM9YY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WwwaM9YY .mbr-section-title {
  color: #ffffff;
}
.cid-v0WwzEFMJl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WwzEFMJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WwzEFMJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WwzEFMJl .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WwzEFMJl .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WwzEFMJl .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WwzEFMJl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WwzEFMJl .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WwzEFMJl .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WwzEFMJl .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WwzEFMJl .social-row {
  text-align: center;
}
.cid-v0WwzEFMJl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WwzEFMJl .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WwzEFMJl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WwzEFMJl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WwzEFMJl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WwzEFMJl .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WwzEFMJl .embla__button--next,
.cid-v0WwzEFMJl .embla__button--prev {
  display: flex;
}
.cid-v0WwzEFMJl .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WwzEFMJl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WwzEFMJl .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WwzEFMJl .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WwzEFMJl .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WwzEFMJl .embla__button {
    top: auto;
  }
}
.cid-v0WwzEFMJl .embla {
  position: relative;
  width: 100%;
}
.cid-v0WwzEFMJl .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WwzEFMJl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WwzEFMJl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WwzEFMJl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WwPCszMZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WwPCszMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WwPCszMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WwPCszMZ .mbr-section-title {
  color: #ffffff;
}
.cid-v0WwTINvjL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WwTINvjL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WwTINvjL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WwTINvjL .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WwTINvjL .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WwTINvjL .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WwTINvjL .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WwTINvjL .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WwTINvjL .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WwTINvjL .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WwTINvjL .social-row {
  text-align: center;
}
.cid-v0WwTINvjL .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WwTINvjL .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WwTINvjL .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WwTINvjL .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WwTINvjL .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WwTINvjL .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WwTINvjL .embla__button--next,
.cid-v0WwTINvjL .embla__button--prev {
  display: flex;
}
.cid-v0WwTINvjL .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WwTINvjL .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WwTINvjL .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WwTINvjL .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WwTINvjL .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WwTINvjL .embla__button {
    top: auto;
  }
}
.cid-v0WwTINvjL .embla {
  position: relative;
  width: 100%;
}
.cid-v0WwTINvjL .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WwTINvjL .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WwTINvjL .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WwTINvjL .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Dc4H0qtn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Dc4H0qtn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Dc4H0qtn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Dc4H0qtn .mbr-section-title {
  color: #ffffff;
}
.cid-v0Wx9dGsFF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0Wx9dGsFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wx9dGsFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wx9dGsFF .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0Wx9dGsFF .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0Wx9dGsFF .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0Wx9dGsFF .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0Wx9dGsFF .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0Wx9dGsFF .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Wx9dGsFF .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0Wx9dGsFF .social-row {
  text-align: center;
}
.cid-v0Wx9dGsFF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0Wx9dGsFF .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0Wx9dGsFF .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0Wx9dGsFF .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0Wx9dGsFF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0Wx9dGsFF .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0Wx9dGsFF .embla__button--next,
.cid-v0Wx9dGsFF .embla__button--prev {
  display: flex;
}
.cid-v0Wx9dGsFF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0Wx9dGsFF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0Wx9dGsFF .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0Wx9dGsFF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0Wx9dGsFF .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0Wx9dGsFF .embla__button {
    top: auto;
  }
}
.cid-v0Wx9dGsFF .embla {
  position: relative;
  width: 100%;
}
.cid-v0Wx9dGsFF .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0Wx9dGsFF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0Wx9dGsFF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0Wx9dGsFF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Wy8j7PYk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Wy8j7PYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wy8j7PYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wy8j7PYk .mbr-section-title {
  color: #ffffff;
}
.cid-v0WyeByxhX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WyeByxhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyeByxhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyeByxhX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WyeByxhX .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WyeByxhX .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WyeByxhX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WyeByxhX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WyeByxhX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WyeByxhX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WyeByxhX .social-row {
  text-align: center;
}
.cid-v0WyeByxhX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WyeByxhX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WyeByxhX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WyeByxhX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WyeByxhX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WyeByxhX .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WyeByxhX .embla__button--next,
.cid-v0WyeByxhX .embla__button--prev {
  display: flex;
}
.cid-v0WyeByxhX .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WyeByxhX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WyeByxhX .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WyeByxhX .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WyeByxhX .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WyeByxhX .embla__button {
    top: auto;
  }
}
.cid-v0WyeByxhX .embla {
  position: relative;
  width: 100%;
}
.cid-v0WyeByxhX .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WyeByxhX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WyeByxhX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WyeByxhX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Wx60sLX7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Wx60sLX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wx60sLX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wx60sLX7 .mbr-section-title {
  color: #ffffff;
}
.cid-v0WyoX6Meo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WyoX6Meo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyoX6Meo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyoX6Meo .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WyoX6Meo .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WyoX6Meo .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WyoX6Meo .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WyoX6Meo .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WyoX6Meo .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WyoX6Meo .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WyoX6Meo .social-row {
  text-align: center;
}
.cid-v0WyoX6Meo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WyoX6Meo .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WyoX6Meo .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WyoX6Meo .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WyoX6Meo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WyoX6Meo .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WyoX6Meo .embla__button--next,
.cid-v0WyoX6Meo .embla__button--prev {
  display: flex;
}
.cid-v0WyoX6Meo .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WyoX6Meo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WyoX6Meo .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WyoX6Meo .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WyoX6Meo .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WyoX6Meo .embla__button {
    top: auto;
  }
}
.cid-v0WyoX6Meo .embla {
  position: relative;
  width: 100%;
}
.cid-v0WyoX6Meo .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WyoX6Meo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WyoX6Meo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WyoX6Meo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WyvaclhO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WyvaclhO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyvaclhO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyvaclhO .mbr-section-title {
  color: #ffffff;
}
.cid-v0WyzLgtZz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WyzLgtZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyzLgtZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyzLgtZz .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WyzLgtZz .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WyzLgtZz .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WyzLgtZz .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WyzLgtZz .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WyzLgtZz .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WyzLgtZz .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WyzLgtZz .social-row {
  text-align: center;
}
.cid-v0WyzLgtZz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WyzLgtZz .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WyzLgtZz .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WyzLgtZz .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WyzLgtZz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WyzLgtZz .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WyzLgtZz .embla__button--next,
.cid-v0WyzLgtZz .embla__button--prev {
  display: flex;
}
.cid-v0WyzLgtZz .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WyzLgtZz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WyzLgtZz .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WyzLgtZz .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WyzLgtZz .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WyzLgtZz .embla__button {
    top: auto;
  }
}
.cid-v0WyzLgtZz .embla {
  position: relative;
  width: 100%;
}
.cid-v0WyzLgtZz .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WyzLgtZz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WyzLgtZz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WyzLgtZz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Wylo2uUL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Wylo2uUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wylo2uUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wylo2uUL .mbr-section-title {
  color: #ffffff;
}
.cid-v0WyZ9l8yu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0WyZ9l8yu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyZ9l8yu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyZ9l8yu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0WyZ9l8yu .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0WyZ9l8yu .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0WyZ9l8yu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0WyZ9l8yu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0WyZ9l8yu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0WyZ9l8yu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0WyZ9l8yu .social-row {
  text-align: center;
}
.cid-v0WyZ9l8yu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0WyZ9l8yu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0WyZ9l8yu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0WyZ9l8yu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0WyZ9l8yu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0WyZ9l8yu .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0WyZ9l8yu .embla__button--next,
.cid-v0WyZ9l8yu .embla__button--prev {
  display: flex;
}
.cid-v0WyZ9l8yu .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0WyZ9l8yu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0WyZ9l8yu .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0WyZ9l8yu .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0WyZ9l8yu .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0WyZ9l8yu .embla__button {
    top: auto;
  }
}
.cid-v0WyZ9l8yu .embla {
  position: relative;
  width: 100%;
}
.cid-v0WyZ9l8yu .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0WyZ9l8yu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0WyZ9l8yu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0WyZ9l8yu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Wz6qpiPg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Wz6qpiPg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wz6qpiPg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wz6qpiPg .mbr-section-title {
  color: #ffffff;
}
.cid-v0Wz9L0k75 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0Wz9L0k75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wz9L0k75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wz9L0k75 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0Wz9L0k75 .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0Wz9L0k75 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0Wz9L0k75 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0Wz9L0k75 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0Wz9L0k75 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Wz9L0k75 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0Wz9L0k75 .social-row {
  text-align: center;
}
.cid-v0Wz9L0k75 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0Wz9L0k75 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0Wz9L0k75 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0Wz9L0k75 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0Wz9L0k75 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0Wz9L0k75 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0Wz9L0k75 .embla__button--next,
.cid-v0Wz9L0k75 .embla__button--prev {
  display: flex;
}
.cid-v0Wz9L0k75 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0Wz9L0k75 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0Wz9L0k75 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0Wz9L0k75 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0Wz9L0k75 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0Wz9L0k75 .embla__button {
    top: auto;
  }
}
.cid-v0Wz9L0k75 .embla {
  position: relative;
  width: 100%;
}
.cid-v0Wz9L0k75 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0Wz9L0k75 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0Wz9L0k75 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0Wz9L0k75 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WyVCE8QF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WyVCE8QF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WyVCE8QF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WyVCE8QF .mbr-section-title {
  color: #ffffff;
}
.cid-v0Wzmwbzvl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0Wzmwbzvl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Wzmwbzvl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Wzmwbzvl .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0Wzmwbzvl .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0Wzmwbzvl .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0Wzmwbzvl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0Wzmwbzvl .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0Wzmwbzvl .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0Wzmwbzvl .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0Wzmwbzvl .social-row {
  text-align: center;
}
.cid-v0Wzmwbzvl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0Wzmwbzvl .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0Wzmwbzvl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0Wzmwbzvl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0Wzmwbzvl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0Wzmwbzvl .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0Wzmwbzvl .embla__button--next,
.cid-v0Wzmwbzvl .embla__button--prev {
  display: flex;
}
.cid-v0Wzmwbzvl .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0Wzmwbzvl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0Wzmwbzvl .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0Wzmwbzvl .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0Wzmwbzvl .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0Wzmwbzvl .embla__button {
    top: auto;
  }
}
.cid-v0Wzmwbzvl .embla {
  position: relative;
  width: 100%;
}
.cid-v0Wzmwbzvl .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0Wzmwbzvl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0Wzmwbzvl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0Wzmwbzvl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0W5hjCvOF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0W5hjCvOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W5hjCvOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W5hjCvOF .mbr-section-title {
  color: #ffffff;
}
.cid-v0VWLdCkN6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0VWLdCkN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VWLdCkN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VWLdCkN6 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0VWLdCkN6 .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0VWLdCkN6 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0VWLdCkN6 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0VWLdCkN6 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0VWLdCkN6 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0VWLdCkN6 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0VWLdCkN6 .social-row {
  text-align: center;
}
.cid-v0VWLdCkN6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0VWLdCkN6 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0VWLdCkN6 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0VWLdCkN6 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0VWLdCkN6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0VWLdCkN6 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0VWLdCkN6 .embla__button--next,
.cid-v0VWLdCkN6 .embla__button--prev {
  display: flex;
}
.cid-v0VWLdCkN6 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0VWLdCkN6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0VWLdCkN6 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0VWLdCkN6 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0VWLdCkN6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0VWLdCkN6 .embla__button {
    top: auto;
  }
}
.cid-v0VWLdCkN6 .embla {
  position: relative;
  width: 100%;
}
.cid-v0VWLdCkN6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0VWLdCkN6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0VWLdCkN6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0VWLdCkN6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0WzjeI16b {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0WzjeI16b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0WzjeI16b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0WzjeI16b .mbr-section-title {
  color: #ffffff;
}
.cid-v0VY32gZ0p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0VY32gZ0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0VY32gZ0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0VY32gZ0p .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0VY32gZ0p .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0VY32gZ0p .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0VY32gZ0p .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0VY32gZ0p .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0VY32gZ0p .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0VY32gZ0p .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0VY32gZ0p .social-row {
  text-align: center;
}
.cid-v0VY32gZ0p .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0VY32gZ0p .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0VY32gZ0p .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0VY32gZ0p .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0VY32gZ0p .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0VY32gZ0p .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0VY32gZ0p .embla__button--next,
.cid-v0VY32gZ0p .embla__button--prev {
  display: flex;
}
.cid-v0VY32gZ0p .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0VY32gZ0p .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0VY32gZ0p .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0VY32gZ0p .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0VY32gZ0p .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0VY32gZ0p .embla__button {
    top: auto;
  }
}
.cid-v0VY32gZ0p .embla {
  position: relative;
  width: 100%;
}
.cid-v0VY32gZ0p .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0VY32gZ0p .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0VY32gZ0p .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0VY32gZ0p .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Df4Gwaud {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-v0Df4Gwaud .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Df4Gwaud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Df4Gwaud .mbr-section-title {
  color: #ffffff;
}
.cid-ojRgbS5Sqs {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #1a191a, #232323);
}
.cid-ojRgbS5Sqs .mbr-section-subtitle {
  color: #767676;
}
.cid-ojRgbS5Sqs .container11 {
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 712px;
  max-width: 421px;
  overflow: hidden;
  width: 98vw;
}
.cid-ojRgbS5Sqs .container11 figure {
  background-image: url("../../../assets/images/imagine-whatsapp-2025-10-21-la-16.42.05-7d56af49.jpg");
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}
.cid-ojRgbS5Sqs #compare11 {
  background-image: url("../../../assets/images/imagine-whatsapp-2025-10-21-la-16.42.05-a1dc741d.jpg");
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}
.cid-ojRgbS5Sqs input#slider11 {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.cid-ojRgbS5Sqs input#slider11::-moz-range-track {
  background: transparent;
}
.cid-ojRgbS5Sqs input#slider11::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}
.cid-ojRgbS5Sqs input#slider11::-ms-fill-lower {
  background-color: transparent;
}
.cid-ojRgbS5Sqs input#slider11::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-ojRgbS5Sqs input#slider11::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-ojRgbS5Sqs input#slider11::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-ojRgbS5Sqs input#slider::-ms-tooltip {
  display: none;
}
.cid-ojRgbS5Sqs #compare11::before {
  background: url("https://www.unsitepourtous.be/mobi/comparision.png") no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}
@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.cid-ojRgbS5Sqs H2 {
  color: #ffffff;
}
.cid-v0Dg6pJiW2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Dg6pJiW2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Dg6pJiW2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Dg6pJiW2 .mbr-section-title {
  color: #ffffff;
}
.cid-v0W0AaDXC7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W0AaDXC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W0AaDXC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W0AaDXC7 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W0AaDXC7 .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W0AaDXC7 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W0AaDXC7 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W0AaDXC7 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W0AaDXC7 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W0AaDXC7 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W0AaDXC7 .social-row {
  text-align: center;
}
.cid-v0W0AaDXC7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W0AaDXC7 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W0AaDXC7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W0AaDXC7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W0AaDXC7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W0AaDXC7 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W0AaDXC7 .embla__button--next,
.cid-v0W0AaDXC7 .embla__button--prev {
  display: flex;
}
.cid-v0W0AaDXC7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W0AaDXC7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W0AaDXC7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W0AaDXC7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W0AaDXC7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W0AaDXC7 .embla__button {
    top: auto;
  }
}
.cid-v0W0AaDXC7 .embla {
  position: relative;
  width: 100%;
}
.cid-v0W0AaDXC7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W0AaDXC7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W0AaDXC7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W0AaDXC7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0DgKrLzPY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0DgKrLzPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0DgKrLzPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0DgKrLzPY .mbr-section-title {
  color: #ffffff;
}
.cid-v0W1WBKHq7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W1WBKHq7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W1WBKHq7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W1WBKHq7 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W1WBKHq7 .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W1WBKHq7 .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W1WBKHq7 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W1WBKHq7 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W1WBKHq7 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W1WBKHq7 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W1WBKHq7 .social-row {
  text-align: center;
}
.cid-v0W1WBKHq7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W1WBKHq7 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W1WBKHq7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W1WBKHq7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W1WBKHq7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W1WBKHq7 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W1WBKHq7 .embla__button--next,
.cid-v0W1WBKHq7 .embla__button--prev {
  display: flex;
}
.cid-v0W1WBKHq7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W1WBKHq7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W1WBKHq7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W1WBKHq7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W1WBKHq7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W1WBKHq7 .embla__button {
    top: auto;
  }
}
.cid-v0W1WBKHq7 .embla {
  position: relative;
  width: 100%;
}
.cid-v0W1WBKHq7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W1WBKHq7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W1WBKHq7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W1WBKHq7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0Dh2OtbUp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0Dh2OtbUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Dh2OtbUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0Dh2OtbUp .mbr-section-title {
  color: #ffffff;
}
.cid-v0W2jXWScD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W2jXWScD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W2jXWScD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W2jXWScD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W2jXWScD .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W2jXWScD .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W2jXWScD .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W2jXWScD .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W2jXWScD .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W2jXWScD .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W2jXWScD .social-row {
  text-align: center;
}
.cid-v0W2jXWScD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W2jXWScD .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W2jXWScD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W2jXWScD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W2jXWScD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W2jXWScD .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W2jXWScD .embla__button--next,
.cid-v0W2jXWScD .embla__button--prev {
  display: flex;
}
.cid-v0W2jXWScD .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W2jXWScD .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W2jXWScD .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W2jXWScD .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W2jXWScD .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W2jXWScD .embla__button {
    top: auto;
  }
}
.cid-v0W2jXWScD .embla {
  position: relative;
  width: 100%;
}
.cid-v0W2jXWScD .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W2jXWScD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W2jXWScD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W2jXWScD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0DhIMqaFN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0DhIMqaFN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0DhIMqaFN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0DhIMqaFN .mbr-section-title {
  color: #ffffff;
}
.cid-v0W2zpEyPT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W2zpEyPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W2zpEyPT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W2zpEyPT .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W2zpEyPT .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W2zpEyPT .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W2zpEyPT .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W2zpEyPT .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W2zpEyPT .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W2zpEyPT .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W2zpEyPT .social-row {
  text-align: center;
}
.cid-v0W2zpEyPT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W2zpEyPT .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W2zpEyPT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W2zpEyPT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W2zpEyPT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W2zpEyPT .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W2zpEyPT .embla__button--next,
.cid-v0W2zpEyPT .embla__button--prev {
  display: flex;
}
.cid-v0W2zpEyPT .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W2zpEyPT .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W2zpEyPT .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W2zpEyPT .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W2zpEyPT .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W2zpEyPT .embla__button {
    top: auto;
  }
}
.cid-v0W2zpEyPT .embla {
  position: relative;
  width: 100%;
}
.cid-v0W2zpEyPT .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W2zpEyPT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W2zpEyPT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W2zpEyPT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0DbSGxEIf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0DbSGxEIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0DbSGxEIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0DbSGxEIf .mbr-section-title {
  color: #ffffff;
}
.cid-v0W4ft8Jdg {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W4ft8Jdg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W4ft8Jdg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W4ft8Jdg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W4ft8Jdg .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W4ft8Jdg .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W4ft8Jdg .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W4ft8Jdg .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W4ft8Jdg .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W4ft8Jdg .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W4ft8Jdg .social-row {
  text-align: center;
}
.cid-v0W4ft8Jdg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W4ft8Jdg .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W4ft8Jdg .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W4ft8Jdg .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W4ft8Jdg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W4ft8Jdg .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W4ft8Jdg .embla__button--next,
.cid-v0W4ft8Jdg .embla__button--prev {
  display: flex;
}
.cid-v0W4ft8Jdg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W4ft8Jdg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W4ft8Jdg .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W4ft8Jdg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W4ft8Jdg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W4ft8Jdg .embla__button {
    top: auto;
  }
}
.cid-v0W4ft8Jdg .embla {
  position: relative;
  width: 100%;
}
.cid-v0W4ft8Jdg .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W4ft8Jdg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W4ft8Jdg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W4ft8Jdg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v0W4S6fr72 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191a;
}
.cid-v0W4S6fr72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W4S6fr72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W4S6fr72 .mbr-section-title {
  color: #ffffff;
}
.cid-v0W4WE1X1j {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-v0W4WE1X1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0W4WE1X1j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0W4WE1X1j .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-v0W4WE1X1j .team-card:hover {
  transform: translateY(-10px);
}
.cid-v0W4WE1X1j .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-v0W4WE1X1j .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-v0W4WE1X1j .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-v0W4WE1X1j .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0W4WE1X1j .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-v0W4WE1X1j .social-row {
  text-align: center;
}
.cid-v0W4WE1X1j .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-v0W4WE1X1j .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-v0W4WE1X1j .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-v0W4WE1X1j .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v0W4WE1X1j .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-v0W4WE1X1j .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v0W4WE1X1j .embla__button--next,
.cid-v0W4WE1X1j .embla__button--prev {
  display: flex;
}
.cid-v0W4WE1X1j .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0W4WE1X1j .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-v0W4WE1X1j .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-v0W4WE1X1j .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0W4WE1X1j .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0W4WE1X1j .embla__button {
    top: auto;
  }
}
.cid-v0W4WE1X1j .embla {
  position: relative;
  width: 100%;
}
.cid-v0W4WE1X1j .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-v0W4WE1X1j .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v0W4WE1X1j .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v0W4WE1X1j .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uY0agQVaoW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uY0agQVaoW .content-head {
  max-width: 800px;
}
.cid-uY0agQVaoW .mbr-text,
.cid-uY0agQVaoW .mbr-section-btn {
  color: #ffffff;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-SQsi9VV7Wz .hidden {
  display: none;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYo5pRpkcn {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uYo5pRpkcn .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uYo5YFsuHB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uYo5YFsuHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYo5YFsuHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYo5YFsuHB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYo5YFsuHB .row {
  flex-direction: row-reverse;
}
.cid-uYo5YFsuHB .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uYo5YFsuHB .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uYo5YFsuHB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uYo5YFsuHB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYo5YFsuHB .mbr-text,
.cid-uYo5YFsuHB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYo6CO4fVj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1a191a;
}
.cid-uYo6CO4fVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYo6CO4fVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYo6CO4fVj .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uYo6CO4fVj .container {
    max-width: 1400px;
  }
}
.cid-uYo6CO4fVj .card {
  margin: auto;
}
.cid-uYo6CO4fVj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #89cff0;
  margin-bottom: 2rem;
}
.cid-uYo6CO4fVj .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uYo6CO4fVj .row {
  justify-content: center;
}
.cid-uYo6CO4fVj .card-title,
.cid-uYo6CO4fVj .card-box {
  color: #ffffff;
}
.cid-uYo6CO4fVj H3 {
  color: #ffffff;
}
.cid-uZBWWN8tFO {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uZBWWN8tFO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZBWWN8tFO .container11 {
  height: 73.5vw;
  margin: 1vw auto;
  max-height: 397px;
  max-width: 760px;
  overflow: hidden;
  width: 98vw;
}
.cid-uZBWWN8tFO .container11 figure {
  background-image: url("../../../assets/images/before-and-after-buze-1.jpeg");
  background-size: cover;
  font-size: 0;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
}
.cid-uZBWWN8tFO #compare11 {
  background-image: url("../../../assets/images/before-and-after-buze-2.jpeg");
  background-size: cover;
  bottom: 0;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 10px 0 15px -13px #000000;
  height: 100%;
  max-width: 98.6%;
  min-width: 0.6%;
  overflow: visible;
  position: absolute;
  width: 50%;
  animation: first 2s 1 normal ease-in-out 0.1s;
  -webkit-animation: first 2s 1 normal ease-in-out 0.1s;
}
.cid-uZBWWN8tFO input#slider11 {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  cursor: col-resize;
  height: 100vw;
  left: 0;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  top: -100vw;
  width: 100%;
}
.cid-uZBWWN8tFO input#slider11::-moz-range-track {
  background: transparent;
}
.cid-uZBWWN8tFO input#slider11::-ms-track {
  border: none;
  background-color: transparent;
  height: 100vw;
  left: 0;
  outline: none;
  position: relative;
  top: -100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: col-resize;
  color: transparent;
}
.cid-uZBWWN8tFO input#slider11::-ms-fill-lower {
  background-color: transparent;
}
.cid-uZBWWN8tFO input#slider11::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uZBWWN8tFO input#slider11::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uZBWWN8tFO input#slider11::-ms-thumb {
  height: 100vw;
  width: 0.5%;
  opacity: 0;
}
.cid-uZBWWN8tFO input#slider::-ms-tooltip {
  display: none;
}
.cid-uZBWWN8tFO #compare11::before {
  background: url("https://www.unsitepourtous.be/mobi/comparision.png") no-repeat scroll 0 center transparent;
  background-size: contain;
  content: " ";
  float: right;
  height: 100%;
  margin-right: -34px;
  position: relative;
  top: 0;
  width: 64px;
}
@keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
@-webkit-keyframes first {
  0% {
    width: 0%;
  }
  50% {
    width: 80%;
  }
  100% {
    width: 50%;
  }
}
.cid-uZBWWN8tFO H2 {
  color: #ffffff;
}
.cid-uZBWXLL0yP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZBWXLL0yP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZBWXLL0yP .item-wrapper {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uZBWXLL0yP .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZBWXLL0yP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZBWXLL0yP .mbr-iconfont {
  display: inline-flex;
  font-size: 2rem;
  color: #ffffff;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: #25fde9;
  height: 80px;
  border-radius: 50%;
}
.cid-uZBWXLL0yP .card-title,
.cid-uZBWXLL0yP .iconfont-wrapper,
.cid-uZBWXLL0yP .card-text {
  color: #000000;
  text-align: center;
}
.cid-uZBWXLL0yP .content-head {
  max-width: 800px;
}
.cid-uZBWXLL0yP .mbr-section-title {
  color: #000000;
}
.cid-uZBWXLL0yP .mbr-section-btn {
  text-align: center;
}
.cid-uYo7OCHRfg {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYo7OCHRfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYo7OCHRfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYo8a7NEuJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uYo8a7NEuJ img,
.cid-uYo8a7NEuJ .item-img {
  width: 100%;
}
.cid-uYo8a7NEuJ .item:focus,
.cid-uYo8a7NEuJ span:focus {
  outline: none;
}
.cid-uYo8a7NEuJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYo8a7NEuJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYo8a7NEuJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYo8a7NEuJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYo8a7NEuJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYo8a7NEuJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYo8a7NEuJ .mbr-text,
.cid-uYo8a7NEuJ .mbr-section-btn {
  text-align: left;
}
.cid-uYo8a7NEuJ .item-title {
  text-align: center;
}
.cid-uYo8a7NEuJ .item-subtitle {
  text-align: left;
}
.cid-uYom9KlDAe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uYom9KlDAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYom9KlDAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYom9KlDAe .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYom9KlDAe .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uYom9KlDAe .mbr-text,
.cid-uYom9KlDAe .mbr-section-btn {
  color: #ffffff;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v0CMvlF5cW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0CMvlF5cW nav.navbar {
  position: fixed;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0CMvlF5cW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0CMvlF5cW .dropdown-item:hover,
.cid-v0CMvlF5cW .dropdown-item:focus {
  background: #25fde9 !important;
  color: white !important;
}
.cid-v0CMvlF5cW .dropdown-item:hover span {
  color: white;
}
.cid-v0CMvlF5cW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0CMvlF5cW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0CMvlF5cW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0CMvlF5cW .nav-link {
  position: relative;
}
.cid-v0CMvlF5cW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0CMvlF5cW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown-menu,
.cid-v0CMvlF5cW .navbar.opened {
  background: #ffffff !important;
}
.cid-v0CMvlF5cW .nav-item:focus,
.cid-v0CMvlF5cW .nav-link:focus {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0CMvlF5cW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0CMvlF5cW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0CMvlF5cW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0CMvlF5cW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0CMvlF5cW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0CMvlF5cW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0CMvlF5cW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar.collapsed {
  justify-content: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0CMvlF5cW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0CMvlF5cW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0CMvlF5cW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0CMvlF5cW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0CMvlF5cW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0CMvlF5cW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0CMvlF5cW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0CMvlF5cW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0CMvlF5cW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0CMvlF5cW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0CMvlF5cW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0CMvlF5cW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0CMvlF5cW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0CMvlF5cW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0CMvlF5cW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0CMvlF5cW .dropdown-item.active,
.cid-v0CMvlF5cW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0CMvlF5cW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0CMvlF5cW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0CMvlF5cW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0CMvlF5cW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0CMvlF5cW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0CMvlF5cW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0CMvlF5cW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0CMvlF5cW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0CMvlF5cW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0CMvlF5cW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0CMvlF5cW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0CMvlF5cW .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-v0CMvlF5cW .navbar {
    height: 70px;
  }
  .cid-v0CMvlF5cW .navbar.opened {
    height: auto;
  }
  .cid-v0CMvlF5cW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZC047W9lv {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(0deg, #1a191a, #1a191a);
}
.cid-uZC047W9lv .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #25fde9;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/1.jpeg");
  background-size: 90%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 51px rgba(232, 76, 61, 0);
  }
}
.cid-uZC8r7Z6f2 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uZC8r7Z6f2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZC8r7Z6f2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZC8r7Z6f2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZC8r7Z6f2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uZC8r7Z6f2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uZC8r7Z6f2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uZC8r7Z6f2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZC8r7Z6f2 .mbr-text,
.cid-uZC8r7Z6f2 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uZC8dm9nVl {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uZC8dm9nVl .content-head {
  max-width: 800px;
}
.cid-uZC8dm9nVl .mbr-text,
.cid-uZC8dm9nVl .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZC8dm9nVl .mbr-section-title {
  color: #ffffff;
}
.cid-uZC9pE4GG7 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uZC9pE4GG7 .content-head {
  max-width: 800px;
}
.cid-uZC9pE4GG7 .mbr-text,
.cid-uZC9pE4GG7 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZC9pE4GG7 .mbr-section-title {
  color: #ffffff;
}
.cid-uZC9DUawky {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uZC9DUawky .content-head {
  max-width: 800px;
}
.cid-uZC9DUawky .mbr-text,
.cid-uZC9DUawky .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZC9DUawky .mbr-section-title {
  color: #ffffff;
}
.cid-uZC9Qeh6si {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #1a191a;
}
.cid-uZC9Qeh6si .content-head {
  max-width: 800px;
}
.cid-uZC9Qeh6si .mbr-text,
.cid-uZC9Qeh6si .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uZC9Qeh6si .mbr-section-title {
  color: #ffffff;
}
.cid-uZCaCj9I66 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZCaCj9I66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCaCj9I66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCaCj9I66 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZCaCj9I66 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uZCaCj9I66 .mbr-text,
.cid-uZCaCj9I66 .mbr-section-btn {
  color: #1a191a;
}
.cid-uUO3xkpFKI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #1a191a;
}
.cid-uUO3xkpFKI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uUO3xkpFKI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uUO3xkpFKI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uUO3xkpFKI .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uUO3xkpFKI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uUO3xkpFKI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uUO3xkpFKI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uUO3xkpFKI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uUO3xkpFKI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uUO3xkpFKI .media-container-row .row-copirayt p {
  width: 100%;
}
