.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.92rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.68rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((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: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #0cc0df !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0cc0df !important;
  border-color: #0cc0df !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #08798d !important;
  border-color: #08798d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #08798d !important;
  border-color: #08798d !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0cc0df;
  color: #0cc0df;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #08798d !important;
  background-color: transparent!important;
  border-color: #08798d !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0cc0df !important;
  border-color: #0cc0df !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #0cc0df !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #076d7e !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0cc0df;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #bcf2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAIMp0Pp6b {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
  overflow: hidden;
}
.cid-uAIMp0Pp6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAIMp0Pp6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAIMp0Pp6b .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAIMp0Pp6b .row {
    flex-wrap: wrap;
  }
}
.cid-uAIMp0Pp6b .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAIMp0Pp6b .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uAIMp0Pp6b .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAIMp0Pp6b .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uAIMp0Pp6b .mbr-section-title {
  color: #353535;
}
.cid-uAIMp0Pp6b .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uAIMp0Pp6b .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uAIMp0Pp6b .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uAIMp0Pp6b .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uAIMp0Pp6b .mbr-text {
    margin-top: 12px;
  }
}
.cid-uAIMp0Pp6b .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uAIMp0Pp6b .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uAIMp0Pp6b .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uAIMp0Pp6b .col-img {
    width: 350px;
  }
}
.cid-uAIMp0Pp6b .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uAIMp0Pp6b .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uAIMp0Pp6b .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uAIMp0Pp6b .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uAIMp0Pp6b .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uAIMp0Pp6b .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uAIMp0Pp6b .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(335deg);
}
.cid-uAIMp0Pp6b .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(325deg);
}
@media (max-width: 991px) {
  .cid-uAIMp0Pp6b .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uAIMp0Pp6b .mbr-text,
.cid-uAIMp0Pp6b .mbr-section-btn {
  text-align: left;
}
.cid-uAIVUW0hGb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uAIVUW0hGb .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uAIVUW0hGb .team-card:hover {
  transform: translateY(-10px);
}
@media (min-width: 1400px) {
  .cid-uAIVUW0hGb .col-lg-3 {
    padding: 0 1.5rem;
  }
}
.cid-uAIVUW0hGb .card-wrap {
  height: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  border-radius: 4px;
}
.cid-uAIVUW0hGb .card-wrap:hover img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .cid-uAIVUW0hGb .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uAIVUW0hGb .card-wrap .image-wrap img {
  width: 100%;
  transition: all 0.3s;
  height: 300px;
  object-fit: cover;
}
.cid-uAIVUW0hGb .card-wrap .content-wrap {
  margin: auto;
}
@media (min-width: 768px) {
  .cid-uAIVUW0hGb .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAIVUW0hGb .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uAIVUW0hGb .content-wrap {
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.cid-uAIVUW0hGb .icons-menu {
  display: flex;
}
@media (max-width: 767px) {
  .cid-uAIVUW0hGb .icons-menu {
    justify-content: center;
  }
}
.cid-uAIVUW0hGb .image-wrap {
  clip-path: polygon(100% 0, 100% 100%, 0% 94%, 0% 0%);
}
.cid-uAIVUW0hGb .iconfont-wrapper {
  font-size: 1.2rem;
  padding: 0.4rem 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-uAIVUW0hGb .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #000000;
  z-index: 0;
}
.cid-uAIVUW0hGb .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-uAIVUW0hGb .mbr-iconfont {
  position: relative;
  fomt-size: 1rem;
  color: #272727;
}
.cid-uAIVUW0hGb .card-text,
.cid-uAIVUW0hGb .mbr-section-btn,
.cid-uAIVUW0hGb .social-row {
  color: #353535;
}
.cid-uAIVUW0hGb .mbr-role,
.cid-uAIVUW0hGb .social-row {
  color: #353535;
}
.cid-uAIVUW0hGb .card-title,
.cid-uAIVUW0hGb .social-row {
  color: #272727;
}
.cid-uAIVUW0hGb .mbr-section-title {
  color: #272727;
}
.cid-uAs6ezMm7n {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAs6ezMm7n img,
.cid-uAs6ezMm7n .item-img {
  width: 100%;
}
.cid-uAs6ezMm7n .item:focus,
.cid-uAs6ezMm7n span:focus {
  outline: none;
}
.cid-uAs6ezMm7n .item-wrapper {
  position: relative;
}
.cid-uAs6ezMm7n .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAs6ezMm7n .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uAs6ezMm7n .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAs6ezMm7n .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uAs6ezMm7n .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uAs6ezMm7n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAs6ezMm7n .mbr-section-title {
  color: #232323;
}
.cid-uAs6ezMm7n .mbr-text,
.cid-uAs6ezMm7n .mbr-section-btn {
  text-align: left;
}
.cid-uAs6ezMm7n .item-title {
  text-align: left;
}
.cid-uAs6ezMm7n .item-subtitle {
  text-align: left;
}
.cid-uAs6ezMm7n .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uAs6ezMm7n .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uAs6ezMm7n .embla__button--next,
.cid-uAs6ezMm7n .embla__button--prev {
  display: flex;
}
.cid-uAs6ezMm7n .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uAs6ezMm7n .embla__button {
    display: none;
  }
}
.cid-uAs6ezMm7n .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAs6ezMm7n .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uAs6ezMm7n .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAs6ezMm7n .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uAs6ezMm7n .embla__button {
    top: auto;
  }
}
.cid-uAs6ezMm7n .embla {
  position: relative;
  width: 100%;
}
.cid-uAs6ezMm7n .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uAs6ezMm7n .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAs6ezMm7n .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAs6ezMm7n .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sFzyUE9AaP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1279.webp");
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #ffffff;
}
.cid-sFzyUE9AaP .card-text {
  color: #ffffff;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #ffffff;
}
.cid-sFzxmVl7J6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background-1-1920x1080.webp");
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
  text-align: left;
}
.cid-sFAyMcKwph {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #effaff;
}
.cid-sFAyMcKwph .media-container-row {
  justify-content: space-between;
}
.cid-sFAyMcKwph .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .text-content {
    max-width: none;
  }
}
.cid-sFAyMcKwph .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sFAyMcKwph .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sFAyMcKwph .mbr-iconfont-social:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .icons {
    justify-content: center !important;
  }
  .cid-sFAyMcKwph .text-content * {
    text-align: center;
  }
}
.cid-sFAyMcKwph .mbr-section-title {
  color: #353535;
}
.cid-sFAyMcKwph P {
  color: #000000;
}
.cid-uAs7nOPccu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAs7nOPccu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAs7nOPccu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAs7nOPccu .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #000000;
  margin-left: 1rem;
}
.cid-uAs7nOPccu .panel-group {
  border: none;
}
.cid-uAs7nOPccu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uAs7nOPccu .panel-body,
.cid-uAs7nOPccu .card-header {
  padding: 1rem 0;
}
.cid-uAs7nOPccu .panel-title-edit {
  color: #000000;
}
.cid-uAs7nOPccu .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uAr7V9i2u4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uAr7V9i2u4 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAr7V9i2u4 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uAr7V9i2u4 .media-wrap img {
  height: 6rem;
}
.cid-uAr7V9i2u4 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uAr7V9i2u4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uAr7V9i2u4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uAr7V9i2u4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uAr7V9i2u4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uAr7V9i2u4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uAr7V9i2u4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAr7V9i2u4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uAr7V9i2u4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uAr7V9i2u4 .links {
  color: #000000;
}
.cid-uAr0yEwRge {
  z-index: 1000;
  width: 100%;
}
.cid-uAr0yEwRge nav.navbar {
  position: fixed;
}
.cid-uAr0yEwRge .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-uAr0yEwRge .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAr0yEwRge .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAr0yEwRge .dropdown-item:hover,
.cid-uAr0yEwRge .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uAr0yEwRge .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAr0yEwRge .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAr0yEwRge .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAr0yEwRge .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAr0yEwRge .nav-link {
  position: relative;
}
.cid-uAr0yEwRge .container {
  display: flex;
  margin: auto;
}
.cid-uAr0yEwRge .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAr0yEwRge .dropdown-menu,
.cid-uAr0yEwRge .navbar.opened {
  background: #fafafa !important;
}
.cid-uAr0yEwRge .nav-item:focus,
.cid-uAr0yEwRge .nav-link:focus {
  outline: none;
}
.cid-uAr0yEwRge .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAr0yEwRge .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAr0yEwRge .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAr0yEwRge .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAr0yEwRge .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAr0yEwRge .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAr0yEwRge .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uAr0yEwRge .navbar.opened {
  transition: all 0.3s;
}
.cid-uAr0yEwRge .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAr0yEwRge .navbar .navbar-logo img {
  width: auto;
}
.cid-uAr0yEwRge .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAr0yEwRge .navbar.collapsed {
  justify-content: center;
}
.cid-uAr0yEwRge .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAr0yEwRge .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAr0yEwRge .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uAr0yEwRge .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAr0yEwRge .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAr0yEwRge .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-uAr0yEwRge .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAr0yEwRge .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAr0yEwRge .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAr0yEwRge .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAr0yEwRge .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAr0yEwRge .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAr0yEwRge .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAr0yEwRge .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-uAr0yEwRge .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAr0yEwRge .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAr0yEwRge .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAr0yEwRge .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAr0yEwRge .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAr0yEwRge .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAr0yEwRge .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAr0yEwRge .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAr0yEwRge .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAr0yEwRge .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-uAr0yEwRge .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAr0yEwRge .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAr0yEwRge .dropdown-item.active,
.cid-uAr0yEwRge .dropdown-item:active {
  background-color: transparent;
}
.cid-uAr0yEwRge .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAr0yEwRge .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAr0yEwRge .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAr0yEwRge .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uAr0yEwRge .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAr0yEwRge .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAr0yEwRge ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAr0yEwRge .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAr0yEwRge button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAr0yEwRge button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAr0yEwRge button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAr0yEwRge button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAr0yEwRge button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAr0yEwRge button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAr0yEwRge nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAr0yEwRge nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAr0yEwRge nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAr0yEwRge nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAr0yEwRge .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAr0yEwRge a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAr0yEwRge .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-uAr0yEwRge .navbar {
    height: 70px;
  }
  .cid-uAr0yEwRge .navbar.opened {
    height: auto;
  }
  .cid-uAr0yEwRge .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAr0yEXBM1 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uAr0yEXBM1 H2 {
  color: #000000;
}
.cid-uAr0yFhRWY {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAr0yFhRWY .mbr-text {
  text-align: left;
}
.cid-uLnbbJu3IN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnbbJu3IN .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnbbJu3IN .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnbbJu3IN .media-wrap img {
  height: 6rem;
}
.cid-uLnbbJu3IN .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnbbJu3IN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnbbJu3IN .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnbbJu3IN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnbbJu3IN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnbbJu3IN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnbbJu3IN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnbbJu3IN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnbbJu3IN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnbbJu3IN .links {
  color: #000000;
}
.cid-uB5fs4oYGj {
  z-index: 1000;
  width: 100%;
}
.cid-uB5fs4oYGj nav.navbar {
  position: fixed;
}
.cid-uB5fs4oYGj .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-uB5fs4oYGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uB5fs4oYGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uB5fs4oYGj .dropdown-item:hover,
.cid-uB5fs4oYGj .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uB5fs4oYGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uB5fs4oYGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uB5fs4oYGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uB5fs4oYGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uB5fs4oYGj .nav-link {
  position: relative;
}
.cid-uB5fs4oYGj .container {
  display: flex;
  margin: auto;
}
.cid-uB5fs4oYGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uB5fs4oYGj .dropdown-menu,
.cid-uB5fs4oYGj .navbar.opened {
  background: #fafafa !important;
}
.cid-uB5fs4oYGj .nav-item:focus,
.cid-uB5fs4oYGj .nav-link:focus {
  outline: none;
}
.cid-uB5fs4oYGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uB5fs4oYGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uB5fs4oYGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uB5fs4oYGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uB5fs4oYGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uB5fs4oYGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uB5fs4oYGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uB5fs4oYGj .navbar.opened {
  transition: all 0.3s;
}
.cid-uB5fs4oYGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uB5fs4oYGj .navbar .navbar-logo img {
  width: auto;
}
.cid-uB5fs4oYGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uB5fs4oYGj .navbar.collapsed {
  justify-content: center;
}
.cid-uB5fs4oYGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uB5fs4oYGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uB5fs4oYGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uB5fs4oYGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uB5fs4oYGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uB5fs4oYGj .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-uB5fs4oYGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uB5fs4oYGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uB5fs4oYGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uB5fs4oYGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uB5fs4oYGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uB5fs4oYGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uB5fs4oYGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uB5fs4oYGj .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-uB5fs4oYGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uB5fs4oYGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uB5fs4oYGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uB5fs4oYGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uB5fs4oYGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uB5fs4oYGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uB5fs4oYGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uB5fs4oYGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uB5fs4oYGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uB5fs4oYGj .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-uB5fs4oYGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uB5fs4oYGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uB5fs4oYGj .dropdown-item.active,
.cid-uB5fs4oYGj .dropdown-item:active {
  background-color: transparent;
}
.cid-uB5fs4oYGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uB5fs4oYGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uB5fs4oYGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uB5fs4oYGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uB5fs4oYGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uB5fs4oYGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB5fs4oYGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uB5fs4oYGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uB5fs4oYGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uB5fs4oYGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uB5fs4oYGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uB5fs4oYGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB5fs4oYGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB5fs4oYGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uB5fs4oYGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB5fs4oYGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uB5fs4oYGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uB5fs4oYGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB5fs4oYGj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uB5fs4oYGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uB5fs4oYGj .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-uB5fs4oYGj .navbar {
    height: 70px;
  }
  .cid-uB5fs4oYGj .navbar.opened {
    height: auto;
  }
  .cid-uB5fs4oYGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB5fs4QDpZ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uB5fs4QDpZ H2 {
  color: #000000;
}
.cid-uB5fs5crPC {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uB5fs5crPC img {
  object-fit: cover;
}
.cid-uB5fs607s7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uB5fs607s7 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uB5fs607s7 .container {
    padding: 0 24px;
  }
}
.cid-uB5fs607s7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-uB5fs607s7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uB5fs607s7 .embla__slide .slide-content {
  width: 100%;
}
.cid-uB5fs607s7 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uB5fs607s7 .embla__button--next,
.cid-uB5fs607s7 .embla__button--prev {
  display: flex;
}
.cid-uB5fs607s7 .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uB5fs607s7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uB5fs607s7 .embla__button:hover {
  opacity: .5 !important;
}
.cid-uB5fs607s7 .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-uB5fs607s7 .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-uB5fs607s7 .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-uB5fs607s7 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uB5fs607s7 .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uB5fs607s7 .embla {
    padding: 0;
  }
}
.cid-uB5fs607s7 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uB5fs607s7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uB5fs607s7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uB5fs607s7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uB5fs6FbTU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB64Hngidp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uB64Hngidp .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-uB64Hngidp .mbr-section-title {
  text-align: center;
}
.cid-uB64Hngidp .mbr-section-subtitle {
  text-align: center;
}
.cid-uB64Hngidp .card-title {
  margin-bottom: 1rem;
  color: #33d5ad;
}
.cid-uB64Hngidp .card-subtitle {
  color: #1f1437;
}
.cid-uB64Hngidp .mbr-text {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: #1f1437;
}
.cid-uB64Hngidp .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uB64Hngidp .card {
  height: 100%;
  background-color: #ffffff;
  border-width: 1px;
  border-style: dashed;
  border-color: #ffffff;
  border-radius: 30px;
  padding: 1rem 0.5rem;
  background: transparent;
}
.cid-uB64Hngidp .card-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uB64Hngidp .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cid-uB64Hngidp .card-wrapper {
    flex-direction: column;
  }
}
.cid-uB64Hngidp .social-row {
  width: 50px;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-uB64Hngidp .social-row {
    width: 100%;
    flex-direction: row;
    justify-content: center !important;
  }
}
.cid-uB64Hngidp .social-row .soc-item {
  width: 34px;
  height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-uB64Hngidp .social-row .soc-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uB64Hngidp .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #33d5ad;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uB64Hngidp .social-row .soc-item:hover .mbr-iconfont {
  color: #cd8ad1;
}
.cid-uB64Hngidp .image-wrapper {
  width: 35%;
  aspect-ratio: 1;
  flex-shrink: 0;
  padding: 1rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-uB64Hngidp .image-wrapper {
    width: 45%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uB64Hngidp .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uB64Hngidp .image-wrapper {
    width: 100%;
  }
}
.cid-uB64Hngidp .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cid-uB64Hngidp .card-text {
  padding: 1rem;
}
.cid-uB64Hngidp div[class*="col"] {
  margin-bottom: 2rem;
}
.cid-uB5fs73hvn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uB6hO6xdME {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uB6hO6xdME img {
  object-fit: cover;
}
.cid-uB5fs7UpaE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uB5fs7UpaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5fs7UpaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB5fs7UpaE .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uB5fs7UpaE .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uB5fs7UpaE .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uB5fs7UpaE .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uB5fs7UpaE .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uB5fs7UpaE .border-wrap {
    margin-top: 32px;
  }
}
.cid-uB5fs7UpaE .mbr-section-title {
  color: #ffffff;
}
.cid-uB5fs7UpaE .mbr-text,
.cid-uB5fs7UpaE .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uB5fs7UpaE .mbr-section-title,
.cid-uB5fs7UpaE .mbr-section-btn {
  text-align: center;
}
.cid-uB5fs8kxTu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uB5fs8kxTu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5fs8kxTu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uB5fs8kxTu .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uB5fs8kxTu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uB5fs8kxTu .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uB5fs8kxTu .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uB5fs8kxTu .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uB5fs8kxTu .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB5fs8kxTu .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uB5fs8kxTu .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uB5fs8kxTu .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uB5fs8kxTu .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uB5fs8kxTu .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uB5fs8kxTu .mbr-section-title {
  color: #000000;
}
.cid-uB5fs8kxTu .card-title {
  color: #000000;
}
.cid-uLnaiVQCNM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaiVQCNM .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaiVQCNM .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaiVQCNM .media-wrap img {
  height: 6rem;
}
.cid-uLnaiVQCNM .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaiVQCNM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaiVQCNM .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaiVQCNM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaiVQCNM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaiVQCNM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaiVQCNM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaiVQCNM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaiVQCNM .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaiVQCNM .links {
  color: #000000;
}
.cid-uANXEnByKz {
  z-index: 1000;
  width: 100%;
}
.cid-uANXEnByKz nav.navbar {
  position: fixed;
}
.cid-uANXEnByKz .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-uANXEnByKz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uANXEnByKz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uANXEnByKz .dropdown-item:hover,
.cid-uANXEnByKz .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uANXEnByKz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uANXEnByKz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uANXEnByKz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uANXEnByKz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uANXEnByKz .nav-link {
  position: relative;
}
.cid-uANXEnByKz .container {
  display: flex;
  margin: auto;
}
.cid-uANXEnByKz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uANXEnByKz .dropdown-menu,
.cid-uANXEnByKz .navbar.opened {
  background: #fafafa !important;
}
.cid-uANXEnByKz .nav-item:focus,
.cid-uANXEnByKz .nav-link:focus {
  outline: none;
}
.cid-uANXEnByKz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uANXEnByKz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uANXEnByKz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uANXEnByKz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uANXEnByKz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uANXEnByKz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uANXEnByKz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uANXEnByKz .navbar.opened {
  transition: all 0.3s;
}
.cid-uANXEnByKz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uANXEnByKz .navbar .navbar-logo img {
  width: auto;
}
.cid-uANXEnByKz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uANXEnByKz .navbar.collapsed {
  justify-content: center;
}
.cid-uANXEnByKz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uANXEnByKz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uANXEnByKz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uANXEnByKz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uANXEnByKz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uANXEnByKz .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-uANXEnByKz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uANXEnByKz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uANXEnByKz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uANXEnByKz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uANXEnByKz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uANXEnByKz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uANXEnByKz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uANXEnByKz .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-uANXEnByKz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uANXEnByKz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uANXEnByKz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uANXEnByKz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uANXEnByKz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uANXEnByKz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uANXEnByKz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uANXEnByKz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uANXEnByKz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uANXEnByKz .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-uANXEnByKz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uANXEnByKz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uANXEnByKz .dropdown-item.active,
.cid-uANXEnByKz .dropdown-item:active {
  background-color: transparent;
}
.cid-uANXEnByKz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uANXEnByKz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uANXEnByKz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uANXEnByKz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uANXEnByKz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uANXEnByKz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uANXEnByKz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uANXEnByKz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uANXEnByKz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uANXEnByKz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uANXEnByKz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uANXEnByKz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uANXEnByKz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uANXEnByKz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uANXEnByKz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uANXEnByKz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uANXEnByKz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uANXEnByKz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uANXEnByKz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uANXEnByKz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uANXEnByKz .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-uANXEnByKz .navbar {
    height: 70px;
  }
  .cid-uANXEnByKz .navbar.opened {
    height: auto;
  }
  .cid-uANXEnByKz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uANXEo78hM {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uANXEo78hM H2 {
  color: #000000;
}
.cid-uANXEoxJqe {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uANXEoxJqe img {
  object-fit: cover;
}
.cid-uANXEptXOn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uANXEptXOn .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uANXEptXOn .container {
    padding: 0 24px;
  }
}
.cid-uANXEptXOn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-uANXEptXOn .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uANXEptXOn .embla__slide .slide-content {
  width: 100%;
}
.cid-uANXEptXOn .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uANXEptXOn .embla__button--next,
.cid-uANXEptXOn .embla__button--prev {
  display: flex;
}
.cid-uANXEptXOn .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uANXEptXOn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uANXEptXOn .embla__button:hover {
  opacity: .5 !important;
}
.cid-uANXEptXOn .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-uANXEptXOn .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-uANXEptXOn .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-uANXEptXOn .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uANXEptXOn .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uANXEptXOn .embla {
    padding: 0;
  }
}
.cid-uANXEptXOn .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uANXEptXOn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uANXEptXOn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uANXEptXOn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOfpAcCoD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAOfpAcCoD img,
.cid-uAOfpAcCoD .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uAOfpAcCoD .item:focus,
.cid-uAOfpAcCoD span:focus {
  outline: none;
}
.cid-uAOfpAcCoD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAOfpAcCoD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAOfpAcCoD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAOfpAcCoD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAOfpAcCoD .mbr-section-title {
  color: #232323;
}
.cid-uAOfpAcCoD .mbr-text,
.cid-uAOfpAcCoD .mbr-section-btn {
  text-align: left;
}
.cid-uAOfpAcCoD .item-title {
  text-align: center;
  color: #000000;
}
.cid-uAOfpAcCoD .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uANXEqfiKZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uANXErIg52 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uANXErIg52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANXErIg52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANXErIg52 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uANXErIg52 .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uANXErIg52 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uANXErIg52 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uANXErIg52 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uANXErIg52 .border-wrap {
    margin-top: 32px;
  }
}
.cid-uANXErIg52 .mbr-section-title {
  color: #ffffff;
}
.cid-uANXErIg52 .mbr-text,
.cid-uANXErIg52 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uANXErIg52 .mbr-section-title,
.cid-uANXErIg52 .mbr-section-btn {
  text-align: center;
}
.cid-uANXEscJdS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uANXEscJdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANXEscJdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uANXEscJdS .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uANXEscJdS .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uANXEscJdS .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uANXEscJdS .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uANXEscJdS .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uANXEscJdS .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uANXEscJdS .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uANXEscJdS .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uANXEscJdS .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uANXEscJdS .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uANXEscJdS .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uANXEscJdS .mbr-section-title {
  color: #000000;
}
.cid-uANXEscJdS .card-title {
  color: #000000;
}
.cid-uLnaerzPUU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaerzPUU .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaerzPUU .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaerzPUU .media-wrap img {
  height: 6rem;
}
.cid-uLnaerzPUU .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaerzPUU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaerzPUU .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaerzPUU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaerzPUU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaerzPUU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaerzPUU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaerzPUU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaerzPUU .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaerzPUU .links {
  color: #000000;
}
.cid-uAxfVN0ziV {
  z-index: 1000;
  width: 100%;
}
.cid-uAxfVN0ziV nav.navbar {
  position: fixed;
}
.cid-uAxfVN0ziV .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-uAxfVN0ziV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAxfVN0ziV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAxfVN0ziV .dropdown-item:hover,
.cid-uAxfVN0ziV .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uAxfVN0ziV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAxfVN0ziV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAxfVN0ziV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAxfVN0ziV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAxfVN0ziV .nav-link {
  position: relative;
}
.cid-uAxfVN0ziV .container {
  display: flex;
  margin: auto;
}
.cid-uAxfVN0ziV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAxfVN0ziV .dropdown-menu,
.cid-uAxfVN0ziV .navbar.opened {
  background: #fafafa !important;
}
.cid-uAxfVN0ziV .nav-item:focus,
.cid-uAxfVN0ziV .nav-link:focus {
  outline: none;
}
.cid-uAxfVN0ziV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAxfVN0ziV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAxfVN0ziV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAxfVN0ziV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAxfVN0ziV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAxfVN0ziV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAxfVN0ziV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uAxfVN0ziV .navbar.opened {
  transition: all 0.3s;
}
.cid-uAxfVN0ziV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAxfVN0ziV .navbar .navbar-logo img {
  width: auto;
}
.cid-uAxfVN0ziV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAxfVN0ziV .navbar.collapsed {
  justify-content: center;
}
.cid-uAxfVN0ziV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAxfVN0ziV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAxfVN0ziV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uAxfVN0ziV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAxfVN0ziV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAxfVN0ziV .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-uAxfVN0ziV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAxfVN0ziV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAxfVN0ziV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAxfVN0ziV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAxfVN0ziV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAxfVN0ziV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAxfVN0ziV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAxfVN0ziV .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-uAxfVN0ziV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAxfVN0ziV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAxfVN0ziV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAxfVN0ziV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAxfVN0ziV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAxfVN0ziV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAxfVN0ziV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAxfVN0ziV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAxfVN0ziV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAxfVN0ziV .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-uAxfVN0ziV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAxfVN0ziV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAxfVN0ziV .dropdown-item.active,
.cid-uAxfVN0ziV .dropdown-item:active {
  background-color: transparent;
}
.cid-uAxfVN0ziV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAxfVN0ziV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAxfVN0ziV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAxfVN0ziV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uAxfVN0ziV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAxfVN0ziV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAxfVN0ziV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAxfVN0ziV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAxfVN0ziV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAxfVN0ziV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAxfVN0ziV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAxfVN0ziV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxfVN0ziV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAxfVN0ziV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAxfVN0ziV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxfVN0ziV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAxfVN0ziV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAxfVN0ziV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAxfVN0ziV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAxfVN0ziV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAxfVN0ziV .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-uAxfVN0ziV .navbar {
    height: 70px;
  }
  .cid-uAxfVN0ziV .navbar.opened {
    height: auto;
  }
  .cid-uAxfVN0ziV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAxfVNH4DK {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uAxfVNH4DK H2 {
  color: #000000;
}
.cid-uAxfVOhAzq {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uAxfVOhAzq img {
  object-fit: cover;
}
.cid-uACH63azOo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uACH63azOo img {
  width: 120px;
  margin: auto;
}
.cid-uACH63azOo .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uACH63azOo .card {
    max-width: 12.5%;
  }
}
.cid-uAxjWxCvuA {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxjWxCvuA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxjWxCvuA .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uAxjWxCvuA h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uAxjWxCvuA h1 {
    margin-bottom: 1rem;
  }
}
.cid-uAxjWxCvuA p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uAxjWxCvuA p {
    margin-bottom: 2rem;
  }
}
.cid-uAxjWxCvuA .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uAxjWxCvuA .image-wrapper,
.cid-uAxjWxCvuA img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAxjWxCvuA .image-wrapper,
  .cid-uAxjWxCvuA img {
    padding-bottom: 0.5rem;
  }
}
.cid-uAxjWxCvuA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAxjWxCvuA .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAxjWxCvuA {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAxjWxCvuA .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAxjWxCvuA .content-wrap {
    width: 100%;
  }
}
.cid-uAxjWxCvuA .mbr-section-subtitle,
.cid-uAxjWxCvuA .line {
  color: #291f1e;
}
.cid-uAxjWxCvuA .mbr-text,
.cid-uAxjWxCvuA .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uAxjWxCvuA .mbr-section-title {
  color: #291f1e;
}
.cid-uAxjWxCvuA .mbr-section-title,
.cid-uAxjWxCvuA .mbr-section-btn,
.cid-uAxjWxCvuA .line {
  text-align: left;
  color: #291f1e;
}
.cid-uAxjWxCvuA .mbr-text {
  text-align: left;
}
.cid-uAxkqerJ7g {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxkqerJ7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxkqerJ7g .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uAxkqerJ7g h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uAxkqerJ7g h1 {
    margin-bottom: 1rem;
  }
}
.cid-uAxkqerJ7g p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uAxkqerJ7g p {
    margin-bottom: 2rem;
  }
}
.cid-uAxkqerJ7g .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uAxkqerJ7g .image-wrapper,
.cid-uAxkqerJ7g img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAxkqerJ7g .image-wrapper,
  .cid-uAxkqerJ7g img {
    padding-bottom: 0.5rem;
  }
}
.cid-uAxkqerJ7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAxkqerJ7g .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAxkqerJ7g {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAxkqerJ7g .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAxkqerJ7g .content-wrap {
    width: 100%;
  }
}
.cid-uAxkqerJ7g .mbr-section-subtitle,
.cid-uAxkqerJ7g .line {
  color: #291f1e;
}
.cid-uAxkqerJ7g .mbr-text,
.cid-uAxkqerJ7g .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uAxkqerJ7g .mbr-section-title {
  color: #291f1e;
}
.cid-uAxkqerJ7g .mbr-section-title,
.cid-uAxkqerJ7g .mbr-section-btn,
.cid-uAxkqerJ7g .line {
  text-align: left;
  color: #291f1e;
}
.cid-uAxkqerJ7g .mbr-text {
  text-align: left;
}
.cid-uAxlD8sWhY {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxlD8sWhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxlD8sWhY .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uAxlD8sWhY h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uAxlD8sWhY h1 {
    margin-bottom: 1rem;
  }
}
.cid-uAxlD8sWhY p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uAxlD8sWhY p {
    margin-bottom: 2rem;
  }
}
.cid-uAxlD8sWhY .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uAxlD8sWhY .image-wrapper,
.cid-uAxlD8sWhY img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAxlD8sWhY .image-wrapper,
  .cid-uAxlD8sWhY img {
    padding-bottom: 0.5rem;
  }
}
.cid-uAxlD8sWhY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAxlD8sWhY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAxlD8sWhY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAxlD8sWhY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAxlD8sWhY .content-wrap {
    width: 100%;
  }
}
.cid-uAxlD8sWhY .mbr-section-subtitle,
.cid-uAxlD8sWhY .line {
  color: #291f1e;
}
.cid-uAxlD8sWhY .mbr-text,
.cid-uAxlD8sWhY .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uAxlD8sWhY .mbr-section-title {
  color: #291f1e;
}
.cid-uAxlD8sWhY .mbr-section-title,
.cid-uAxlD8sWhY .mbr-section-btn,
.cid-uAxlD8sWhY .line {
  text-align: left;
  color: #291f1e;
}
.cid-uAxlD8sWhY .mbr-text {
  text-align: left;
}
.cid-uAxojipS0q {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAxojipS0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxojipS0q .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uAxojipS0q h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uAxojipS0q h1 {
    margin-bottom: 1rem;
  }
}
.cid-uAxojipS0q p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uAxojipS0q p {
    margin-bottom: 2rem;
  }
}
.cid-uAxojipS0q .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uAxojipS0q .image-wrapper,
.cid-uAxojipS0q img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAxojipS0q .image-wrapper,
  .cid-uAxojipS0q img {
    padding-bottom: 0.5rem;
  }
}
.cid-uAxojipS0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAxojipS0q .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAxojipS0q {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAxojipS0q .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uAxojipS0q .content-wrap {
    width: 100%;
  }
}
.cid-uAxojipS0q .mbr-section-subtitle,
.cid-uAxojipS0q .line {
  color: #291f1e;
}
.cid-uAxojipS0q .mbr-text,
.cid-uAxojipS0q .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uAxojipS0q .mbr-section-title {
  color: #291f1e;
}
.cid-uAxojipS0q .mbr-section-title,
.cid-uAxojipS0q .mbr-section-btn,
.cid-uAxojipS0q .line {
  text-align: left;
  color: #291f1e;
}
.cid-uAxojipS0q .mbr-text {
  text-align: left;
}
.cid-uAxLtl19iu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAxKgheOB6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAxfVQc82n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAxfVQc82n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxfVQc82n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAxfVQc82n .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAxfVQc82n .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uAxfVQc82n .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAxfVQc82n .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAxfVQc82n .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uAxfVQc82n .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAxfVQc82n .mbr-section-title {
  color: #ffffff;
}
.cid-uAxfVQc82n .mbr-text,
.cid-uAxfVQc82n .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAxfVQc82n .mbr-section-title,
.cid-uAxfVQc82n .mbr-section-btn {
  text-align: center;
}
.cid-uAxfVQP9cN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uAxfVQP9cN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAxfVQP9cN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAxfVQP9cN .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uAxfVQP9cN .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAxfVQP9cN .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uAxfVQP9cN .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uAxfVQP9cN .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uAxfVQP9cN .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAxfVQP9cN .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uAxfVQP9cN .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uAxfVQP9cN .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uAxfVQP9cN .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uAxfVQP9cN .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uAxfVQP9cN .mbr-section-title {
  color: #000000;
}
.cid-uAxfVQP9cN .card-title {
  color: #000000;
}
.cid-uLn9XEfXxD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLn9XEfXxD .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLn9XEfXxD .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLn9XEfXxD .media-wrap img {
  height: 6rem;
}
.cid-uLn9XEfXxD .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLn9XEfXxD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLn9XEfXxD .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLn9XEfXxD .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLn9XEfXxD .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLn9XEfXxD .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLn9XEfXxD .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLn9XEfXxD .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLn9XEfXxD .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLn9XEfXxD .links {
  color: #000000;
}
.cid-uAwHW1Srpc {
  z-index: 1000;
  width: 100%;
}
.cid-uAwHW1Srpc nav.navbar {
  position: fixed;
}
.cid-uAwHW1Srpc .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-uAwHW1Srpc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAwHW1Srpc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAwHW1Srpc .dropdown-item:hover,
.cid-uAwHW1Srpc .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uAwHW1Srpc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAwHW1Srpc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAwHW1Srpc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAwHW1Srpc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAwHW1Srpc .nav-link {
  position: relative;
}
.cid-uAwHW1Srpc .container {
  display: flex;
  margin: auto;
}
.cid-uAwHW1Srpc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAwHW1Srpc .dropdown-menu,
.cid-uAwHW1Srpc .navbar.opened {
  background: #fafafa !important;
}
.cid-uAwHW1Srpc .nav-item:focus,
.cid-uAwHW1Srpc .nav-link:focus {
  outline: none;
}
.cid-uAwHW1Srpc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAwHW1Srpc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAwHW1Srpc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAwHW1Srpc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAwHW1Srpc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAwHW1Srpc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAwHW1Srpc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uAwHW1Srpc .navbar.opened {
  transition: all 0.3s;
}
.cid-uAwHW1Srpc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAwHW1Srpc .navbar .navbar-logo img {
  width: auto;
}
.cid-uAwHW1Srpc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAwHW1Srpc .navbar.collapsed {
  justify-content: center;
}
.cid-uAwHW1Srpc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAwHW1Srpc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwHW1Srpc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uAwHW1Srpc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwHW1Srpc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwHW1Srpc .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-uAwHW1Srpc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwHW1Srpc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAwHW1Srpc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAwHW1Srpc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAwHW1Srpc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwHW1Srpc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwHW1Srpc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwHW1Srpc .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-uAwHW1Srpc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAwHW1Srpc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwHW1Srpc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAwHW1Srpc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAwHW1Srpc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAwHW1Srpc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAwHW1Srpc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAwHW1Srpc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAwHW1Srpc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAwHW1Srpc .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-uAwHW1Srpc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAwHW1Srpc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwHW1Srpc .dropdown-item.active,
.cid-uAwHW1Srpc .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwHW1Srpc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwHW1Srpc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwHW1Srpc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwHW1Srpc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uAwHW1Srpc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAwHW1Srpc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwHW1Srpc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAwHW1Srpc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAwHW1Srpc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAwHW1Srpc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uAwHW1Srpc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAwHW1Srpc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAwHW1Srpc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAwHW1Srpc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAwHW1Srpc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAwHW1Srpc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAwHW1Srpc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAwHW1Srpc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAwHW1Srpc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAwHW1Srpc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAwHW1Srpc .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-uAwHW1Srpc .navbar {
    height: 70px;
  }
  .cid-uAwHW1Srpc .navbar.opened {
    height: auto;
  }
  .cid-uAwHW1Srpc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAwHW2rkRc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uAwHW2rkRc H2 {
  color: #000000;
}
.cid-uAwLlYu5ph {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAwLlYu5ph img {
  object-fit: cover;
}
.cid-uAwOv7gmVy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAwOv7gmVy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwOv7gmVy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uAwOv7gmVy .container {
    max-width: 1400px;
  }
}
.cid-uAwOv7gmVy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uAwOv7gmVy .row {
  justify-content: center;
}
.cid-uAwHW3LXuv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uAwXgdYShK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAwXgdYShK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwXgdYShK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwXgdYShK .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uAwXgdYShK .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uAwXgdYShK .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uAwXgdYShK .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uAwXgdYShK .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uAwXgdYShK .border-wrap {
    margin-top: 32px;
  }
}
.cid-uAwXgdYShK .mbr-section-title {
  color: #ffffff;
}
.cid-uAwXgdYShK .mbr-text,
.cid-uAwXgdYShK .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAwXgdYShK .mbr-section-title,
.cid-uAwXgdYShK .mbr-section-btn {
  text-align: center;
}
.cid-uAwWIL65bb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uAwWIL65bb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwWIL65bb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAwWIL65bb .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uAwWIL65bb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAwWIL65bb .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uAwWIL65bb .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uAwWIL65bb .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uAwWIL65bb .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAwWIL65bb .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uAwWIL65bb .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uAwWIL65bb .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uAwWIL65bb .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uAwWIL65bb .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uAwWIL65bb .mbr-section-title {
  color: #000000;
}
.cid-uAwWIL65bb .card-title {
  color: #000000;
}
.cid-uLna5guoQl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLna5guoQl .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLna5guoQl .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLna5guoQl .media-wrap img {
  height: 6rem;
}
.cid-uLna5guoQl .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLna5guoQl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLna5guoQl .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLna5guoQl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLna5guoQl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLna5guoQl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLna5guoQl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLna5guoQl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLna5guoQl .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLna5guoQl .links {
  color: #000000;
}
.cid-uA99PwNBVu {
  z-index: 1000;
  width: 100%;
}
.cid-uA99PwNBVu nav.navbar {
  position: fixed;
}
.cid-uA99PwNBVu .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-uA99PwNBVu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uA99PwNBVu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uA99PwNBVu .dropdown-item:hover,
.cid-uA99PwNBVu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uA99PwNBVu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uA99PwNBVu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uA99PwNBVu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uA99PwNBVu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uA99PwNBVu .nav-link {
  position: relative;
}
.cid-uA99PwNBVu .container {
  display: flex;
  margin: auto;
}
.cid-uA99PwNBVu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA99PwNBVu .dropdown-menu,
.cid-uA99PwNBVu .navbar.opened {
  background: #fafafa !important;
}
.cid-uA99PwNBVu .nav-item:focus,
.cid-uA99PwNBVu .nav-link:focus {
  outline: none;
}
.cid-uA99PwNBVu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA99PwNBVu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA99PwNBVu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA99PwNBVu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA99PwNBVu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA99PwNBVu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA99PwNBVu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uA99PwNBVu .navbar.opened {
  transition: all 0.3s;
}
.cid-uA99PwNBVu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA99PwNBVu .navbar .navbar-logo img {
  width: auto;
}
.cid-uA99PwNBVu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uA99PwNBVu .navbar.collapsed {
  justify-content: center;
}
.cid-uA99PwNBVu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA99PwNBVu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA99PwNBVu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uA99PwNBVu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA99PwNBVu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA99PwNBVu .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-uA99PwNBVu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA99PwNBVu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA99PwNBVu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uA99PwNBVu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA99PwNBVu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA99PwNBVu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA99PwNBVu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA99PwNBVu .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-uA99PwNBVu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uA99PwNBVu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uA99PwNBVu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA99PwNBVu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uA99PwNBVu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA99PwNBVu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA99PwNBVu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uA99PwNBVu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uA99PwNBVu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uA99PwNBVu .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-uA99PwNBVu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uA99PwNBVu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uA99PwNBVu .dropdown-item.active,
.cid-uA99PwNBVu .dropdown-item:active {
  background-color: transparent;
}
.cid-uA99PwNBVu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA99PwNBVu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA99PwNBVu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA99PwNBVu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uA99PwNBVu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uA99PwNBVu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uA99PwNBVu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA99PwNBVu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uA99PwNBVu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA99PwNBVu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uA99PwNBVu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA99PwNBVu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA99PwNBVu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA99PwNBVu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA99PwNBVu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA99PwNBVu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA99PwNBVu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA99PwNBVu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA99PwNBVu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uA99PwNBVu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA99PwNBVu .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-uA99PwNBVu .navbar {
    height: 70px;
  }
  .cid-uA99PwNBVu .navbar.opened {
    height: auto;
  }
  .cid-uA99PwNBVu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA9dqBuiLQ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uA9dqBuiLQ H2 {
  color: #000000;
}
.cid-uA9gYNkYbV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9gIL4YpG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9gIL4YpG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA9gIL4YpG .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-uA9gIL4YpG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uA9gIL4YpG .row {
  flex-direction: row-reverse;
}
.cid-uA9gIL4YpG img {
  width: 100%;
}
.cid-uA9hhby3Za {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9qY615P0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9tJ2OT87 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9tJ2OT87 blockquote {
  border-color: #313f18;
  border-radius: 4px;
  background-color: #effaff;
}
.cid-uA9tY9XRe5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9tY9XRe5 blockquote {
  border-color: #313f18;
  border-radius: 4px;
  background-color: #effaff;
}
.cid-uA9tY9XRe5 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uA9ub2Lrwv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9ub2Lrwv blockquote {
  border-color: #313f18;
  border-radius: 4px;
  background-color: #effaff;
}
.cid-uA9ub2Lrwv .mbr-text {
  text-align: left;
}
.cid-uA9ucqFOFG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9ucqFOFG blockquote {
  border-color: #313f18;
  border-radius: 4px;
  background-color: #effaff;
}
.cid-uA9ucqFOFG .mbr-text {
  text-align: left;
}
.cid-uA9udfAz9v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uA9udfAz9v blockquote {
  border-color: #313f18;
  border-radius: 4px;
  background-color: #effaff;
}
.cid-uA9udfAz9v .mbr-text {
  text-align: left;
}
.cid-uAqL5GtHZh {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uAqL5GtHZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAqL5GtHZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAqL5GtHZh .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uAqL5GtHZh img {
  margin: auto;
  width: 140px;
}
.cid-uAqL5GtHZh .row {
  align-items: flex-start;
}
.cid-uAqL5GtHZh .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-uAqL5GtHZh .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uAqL5GtHZh .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAqL5GtHZh .item-wrapper {
    padding: 1rem;
  }
}
.cid-uLnaZtoYv7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaZtoYv7 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaZtoYv7 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaZtoYv7 .media-wrap img {
  height: 6rem;
}
.cid-uLnaZtoYv7 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaZtoYv7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaZtoYv7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaZtoYv7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaZtoYv7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaZtoYv7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaZtoYv7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaZtoYv7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaZtoYv7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaZtoYv7 .links {
  color: #000000;
}
.cid-uA4HQQU2fH {
  z-index: 1000;
  width: 100%;
}
.cid-uA4HQQU2fH nav.navbar {
  position: fixed;
}
.cid-uA4HQQU2fH .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-uA4HQQU2fH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uA4HQQU2fH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uA4HQQU2fH .dropdown-item:hover,
.cid-uA4HQQU2fH .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uA4HQQU2fH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uA4HQQU2fH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uA4HQQU2fH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uA4HQQU2fH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uA4HQQU2fH .nav-link {
  position: relative;
}
.cid-uA4HQQU2fH .container {
  display: flex;
  margin: auto;
}
.cid-uA4HQQU2fH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA4HQQU2fH .dropdown-menu,
.cid-uA4HQQU2fH .navbar.opened {
  background: #fafafa !important;
}
.cid-uA4HQQU2fH .nav-item:focus,
.cid-uA4HQQU2fH .nav-link:focus {
  outline: none;
}
.cid-uA4HQQU2fH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA4HQQU2fH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA4HQQU2fH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA4HQQU2fH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA4HQQU2fH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA4HQQU2fH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA4HQQU2fH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uA4HQQU2fH .navbar.opened {
  transition: all 0.3s;
}
.cid-uA4HQQU2fH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA4HQQU2fH .navbar .navbar-logo img {
  width: auto;
}
.cid-uA4HQQU2fH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uA4HQQU2fH .navbar.collapsed {
  justify-content: center;
}
.cid-uA4HQQU2fH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA4HQQU2fH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA4HQQU2fH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uA4HQQU2fH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA4HQQU2fH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA4HQQU2fH .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-uA4HQQU2fH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA4HQQU2fH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA4HQQU2fH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uA4HQQU2fH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA4HQQU2fH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA4HQQU2fH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA4HQQU2fH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA4HQQU2fH .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-uA4HQQU2fH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uA4HQQU2fH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uA4HQQU2fH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA4HQQU2fH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uA4HQQU2fH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA4HQQU2fH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA4HQQU2fH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uA4HQQU2fH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uA4HQQU2fH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uA4HQQU2fH .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-uA4HQQU2fH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uA4HQQU2fH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uA4HQQU2fH .dropdown-item.active,
.cid-uA4HQQU2fH .dropdown-item:active {
  background-color: transparent;
}
.cid-uA4HQQU2fH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA4HQQU2fH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA4HQQU2fH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA4HQQU2fH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uA4HQQU2fH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uA4HQQU2fH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uA4HQQU2fH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA4HQQU2fH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uA4HQQU2fH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA4HQQU2fH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uA4HQQU2fH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA4HQQU2fH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA4HQQU2fH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA4HQQU2fH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA4HQQU2fH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA4HQQU2fH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA4HQQU2fH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA4HQQU2fH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA4HQQU2fH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uA4HQQU2fH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA4HQQU2fH .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-uA4HQQU2fH .navbar {
    height: 70px;
  }
  .cid-uA4HQQU2fH .navbar.opened {
    height: auto;
  }
  .cid-uA4HQQU2fH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAvo5T9lbB {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uAvo5T9lbB H2 {
  color: #000000;
}
.cid-uA4Im8hT8R {
  padding-top: 105px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uA4Im8hT8R .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uA4Im8hT8R .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-uA4Im8hT8R .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uA4Im8hT8R .inner-container {
    width: 100% !important;
  }
}
.cid-uAvA1JOlUd {
  padding-top: 75px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-uAvA1JOlUd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uAvA1JOlUd .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-uAvA1JOlUd textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-uAvA1JOlUd .form-row {
    flex-direction: column;
  }
}
.cid-uAvA1JOlUd h4 {
  margin-bottom: 2rem;
}
.cid-uAvA1JOlUd .form-control,
.cid-uAvA1JOlUd .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-uAvA1JOlUd .form-control,
.cid-uAvA1JOlUd .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uAvA1JOlUd .form-control::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input::-webkit-input-placeholder,
.cid-uAvA1JOlUd .form-control::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uAvA1JOlUd .form-control:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:-moz-placeholder,
.cid-uAvA1JOlUd .form-control:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uAvA1JOlUd .form-control:hover,
.cid-uAvA1JOlUd .field-input:hover,
.cid-uAvA1JOlUd .form-control:focus,
.cid-uAvA1JOlUd .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-uAvA1JOlUd .form-control:hover::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input:hover::-webkit-input-placeholder,
.cid-uAvA1JOlUd .form-control:focus::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input:focus::-webkit-input-placeholder,
.cid-uAvA1JOlUd .form-control:hover::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input:hover::-webkit-input-placeholder,
.cid-uAvA1JOlUd .form-control:focus::-webkit-input-placeholder,
.cid-uAvA1JOlUd .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-uAvA1JOlUd .form-control:hover:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:hover:-moz-placeholder,
.cid-uAvA1JOlUd .form-control:focus:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:focus:-moz-placeholder,
.cid-uAvA1JOlUd .form-control:hover:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:hover:-moz-placeholder,
.cid-uAvA1JOlUd .form-control:focus:-moz-placeholder,
.cid-uAvA1JOlUd .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-uAvA1JOlUd .jq-number__spin:hover,
.cid-uAvA1JOlUd .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uAvA1JOlUd .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uAvA1JOlUd .jq-selectbox li,
.cid-uAvA1JOlUd .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uAvA1JOlUd .jq-selectbox li:hover,
.cid-uAvA1JOlUd .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-uAvA1JOlUd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uAvA1JOlUd .jq-number__spin.minus:hover:after,
.cid-uAvA1JOlUd .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uAvA1JOlUd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uAvA1JOlUd .jq-number__spin.minus:after,
.cid-uAvA1JOlUd .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-uAvA1JOlUd input::-webkit-clear-button {
  display: none;
}
.cid-uAvA1JOlUd input::-webkit-inner-spin-button {
  display: none;
}
.cid-uAvA1JOlUd input::-webkit-outer-spin-button {
  display: none;
}
.cid-uAvA1JOlUd input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uAvA1JOlUd H4 {
  color: #000000;
}
.cid-uAwoTMkRpT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uAwoTMkRpT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwoTMkRpT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAwoTMkRpT .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uAwoTMkRpT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAwoTMkRpT .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uAwoTMkRpT .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uAwoTMkRpT .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uAwoTMkRpT .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uAwoTMkRpT .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uAwoTMkRpT .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uAwoTMkRpT .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uAwoTMkRpT .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uAwoTMkRpT .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uAwoTMkRpT .mbr-section-title {
  color: #000000;
}
.cid-uAwoTMkRpT .card-title {
  color: #000000;
}
.cid-uA4HQWYjg8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #effaff;
}
.cid-uA4HQWYjg8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uA4HQWYjg8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uA4HQWYjg8 .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-uA4HQWYjg8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uA4HQWYjg8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLnb4Pw4iE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnb4Pw4iE .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnb4Pw4iE .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnb4Pw4iE .media-wrap img {
  height: 6rem;
}
.cid-uLnb4Pw4iE .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnb4Pw4iE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnb4Pw4iE .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnb4Pw4iE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnb4Pw4iE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnb4Pw4iE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnb4Pw4iE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnb4Pw4iE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnb4Pw4iE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnb4Pw4iE .links {
  color: #000000;
}
.cid-uACTnAzPX0 {
  z-index: 1000;
  width: 100%;
}
.cid-uACTnAzPX0 nav.navbar {
  position: fixed;
}
.cid-uACTnAzPX0 .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-uACTnAzPX0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uACTnAzPX0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uACTnAzPX0 .dropdown-item:hover,
.cid-uACTnAzPX0 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uACTnAzPX0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uACTnAzPX0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uACTnAzPX0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uACTnAzPX0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uACTnAzPX0 .nav-link {
  position: relative;
}
.cid-uACTnAzPX0 .container {
  display: flex;
  margin: auto;
}
.cid-uACTnAzPX0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uACTnAzPX0 .dropdown-menu,
.cid-uACTnAzPX0 .navbar.opened {
  background: #fafafa !important;
}
.cid-uACTnAzPX0 .nav-item:focus,
.cid-uACTnAzPX0 .nav-link:focus {
  outline: none;
}
.cid-uACTnAzPX0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uACTnAzPX0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uACTnAzPX0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uACTnAzPX0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uACTnAzPX0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uACTnAzPX0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uACTnAzPX0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uACTnAzPX0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uACTnAzPX0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uACTnAzPX0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uACTnAzPX0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uACTnAzPX0 .navbar.collapsed {
  justify-content: center;
}
.cid-uACTnAzPX0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uACTnAzPX0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uACTnAzPX0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uACTnAzPX0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uACTnAzPX0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uACTnAzPX0 .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-uACTnAzPX0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uACTnAzPX0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uACTnAzPX0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uACTnAzPX0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uACTnAzPX0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uACTnAzPX0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uACTnAzPX0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uACTnAzPX0 .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-uACTnAzPX0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uACTnAzPX0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uACTnAzPX0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uACTnAzPX0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uACTnAzPX0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uACTnAzPX0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uACTnAzPX0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uACTnAzPX0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uACTnAzPX0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uACTnAzPX0 .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-uACTnAzPX0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uACTnAzPX0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uACTnAzPX0 .dropdown-item.active,
.cid-uACTnAzPX0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uACTnAzPX0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uACTnAzPX0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uACTnAzPX0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uACTnAzPX0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uACTnAzPX0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uACTnAzPX0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uACTnAzPX0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uACTnAzPX0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uACTnAzPX0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uACTnAzPX0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uACTnAzPX0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uACTnAzPX0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uACTnAzPX0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uACTnAzPX0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uACTnAzPX0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uACTnAzPX0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uACTnAzPX0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uACTnAzPX0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uACTnAzPX0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uACTnAzPX0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uACTnAzPX0 .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-uACTnAzPX0 .navbar {
    height: 70px;
  }
  .cid-uACTnAzPX0 .navbar.opened {
    height: auto;
  }
  .cid-uACTnAzPX0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uACTnB7Mkh {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uACTnB7Mkh H2 {
  color: #000000;
}
.cid-uACTnBw6ZA {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uACTnBw6ZA img {
  object-fit: cover;
}
.cid-uACXwgb1Ur {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uACXwgb1Ur img,
.cid-uACXwgb1Ur .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uACXwgb1Ur .item:focus,
.cid-uACXwgb1Ur span:focus {
  outline: none;
}
.cid-uACXwgb1Ur .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uACXwgb1Ur .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uACXwgb1Ur .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uACXwgb1Ur .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uACXwgb1Ur .mbr-section-title {
  color: #232323;
}
.cid-uACXwgb1Ur .mbr-text,
.cid-uACXwgb1Ur .mbr-section-btn {
  text-align: left;
}
.cid-uACXwgb1Ur .item-title {
  text-align: center;
  color: #000000;
}
.cid-uACXwgb1Ur .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uAN8A0Zv3G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAN8A0Zv3G .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uAN8A0Zv3G .container {
    padding: 0 24px;
  }
}
.cid-uAN8A0Zv3G .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-uAN8A0Zv3G .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAN8A0Zv3G .embla__slide .slide-content {
  width: 100%;
}
.cid-uAN8A0Zv3G .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uAN8A0Zv3G .embla__button--next,
.cid-uAN8A0Zv3G .embla__button--prev {
  display: flex;
}
.cid-uAN8A0Zv3G .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uAN8A0Zv3G .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAN8A0Zv3G .embla__button:hover {
  opacity: .5 !important;
}
.cid-uAN8A0Zv3G .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-uAN8A0Zv3G .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-uAN8A0Zv3G .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-uAN8A0Zv3G .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uAN8A0Zv3G .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uAN8A0Zv3G .embla {
    padding: 0;
  }
}
.cid-uAN8A0Zv3G .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uAN8A0Zv3G .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAN8A0Zv3G .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAN8A0Zv3G .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uADDl4VtN0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uACTnEiGTJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uADpIHArMe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uADpIHArMe img {
  object-fit: cover;
}
.cid-uACTnF9iOf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uACTnF9iOf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uACTnF9iOf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uACTnF9iOf .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uACTnF9iOf .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uACTnF9iOf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uACTnF9iOf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uACTnF9iOf .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uACTnF9iOf .border-wrap {
    margin-top: 32px;
  }
}
.cid-uACTnF9iOf .mbr-section-title {
  color: #ffffff;
}
.cid-uACTnF9iOf .mbr-text,
.cid-uACTnF9iOf .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uACTnF9iOf .mbr-section-title,
.cid-uACTnF9iOf .mbr-section-btn {
  text-align: center;
}
.cid-uACTnFBK96 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uACTnFBK96 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uACTnFBK96 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uACTnFBK96 .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uACTnFBK96 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uACTnFBK96 .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uACTnFBK96 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uACTnFBK96 .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uACTnFBK96 .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uACTnFBK96 .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uACTnFBK96 .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uACTnFBK96 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uACTnFBK96 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uACTnFBK96 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uACTnFBK96 .mbr-section-title {
  color: #000000;
}
.cid-uACTnFBK96 .card-title {
  color: #000000;
}
.cid-uLnanC87iO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnanC87iO .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnanC87iO .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnanC87iO .media-wrap img {
  height: 6rem;
}
.cid-uLnanC87iO .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnanC87iO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnanC87iO .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnanC87iO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnanC87iO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnanC87iO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnanC87iO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnanC87iO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnanC87iO .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnanC87iO .links {
  color: #000000;
}
.cid-uBhua0qZJN {
  z-index: 1000;
  width: 100%;
}
.cid-uBhua0qZJN nav.navbar {
  position: fixed;
}
.cid-uBhua0qZJN .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-uBhua0qZJN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBhua0qZJN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBhua0qZJN .dropdown-item:hover,
.cid-uBhua0qZJN .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBhua0qZJN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBhua0qZJN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBhua0qZJN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBhua0qZJN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBhua0qZJN .nav-link {
  position: relative;
}
.cid-uBhua0qZJN .container {
  display: flex;
  margin: auto;
}
.cid-uBhua0qZJN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBhua0qZJN .dropdown-menu,
.cid-uBhua0qZJN .navbar.opened {
  background: #fafafa !important;
}
.cid-uBhua0qZJN .nav-item:focus,
.cid-uBhua0qZJN .nav-link:focus {
  outline: none;
}
.cid-uBhua0qZJN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBhua0qZJN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBhua0qZJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBhua0qZJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBhua0qZJN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBhua0qZJN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBhua0qZJN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uBhua0qZJN .navbar.opened {
  transition: all 0.3s;
}
.cid-uBhua0qZJN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBhua0qZJN .navbar .navbar-logo img {
  width: auto;
}
.cid-uBhua0qZJN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBhua0qZJN .navbar.collapsed {
  justify-content: center;
}
.cid-uBhua0qZJN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBhua0qZJN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBhua0qZJN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uBhua0qZJN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBhua0qZJN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBhua0qZJN .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-uBhua0qZJN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBhua0qZJN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBhua0qZJN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBhua0qZJN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBhua0qZJN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBhua0qZJN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBhua0qZJN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBhua0qZJN .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-uBhua0qZJN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBhua0qZJN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBhua0qZJN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBhua0qZJN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBhua0qZJN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBhua0qZJN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBhua0qZJN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBhua0qZJN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBhua0qZJN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBhua0qZJN .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-uBhua0qZJN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBhua0qZJN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBhua0qZJN .dropdown-item.active,
.cid-uBhua0qZJN .dropdown-item:active {
  background-color: transparent;
}
.cid-uBhua0qZJN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBhua0qZJN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBhua0qZJN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBhua0qZJN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uBhua0qZJN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBhua0qZJN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBhua0qZJN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBhua0qZJN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBhua0qZJN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBhua0qZJN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBhua0qZJN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBhua0qZJN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBhua0qZJN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBhua0qZJN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBhua0qZJN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBhua0qZJN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBhua0qZJN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBhua0qZJN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBhua0qZJN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBhua0qZJN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBhua0qZJN .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-uBhua0qZJN .navbar {
    height: 70px;
  }
  .cid-uBhua0qZJN .navbar.opened {
    height: auto;
  }
  .cid-uBhua0qZJN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBhua0WAJE {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uBhua0WAJE H2 {
  color: #000000;
}
.cid-uBhua1naZ9 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uBhua1naZ9 img {
  object-fit: cover;
}
.cid-uBhua2xxhY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBhua2xxhY img,
.cid-uBhua2xxhY .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uBhua2xxhY .item:focus,
.cid-uBhua2xxhY span:focus {
  outline: none;
}
.cid-uBhua2xxhY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBhua2xxhY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBhua2xxhY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBhua2xxhY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBhua2xxhY .mbr-section-title {
  color: #232323;
}
.cid-uBhua2xxhY .mbr-text,
.cid-uBhua2xxhY .mbr-section-btn {
  text-align: left;
}
.cid-uBhua2xxhY .item-title {
  text-align: center;
  color: #000000;
}
.cid-uBhua2xxhY .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBhua2xxhY .mbr-section-subtitle {
  text-align: left;
}
.cid-uBhua3a4uc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBhua3CWFk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBhua3CWFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhua3CWFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBhua3CWFk .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBhua3CWFk .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uBhua3CWFk .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBhua3CWFk .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBhua3CWFk .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uBhua3CWFk .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBhua3CWFk .mbr-section-title {
  color: #ffffff;
}
.cid-uBhua3CWFk .mbr-text,
.cid-uBhua3CWFk .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBhua3CWFk .mbr-section-title,
.cid-uBhua3CWFk .mbr-section-btn {
  text-align: center;
}
.cid-uBhua44Vqt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uBhua44Vqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBhua44Vqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBhua44Vqt .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uBhua44Vqt .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBhua44Vqt .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBhua44Vqt .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uBhua44Vqt .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uBhua44Vqt .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBhua44Vqt .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uBhua44Vqt .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uBhua44Vqt .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uBhua44Vqt .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uBhua44Vqt .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uBhua44Vqt .mbr-section-title {
  color: #000000;
}
.cid-uBhua44Vqt .card-title {
  color: #000000;
}
.cid-uLnaQz1fy2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaQz1fy2 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaQz1fy2 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaQz1fy2 .media-wrap img {
  height: 6rem;
}
.cid-uLnaQz1fy2 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaQz1fy2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaQz1fy2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaQz1fy2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaQz1fy2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaQz1fy2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaQz1fy2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaQz1fy2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaQz1fy2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaQz1fy2 .links {
  color: #000000;
}
.cid-uBn21xMJr0 {
  z-index: 1000;
  width: 100%;
}
.cid-uBn21xMJr0 nav.navbar {
  position: fixed;
}
.cid-uBn21xMJr0 .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-uBn21xMJr0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBn21xMJr0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBn21xMJr0 .dropdown-item:hover,
.cid-uBn21xMJr0 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBn21xMJr0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBn21xMJr0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBn21xMJr0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBn21xMJr0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBn21xMJr0 .nav-link {
  position: relative;
}
.cid-uBn21xMJr0 .container {
  display: flex;
  margin: auto;
}
.cid-uBn21xMJr0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBn21xMJr0 .dropdown-menu,
.cid-uBn21xMJr0 .navbar.opened {
  background: #fafafa !important;
}
.cid-uBn21xMJr0 .nav-item:focus,
.cid-uBn21xMJr0 .nav-link:focus {
  outline: none;
}
.cid-uBn21xMJr0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBn21xMJr0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBn21xMJr0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBn21xMJr0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBn21xMJr0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBn21xMJr0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBn21xMJr0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uBn21xMJr0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBn21xMJr0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBn21xMJr0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBn21xMJr0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBn21xMJr0 .navbar.collapsed {
  justify-content: center;
}
.cid-uBn21xMJr0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBn21xMJr0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBn21xMJr0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uBn21xMJr0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBn21xMJr0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBn21xMJr0 .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-uBn21xMJr0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBn21xMJr0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBn21xMJr0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBn21xMJr0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBn21xMJr0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBn21xMJr0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBn21xMJr0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBn21xMJr0 .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-uBn21xMJr0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBn21xMJr0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBn21xMJr0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBn21xMJr0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBn21xMJr0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBn21xMJr0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBn21xMJr0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBn21xMJr0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBn21xMJr0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBn21xMJr0 .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-uBn21xMJr0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBn21xMJr0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBn21xMJr0 .dropdown-item.active,
.cid-uBn21xMJr0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBn21xMJr0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBn21xMJr0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBn21xMJr0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBn21xMJr0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uBn21xMJr0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBn21xMJr0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBn21xMJr0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBn21xMJr0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBn21xMJr0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBn21xMJr0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBn21xMJr0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBn21xMJr0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBn21xMJr0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBn21xMJr0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBn21xMJr0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBn21xMJr0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBn21xMJr0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBn21xMJr0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBn21xMJr0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBn21xMJr0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBn21xMJr0 .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-uBn21xMJr0 .navbar {
    height: 70px;
  }
  .cid-uBn21xMJr0 .navbar.opened {
    height: auto;
  }
  .cid-uBn21xMJr0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBn21ypeJO {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uBn21ypeJO H2 {
  color: #000000;
}
.cid-uBn21yPs1l {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uBn21yPs1l img {
  object-fit: cover;
}
.cid-uBn21zf73w {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBn21zf73w .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBn21zf73w .container {
    padding: 0 24px;
  }
}
.cid-uBn21zf73w .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-uBn21zf73w .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBn21zf73w .embla__slide .slide-content {
  width: 100%;
}
.cid-uBn21zf73w .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uBn21zf73w .embla__button--next,
.cid-uBn21zf73w .embla__button--prev {
  display: flex;
}
.cid-uBn21zf73w .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uBn21zf73w .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBn21zf73w .embla__button:hover {
  opacity: .5 !important;
}
.cid-uBn21zf73w .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-uBn21zf73w .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-uBn21zf73w .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-uBn21zf73w .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uBn21zf73w .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBn21zf73w .embla {
    padding: 0;
  }
}
.cid-uBn21zf73w .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uBn21zf73w .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBn21zf73w .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBn21zf73w .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBn21zVS18 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBn21AjnCx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBn21AjnCx .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-uBn21AjnCx .mbr-section-title {
  text-align: center;
}
.cid-uBn21AjnCx .mbr-section-subtitle {
  text-align: center;
}
.cid-uBn21AjnCx .card-title {
  margin-bottom: 1rem;
  color: #33d5ad;
}
.cid-uBn21AjnCx .card-subtitle {
  color: #1f1437;
}
.cid-uBn21AjnCx .mbr-text {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: #1f1437;
}
.cid-uBn21AjnCx .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uBn21AjnCx .card {
  height: 100%;
  background-color: #ffffff;
  border-width: 1px;
  border-style: dashed;
  border-color: #ffffff;
  border-radius: 30px;
  padding: 1rem 0.5rem;
  background: transparent;
}
.cid-uBn21AjnCx .card-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uBn21AjnCx .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cid-uBn21AjnCx .card-wrapper {
    flex-direction: column;
  }
}
.cid-uBn21AjnCx .social-row {
  width: 50px;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-uBn21AjnCx .social-row {
    width: 100%;
    flex-direction: row;
    justify-content: center !important;
  }
}
.cid-uBn21AjnCx .social-row .soc-item {
  width: 34px;
  height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-uBn21AjnCx .social-row .soc-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-uBn21AjnCx .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #33d5ad;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-uBn21AjnCx .social-row .soc-item:hover .mbr-iconfont {
  color: #cd8ad1;
}
.cid-uBn21AjnCx .image-wrapper {
  width: 35%;
  aspect-ratio: 1;
  flex-shrink: 0;
  padding: 1rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-uBn21AjnCx .image-wrapper {
    width: 45%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-uBn21AjnCx .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uBn21AjnCx .image-wrapper {
    width: 100%;
  }
}
.cid-uBn21AjnCx .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.cid-uBn21AjnCx .card-text {
  padding: 1rem;
}
.cid-uBn21AjnCx div[class*="col"] {
  margin-bottom: 2rem;
}
.cid-uBn21BxNRa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uBn21BxNRa img {
  object-fit: cover;
}
.cid-uBn21B5KSS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBnBqHssku {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBnBqHssku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBnBqHssku .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-uBnBqHssku .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBnBqHssku .row {
  flex-direction: row-reverse;
}
.cid-uBnBqHssku img {
  width: 100%;
}
.cid-uBn21Cso7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBn21Cso7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBn21Cso7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBn21Cso7q .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBn21Cso7q .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uBn21Cso7q .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBn21Cso7q .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBn21Cso7q .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uBn21Cso7q .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBn21Cso7q .mbr-section-title {
  color: #ffffff;
}
.cid-uBn21Cso7q .mbr-text,
.cid-uBn21Cso7q .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBn21Cso7q .mbr-section-title,
.cid-uBn21Cso7q .mbr-section-btn {
  text-align: center;
}
.cid-uBn21DaYAV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uBn21DaYAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBn21DaYAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBn21DaYAV .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uBn21DaYAV .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBn21DaYAV .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBn21DaYAV .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uBn21DaYAV .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uBn21DaYAV .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBn21DaYAV .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uBn21DaYAV .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uBn21DaYAV .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uBn21DaYAV .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uBn21DaYAV .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uBn21DaYAV .mbr-section-title {
  color: #000000;
}
.cid-uBn21DaYAV .card-title {
  color: #000000;
}
.cid-uLnaUDCDME {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaUDCDME .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaUDCDME .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaUDCDME .media-wrap img {
  height: 6rem;
}
.cid-uLnaUDCDME .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaUDCDME .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaUDCDME .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaUDCDME .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaUDCDME .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaUDCDME .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaUDCDME .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaUDCDME .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaUDCDME .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaUDCDME .links {
  color: #000000;
}
.cid-uBt83o71iF {
  z-index: 1000;
  width: 100%;
}
.cid-uBt83o71iF nav.navbar {
  position: fixed;
}
.cid-uBt83o71iF .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-uBt83o71iF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBt83o71iF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBt83o71iF .dropdown-item:hover,
.cid-uBt83o71iF .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBt83o71iF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBt83o71iF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBt83o71iF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBt83o71iF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBt83o71iF .nav-link {
  position: relative;
}
.cid-uBt83o71iF .container {
  display: flex;
  margin: auto;
}
.cid-uBt83o71iF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBt83o71iF .dropdown-menu,
.cid-uBt83o71iF .navbar.opened {
  background: #fafafa !important;
}
.cid-uBt83o71iF .nav-item:focus,
.cid-uBt83o71iF .nav-link:focus {
  outline: none;
}
.cid-uBt83o71iF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBt83o71iF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBt83o71iF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBt83o71iF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBt83o71iF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBt83o71iF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBt83o71iF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uBt83o71iF .navbar.opened {
  transition: all 0.3s;
}
.cid-uBt83o71iF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBt83o71iF .navbar .navbar-logo img {
  width: auto;
}
.cid-uBt83o71iF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBt83o71iF .navbar.collapsed {
  justify-content: center;
}
.cid-uBt83o71iF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBt83o71iF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBt83o71iF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uBt83o71iF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBt83o71iF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBt83o71iF .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-uBt83o71iF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBt83o71iF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBt83o71iF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBt83o71iF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBt83o71iF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBt83o71iF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBt83o71iF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBt83o71iF .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-uBt83o71iF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBt83o71iF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBt83o71iF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBt83o71iF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBt83o71iF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBt83o71iF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBt83o71iF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBt83o71iF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBt83o71iF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBt83o71iF .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-uBt83o71iF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBt83o71iF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBt83o71iF .dropdown-item.active,
.cid-uBt83o71iF .dropdown-item:active {
  background-color: transparent;
}
.cid-uBt83o71iF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBt83o71iF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBt83o71iF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBt83o71iF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uBt83o71iF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBt83o71iF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBt83o71iF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBt83o71iF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBt83o71iF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBt83o71iF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBt83o71iF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBt83o71iF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBt83o71iF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBt83o71iF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBt83o71iF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBt83o71iF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBt83o71iF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBt83o71iF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBt83o71iF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBt83o71iF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBt83o71iF .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-uBt83o71iF .navbar {
    height: 70px;
  }
  .cid-uBt83o71iF .navbar.opened {
    height: auto;
  }
  .cid-uBt83o71iF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBt83oC2hF {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uBt83oC2hF H2 {
  color: #000000;
}
.cid-uBt83p0hlW {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uBt83p0hlW img {
  object-fit: cover;
}
.cid-uBt83prFJu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBt83prFJu .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBt83prFJu .container {
    padding: 0 24px;
  }
}
.cid-uBt83prFJu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 767px) {
  .cid-uBt83prFJu .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBt83prFJu .embla__slide .slide-content {
  width: 100%;
}
.cid-uBt83prFJu .embla__slide .slide-content .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uBt83prFJu .embla__button--next,
.cid-uBt83prFJu .embla__button--prev {
  display: flex;
}
.cid-uBt83prFJu .embla__button {
  bottom: 0;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uBt83prFJu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBt83prFJu .embla__button:hover {
  opacity: .5 !important;
}
.cid-uBt83prFJu .embla__button.embla__button--prev {
  right: 8rem;
}
@media (max-width: 992px) {
  .cid-uBt83prFJu .embla__button.embla__button--prev {
    right: 4rem;
  }
}
.cid-uBt83prFJu .embla__button.embla__button--next {
  right: 64px;
}
@media (max-width: 992px) {
  .cid-uBt83prFJu .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uBt83prFJu .embla {
  position: relative;
  width: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBt83prFJu .embla {
    padding: 0;
  }
}
.cid-uBt83prFJu .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uBt83prFJu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBt83prFJu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBt83prFJu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBtyT3rOUN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBtyT3rOUN img,
.cid-uBtyT3rOUN .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uBtyT3rOUN .item:focus,
.cid-uBtyT3rOUN span:focus {
  outline: none;
}
.cid-uBtyT3rOUN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBtyT3rOUN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBtyT3rOUN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBtyT3rOUN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBtyT3rOUN .mbr-section-title {
  color: #232323;
}
.cid-uBtyT3rOUN .mbr-text,
.cid-uBtyT3rOUN .mbr-section-btn {
  text-align: left;
}
.cid-uBtyT3rOUN .item-title {
  text-align: center;
  color: #000000;
}
.cid-uBtyT3rOUN .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBt83q6Ygq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBt83sDHMS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBt83sDHMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBt83sDHMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBt83sDHMS .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBt83sDHMS .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uBt83sDHMS .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBt83sDHMS .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBt83sDHMS .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uBt83sDHMS .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBt83sDHMS .mbr-section-title {
  color: #ffffff;
}
.cid-uBt83sDHMS .mbr-text,
.cid-uBt83sDHMS .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBt83sDHMS .mbr-section-title,
.cid-uBt83sDHMS .mbr-section-btn {
  text-align: center;
}
.cid-uBt83t6Jpz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uBt83t6Jpz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBt83t6Jpz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBt83t6Jpz .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uBt83t6Jpz .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBt83t6Jpz .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBt83t6Jpz .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uBt83t6Jpz .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uBt83t6Jpz .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBt83t6Jpz .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uBt83t6Jpz .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uBt83t6Jpz .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uBt83t6Jpz .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uBt83t6Jpz .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uBt83t6Jpz .mbr-section-title {
  color: #000000;
}
.cid-uBt83t6Jpz .card-title {
  color: #000000;
}
.cid-uLnaJOhRLL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaJOhRLL .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaJOhRLL .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaJOhRLL .media-wrap img {
  height: 6rem;
}
.cid-uLnaJOhRLL .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaJOhRLL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaJOhRLL .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaJOhRLL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaJOhRLL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaJOhRLL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaJOhRLL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaJOhRLL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaJOhRLL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaJOhRLL .links {
  color: #000000;
}
.cid-uBPovCgyj9 {
  z-index: 1000;
  width: 100%;
}
.cid-uBPovCgyj9 nav.navbar {
  position: fixed;
}
.cid-uBPovCgyj9 .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-uBPovCgyj9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBPovCgyj9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBPovCgyj9 .dropdown-item:hover,
.cid-uBPovCgyj9 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBPovCgyj9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBPovCgyj9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBPovCgyj9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBPovCgyj9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBPovCgyj9 .nav-link {
  position: relative;
}
.cid-uBPovCgyj9 .container {
  display: flex;
  margin: auto;
}
.cid-uBPovCgyj9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBPovCgyj9 .dropdown-menu,
.cid-uBPovCgyj9 .navbar.opened {
  background: #fafafa !important;
}
.cid-uBPovCgyj9 .nav-item:focus,
.cid-uBPovCgyj9 .nav-link:focus {
  outline: none;
}
.cid-uBPovCgyj9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBPovCgyj9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBPovCgyj9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBPovCgyj9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBPovCgyj9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBPovCgyj9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBPovCgyj9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uBPovCgyj9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBPovCgyj9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBPovCgyj9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBPovCgyj9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBPovCgyj9 .navbar.collapsed {
  justify-content: center;
}
.cid-uBPovCgyj9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBPovCgyj9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBPovCgyj9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uBPovCgyj9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBPovCgyj9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBPovCgyj9 .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-uBPovCgyj9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBPovCgyj9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBPovCgyj9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBPovCgyj9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBPovCgyj9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBPovCgyj9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBPovCgyj9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBPovCgyj9 .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-uBPovCgyj9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBPovCgyj9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBPovCgyj9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBPovCgyj9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBPovCgyj9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBPovCgyj9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBPovCgyj9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBPovCgyj9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBPovCgyj9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBPovCgyj9 .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-uBPovCgyj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBPovCgyj9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBPovCgyj9 .dropdown-item.active,
.cid-uBPovCgyj9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBPovCgyj9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBPovCgyj9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBPovCgyj9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBPovCgyj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uBPovCgyj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBPovCgyj9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBPovCgyj9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBPovCgyj9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBPovCgyj9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBPovCgyj9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBPovCgyj9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBPovCgyj9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBPovCgyj9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBPovCgyj9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBPovCgyj9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBPovCgyj9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBPovCgyj9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBPovCgyj9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBPovCgyj9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBPovCgyj9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBPovCgyj9 .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-uBPovCgyj9 .navbar {
    height: 70px;
  }
  .cid-uBPovCgyj9 .navbar.opened {
    height: auto;
  }
  .cid-uBPovCgyj9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBPovCHLnI {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uBPovCHLnI H2 {
  color: #000000;
}
.cid-uBPovD3wjM {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uBPovD3wjM img {
  object-fit: cover;
}
.cid-uBPovECOtc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBPovE5vwl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBPovE5vwl img,
.cid-uBPovE5vwl .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uBPovE5vwl .item:focus,
.cid-uBPovE5vwl span:focus {
  outline: none;
}
.cid-uBPovE5vwl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBPovE5vwl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBPovE5vwl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBPovE5vwl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBPovE5vwl .mbr-section-title {
  color: #232323;
}
.cid-uBPovE5vwl .mbr-text,
.cid-uBPovE5vwl .mbr-section-btn {
  text-align: left;
}
.cid-uBPovE5vwl .item-title {
  text-align: center;
  color: #000000;
}
.cid-uBPovE5vwl .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBPovE5vwl .mbr-section-subtitle {
  text-align: left;
}
.cid-uBQKNRhQGg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBQKNRhQGg img,
.cid-uBQKNRhQGg .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uBQKNRhQGg .item:focus,
.cid-uBQKNRhQGg span:focus {
  outline: none;
}
.cid-uBQKNRhQGg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBQKNRhQGg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBQKNRhQGg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBQKNRhQGg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBQKNRhQGg .mbr-section-title {
  color: #232323;
}
.cid-uBQKNRhQGg .mbr-text,
.cid-uBQKNRhQGg .mbr-section-btn {
  text-align: left;
}
.cid-uBQKNRhQGg .item-title {
  text-align: center;
  color: #000000;
}
.cid-uBQKNRhQGg .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBQKNRhQGg .mbr-section-subtitle {
  text-align: left;
}
.cid-uBQMyYdhsp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBPovF0icB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBPovF0icB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBPovF0icB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBPovF0icB .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBPovF0icB .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uBPovF0icB .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBPovF0icB .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBPovF0icB .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uBPovF0icB .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBPovF0icB .mbr-section-title {
  color: #ffffff;
}
.cid-uBPovF0icB .mbr-text,
.cid-uBPovF0icB .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBPovF0icB .mbr-section-title,
.cid-uBPovF0icB .mbr-section-btn {
  text-align: center;
}
.cid-uBPovFpdBf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uBPovFpdBf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBPovFpdBf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBPovFpdBf .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uBPovFpdBf .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBPovFpdBf .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBPovFpdBf .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uBPovFpdBf .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uBPovFpdBf .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBPovFpdBf .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uBPovFpdBf .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uBPovFpdBf .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uBPovFpdBf .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uBPovFpdBf .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uBPovFpdBf .mbr-section-title {
  color: #000000;
}
.cid-uBPovFpdBf .card-title {
  color: #000000;
}
.cid-uLnaFV8fD5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnaFV8fD5 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaFV8fD5 .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnaFV8fD5 .media-wrap img {
  height: 6rem;
}
.cid-uLnaFV8fD5 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnaFV8fD5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnaFV8fD5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnaFV8fD5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnaFV8fD5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnaFV8fD5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnaFV8fD5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnaFV8fD5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnaFV8fD5 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnaFV8fD5 .links {
  color: #000000;
}
.cid-uBV5lP7bRv {
  z-index: 1000;
  width: 100%;
}
.cid-uBV5lP7bRv nav.navbar {
  position: fixed;
}
.cid-uBV5lP7bRv .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-uBV5lP7bRv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBV5lP7bRv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBV5lP7bRv .dropdown-item:hover,
.cid-uBV5lP7bRv .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBV5lP7bRv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBV5lP7bRv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBV5lP7bRv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBV5lP7bRv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBV5lP7bRv .nav-link {
  position: relative;
}
.cid-uBV5lP7bRv .container {
  display: flex;
  margin: auto;
}
.cid-uBV5lP7bRv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBV5lP7bRv .dropdown-menu,
.cid-uBV5lP7bRv .navbar.opened {
  background: #fafafa !important;
}
.cid-uBV5lP7bRv .nav-item:focus,
.cid-uBV5lP7bRv .nav-link:focus {
  outline: none;
}
.cid-uBV5lP7bRv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBV5lP7bRv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBV5lP7bRv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBV5lP7bRv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBV5lP7bRv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBV5lP7bRv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBV5lP7bRv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uBV5lP7bRv .navbar.opened {
  transition: all 0.3s;
}
.cid-uBV5lP7bRv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBV5lP7bRv .navbar .navbar-logo img {
  width: auto;
}
.cid-uBV5lP7bRv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBV5lP7bRv .navbar.collapsed {
  justify-content: center;
}
.cid-uBV5lP7bRv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBV5lP7bRv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBV5lP7bRv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uBV5lP7bRv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBV5lP7bRv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBV5lP7bRv .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-uBV5lP7bRv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBV5lP7bRv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBV5lP7bRv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBV5lP7bRv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBV5lP7bRv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBV5lP7bRv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBV5lP7bRv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBV5lP7bRv .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-uBV5lP7bRv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBV5lP7bRv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBV5lP7bRv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBV5lP7bRv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBV5lP7bRv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBV5lP7bRv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBV5lP7bRv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBV5lP7bRv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBV5lP7bRv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBV5lP7bRv .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-uBV5lP7bRv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBV5lP7bRv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBV5lP7bRv .dropdown-item.active,
.cid-uBV5lP7bRv .dropdown-item:active {
  background-color: transparent;
}
.cid-uBV5lP7bRv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBV5lP7bRv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBV5lP7bRv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBV5lP7bRv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uBV5lP7bRv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBV5lP7bRv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBV5lP7bRv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBV5lP7bRv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBV5lP7bRv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBV5lP7bRv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBV5lP7bRv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBV5lP7bRv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBV5lP7bRv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBV5lP7bRv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBV5lP7bRv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBV5lP7bRv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBV5lP7bRv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBV5lP7bRv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBV5lP7bRv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBV5lP7bRv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBV5lP7bRv .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-uBV5lP7bRv .navbar {
    height: 70px;
  }
  .cid-uBV5lP7bRv .navbar.opened {
    height: auto;
  }
  .cid-uBV5lP7bRv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBV5lPw0ye {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uBV5lPw0ye H2 {
  color: #000000;
}
.cid-uBV5lPR3Bv {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uBV5lPR3Bv img {
  object-fit: cover;
}
.cid-uBV5lQzeGT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBV5lQzeGT img,
.cid-uBV5lQzeGT .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uBV5lQzeGT .item:focus,
.cid-uBV5lQzeGT span:focus {
  outline: none;
}
.cid-uBV5lQzeGT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uBV5lQzeGT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uBV5lQzeGT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uBV5lQzeGT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBV5lQzeGT .mbr-section-title {
  color: #232323;
}
.cid-uBV5lQzeGT .mbr-text,
.cid-uBV5lQzeGT .mbr-section-btn {
  text-align: left;
}
.cid-uBV5lQzeGT .item-title {
  text-align: center;
  color: #000000;
}
.cid-uBV5lQzeGT .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uBV5lQzeGT .mbr-section-subtitle {
  text-align: left;
}
.cid-uBV5lRzDdZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBV5lRVOmc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBV5lRVOmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBV5lRVOmc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBV5lRVOmc .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBV5lRVOmc .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uBV5lRVOmc .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uBV5lRVOmc .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBV5lRVOmc .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #0cc0df, #ffffff);
}
@media (max-width: 992px) {
  .cid-uBV5lRVOmc .border-wrap {
    margin-top: 32px;
  }
}
.cid-uBV5lRVOmc .mbr-section-title {
  color: #ffffff;
}
.cid-uBV5lRVOmc .mbr-text,
.cid-uBV5lRVOmc .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBV5lRVOmc .mbr-section-title,
.cid-uBV5lRVOmc .mbr-section-btn {
  text-align: center;
}
.cid-uBV5lSilB1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #effaff;
}
.cid-uBV5lSilB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBV5lSilB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBV5lSilB1 .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uBV5lSilB1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBV5lSilB1 .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBV5lSilB1 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}
@media (max-width: 992px) {
  .cid-uBV5lSilB1 .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uBV5lSilB1 .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBV5lSilB1 .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uBV5lSilB1 .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uBV5lSilB1 .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uBV5lSilB1 .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 35px;
  height: 35px;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 100%;
}
.cid-uBV5lSilB1 .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uBV5lSilB1 .mbr-section-title {
  color: #000000;
}
.cid-uBV5lSilB1 .card-title {
  color: #000000;
}
.cid-uLnau5geqy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnau5geqy .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnau5geqy .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnau5geqy .media-wrap img {
  height: 6rem;
}
.cid-uLnau5geqy .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnau5geqy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnau5geqy .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnau5geqy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnau5geqy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnau5geqy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnau5geqy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnau5geqy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnau5geqy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnau5geqy .links {
  color: #000000;
}
.cid-uC6ypHnHmV {
  z-index: 1000;
  width: 100%;
}
.cid-uC6ypHnHmV nav.navbar {
  position: fixed;
}
.cid-uC6ypHnHmV .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-uC6ypHnHmV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uC6ypHnHmV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uC6ypHnHmV .dropdown-item:hover,
.cid-uC6ypHnHmV .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uC6ypHnHmV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uC6ypHnHmV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uC6ypHnHmV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uC6ypHnHmV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uC6ypHnHmV .nav-link {
  position: relative;
}
.cid-uC6ypHnHmV .container {
  display: flex;
  margin: auto;
}
.cid-uC6ypHnHmV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uC6ypHnHmV .dropdown-menu,
.cid-uC6ypHnHmV .navbar.opened {
  background: #fafafa !important;
}
.cid-uC6ypHnHmV .nav-item:focus,
.cid-uC6ypHnHmV .nav-link:focus {
  outline: none;
}
.cid-uC6ypHnHmV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uC6ypHnHmV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uC6ypHnHmV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uC6ypHnHmV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uC6ypHnHmV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uC6ypHnHmV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uC6ypHnHmV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uC6ypHnHmV .navbar.opened {
  transition: all 0.3s;
}
.cid-uC6ypHnHmV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uC6ypHnHmV .navbar .navbar-logo img {
  width: auto;
}
.cid-uC6ypHnHmV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uC6ypHnHmV .navbar.collapsed {
  justify-content: center;
}
.cid-uC6ypHnHmV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uC6ypHnHmV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uC6ypHnHmV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uC6ypHnHmV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uC6ypHnHmV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uC6ypHnHmV .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-uC6ypHnHmV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uC6ypHnHmV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uC6ypHnHmV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uC6ypHnHmV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uC6ypHnHmV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uC6ypHnHmV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uC6ypHnHmV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uC6ypHnHmV .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-uC6ypHnHmV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uC6ypHnHmV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uC6ypHnHmV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uC6ypHnHmV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uC6ypHnHmV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uC6ypHnHmV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uC6ypHnHmV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uC6ypHnHmV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uC6ypHnHmV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uC6ypHnHmV .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-uC6ypHnHmV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uC6ypHnHmV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uC6ypHnHmV .dropdown-item.active,
.cid-uC6ypHnHmV .dropdown-item:active {
  background-color: transparent;
}
.cid-uC6ypHnHmV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uC6ypHnHmV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uC6ypHnHmV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uC6ypHnHmV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uC6ypHnHmV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uC6ypHnHmV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uC6ypHnHmV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uC6ypHnHmV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uC6ypHnHmV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uC6ypHnHmV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uC6ypHnHmV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uC6ypHnHmV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uC6ypHnHmV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uC6ypHnHmV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uC6ypHnHmV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uC6ypHnHmV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uC6ypHnHmV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uC6ypHnHmV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uC6ypHnHmV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uC6ypHnHmV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uC6ypHnHmV .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-uC6ypHnHmV .navbar {
    height: 70px;
  }
  .cid-uC6ypHnHmV .navbar.opened {
    height: auto;
  }
  .cid-uC6ypHnHmV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uC6ypHScvc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/presentation-1920x1080.webp");
}
.cid-uC6ypHScvc H2 {
  color: #000000;
}
.cid-uC6ypIdnaW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uC6ypIdnaW .mbr-text {
  text-align: left;
}
.cid-uLnbm1UZvh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-uLnbm1UZvh .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnbm1UZvh .media-wrap .mbr-iconfont-logo {
  font-size: 7rem;
  color: #f36;
}
.cid-uLnbm1UZvh .media-wrap img {
  height: 6rem;
}
.cid-uLnbm1UZvh .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uLnbm1UZvh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uLnbm1UZvh .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: .05;
}
.cid-uLnbm1UZvh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uLnbm1UZvh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-uLnbm1UZvh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLnbm1UZvh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uLnbm1UZvh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLnbm1UZvh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLnbm1UZvh .links {
  color: #000000;
}
