body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.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-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: transparent;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #47b5ed !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: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !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='%23ffffff' %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-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVSY8HDX8l {
  background-image: url("../../../assets/images/joakim-nadell-k67sbvqlluw-unsplash.jpg");
}
.cid-sVSY8HDX8l .mbr-text,
.cid-sVSY8HDX8l .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-sVSY8HDX8l .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-um7DMUwxPX {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-um7DMUwxPX .mbr-fallback-image.disabled {
  display: none;
}
.cid-um7DMUwxPX .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-um7DMUwxPX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-um7DMUwxPX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-um7DMUwxPX .text-wrapper {
    padding: 2rem;
  }
}
.cid-um7DMUwxPX .mbr-section-title {
  color: #ffffff;
}
.cid-um7DMUwxPX .mbr-text {
  color: #ffffff;
}
.cid-ujRGNI7ee6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujRGNI7ee6 .item:focus,
.cid-ujRGNI7ee6 span:focus {
  outline: none;
}
.cid-ujRGNI7ee6 .item {
  cursor: pointer;
}
.cid-ujRGNI7ee6 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-ujRGNI7ee6 .content-head {
  max-width: 800px;
}
@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-ujRGNI7ee6 .ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: 100%;
  box-sizing: content-box;
}
.cid-ujRGNI7ee6 .ticker-wrap .ticker {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 23s;
}
.cid-ujRGNI7ee6 .ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  color: #000000;
}
@keyframes ticker__center {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-ujRGNI7ee6 .ticker-wrap .ticker__center {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__center;
  animation-duration: 37s;
}
@keyframes ticker__end {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.cid-ujRGNI7ee6 .ticker-wrap .ticker__end {
  display: inline-block;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker__end;
  animation-duration: 25s;
}
.cid-ujRGNI7ee6 .mbr-section-title,
.cid-ujRGNI7ee6 .mbr-section-subtitle {
  color: #000000;
}
.cid-sVT16C0Hdp {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-sVT16C0Hdp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-sVT16C0Hdp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-sVT16C0Hdp .embla__button--next,
.cid-sVT16C0Hdp .embla__button--prev {
  display: flex;
}
.cid-sVT16C0Hdp .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-sVT16C0Hdp .embla__button {
    display: none;
  }
}
.cid-sVT16C0Hdp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sVT16C0Hdp .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-sVT16C0Hdp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sVT16C0Hdp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-sVT16C0Hdp .embla__button {
    top: auto;
  }
}
.cid-sVT16C0Hdp .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sVT16C0Hdp .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-sVT16C0Hdp .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-sVT16C0Hdp .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sVT16C0Hdp .embla {
  position: relative;
  width: 100%;
}
.cid-sVT16C0Hdp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-sVT16C0Hdp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sVT16C0Hdp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sVT16C0Hdp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sVT16C0Hdp H3 {
  color: #ffffff;
}
.cid-sVT16C0Hdp .user_text {
  color: #ffffff;
}
.cid-uyLDHu5jGh {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pexels-adrien-olichon-1257089-2387428-2000x3000.jpg");
}
.cid-uyLDHu5jGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyLDHu5jGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyLDHu5jGh .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-uyLDHu5jGh .panel-group {
  border: none;
}
.cid-uyLDHu5jGh .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uyLDHu5jGh .panel-body,
.cid-uyLDHu5jGh .card-header {
  padding: 1rem 0;
}
.cid-uyLDHu5jGh .panel-title-edit {
  color: #ffffff;
}
.cid-uyLDHu5jGh .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uyLDHu5jGh H3 {
  color: #ffffff;
}
.cid-uyLDHu5jGh .panel-text {
  color: #ffffff;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVV2n4ojE3 {
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-sVV2n4ojE3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sVV2n4ojE3 .row {
  flex-direction: row-reverse;
}
.cid-sVV2n4ojE3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sVV2n4ojE3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-sVV2n4ojE3 .mbr-text {
  color: #ffffff;
}
.cid-sVV2n4ojE3 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sVV35Q03Q6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sVV35Q03Q6 .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-sVV35Q03Q6 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uyWmixE4Fg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyWmixE4Fg .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uyWmixE4Fg .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-ujRVQGHXZQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ujRVQGHXZQ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-ujRVQGHXZQ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-ujS8CPnzkg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ujS8CPnzkg .item:focus,
.cid-ujS8CPnzkg span:focus {
  outline: none;
}
.cid-ujS8CPnzkg .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-ujS8CPnzkg .content-head {
  max-width: 800px;
}
.cid-ujS8CPnzkg .item {
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-ujS8CPnzkg .item {
    min-height: 45px;
  }
}
.cid-uzlHmyqQag {
  background-color: #000000;
}
.cid-uzlHmyqQag .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uzlHmyqQag .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzlHmyqQag .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uzlHmyqQag .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uzlHmyqQag .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzlHmyqQag .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uzlHmyqQag .mbr-text,
.cid-uzlHmyqQag .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uzlHFRyjrR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uzlHFRyjrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzlHFRyjrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzlHFRyjrR .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uzlHFRyjrR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uzlHFRyjrR .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uzlHFRyjrR .card-wrapper {
    padding: 4rem;
  }
}
.cid-uzlHFRyjrR .mbr-text,
.cid-uzlHFRyjrR .mbr-section-btn {
  color: #ffffff;
}
.cid-uzlHFRyjrR .card-title,
.cid-uzlHFRyjrR .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uzlHp3gVI8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uzlHp3gVI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzlHp3gVI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzlHp3gVI8 .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uzlHp3gVI8 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uzlHp3gVI8 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uzlHp3gVI8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uzlHp3gVI8 .mbr-text,
.cid-uzlHp3gVI8 .mbr-section-btn {
  color: #000000;
}
.cid-uzlHp3gVI8 .card-title,
.cid-uzlHp3gVI8 .card-box {
  text-align: left;
  color: #000000;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um7HUWYxW9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/wait-1.svg");
}
.cid-um7HUWYxW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-um7HUWYxW9 .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-um7HUWYxW9 .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-um7HUWYxW9 .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-um7HUWYxW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-um7HUWYxW9 .item-wrapper {
  background: #ffffff;
  padding: 2.25rem;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-um7HUWYxW9 .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-um7HUWYxW9 .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-um7HUWYxW9 .card-title,
.cid-um7HUWYxW9 .iconfont-wrapper {
  color: #000000;
}
.cid-um7HUWYxW9 .card-text {
  color: #000000;
}
.cid-um7HUWYxW9 .content-head {
  max-width: 800px;
}
.cid-um7HUWYxW9 .mbr-section-title {
  color: #000000;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umcvzcAZwb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/kir-ufod2ufjkti-unsplash-2.jpg");
}
.cid-umcvzcAZwb .mbr-fallback-image.disabled {
  display: none;
}
.cid-umcvzcAZwb .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-umcvzcAZwb .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-umcvzcAZwb .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-umcvzcAZwb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umcvzcAZwb .item-wrapper {
  background: #000000;
  padding: 2.25rem;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-umcvzcAZwb .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umcvzcAZwb .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-umcvzcAZwb .card-title,
.cid-umcvzcAZwb .iconfont-wrapper {
  color: #000000;
}
.cid-umcvzcAZwb .card-text {
  color: #000000;
}
.cid-umcvzcAZwb .content-head {
  max-width: 800px;
}
.cid-umcvzcAZwb .mbr-section-title {
  color: #ffffff;
}
.cid-umcvzcAZwb .card-title,
.cid-umcvzcAZwb .img-wrapper {
  color: #ffffff;
}
.cid-umcvzcAZwb .card-text,
.cid-umcvzcAZwb .mbr-section-btn {
  color: #ffffff;
}
.cid-umcxz60pxZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/wait-1.svg");
}
.cid-umcxz60pxZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umcxz60pxZ .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-umcxz60pxZ .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-umcxz60pxZ .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-umcxz60pxZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umcxz60pxZ .item-wrapper {
  background: #ffffff;
  padding: 2.25rem;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-umcxz60pxZ .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-umcxz60pxZ .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-umcxz60pxZ .card-title,
.cid-umcxz60pxZ .iconfont-wrapper {
  color: #000000;
}
.cid-umcxz60pxZ .card-text {
  color: #000000;
}
.cid-umcxz60pxZ .content-head {
  max-width: 800px;
}
.cid-umcxz60pxZ .mbr-section-title {
  color: #000000;
}
.cid-uyWgDAreqt {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/kir-ufod2ufjkti-unsplash-2.jpg");
}
.cid-uyWgDAreqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWgDAreqt .item-wrapper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50% !important;
}
.cid-uyWgDAreqt .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uyWgDAreqt .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-uyWgDAreqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWgDAreqt .item-wrapper {
  background: #000000;
  padding: 2.25rem;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uyWgDAreqt .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uyWgDAreqt .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uyWgDAreqt .card-title,
.cid-uyWgDAreqt .iconfont-wrapper {
  color: #000000;
}
.cid-uyWgDAreqt .card-text {
  color: #000000;
}
.cid-uyWgDAreqt .content-head {
  max-width: 800px;
}
.cid-uyWgDAreqt .mbr-section-title {
  color: #ffffff;
}
.cid-uyWgDAreqt .card-title,
.cid-uyWgDAreqt .img-wrapper {
  color: #ffffff;
}
.cid-uyWgDAreqt .card-text,
.cid-uyWgDAreqt .mbr-section-btn {
  color: #ffffff;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujXzb48SIL {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/smooth-3221868.jpg");
}
.cid-ujXzb48SIL .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ujXzb48SIL .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-ujXzb48SIL .item-head {
  background: #ffffff;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXzb48SIL .item-head {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXzb48SIL .item-head {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-ujXzb48SIL .item-content {
  padding: 2.25rem 2.25rem 0;
  background: #000000;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXzb48SIL .item-content {
    padding: 0rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXzb48SIL .item-content {
    padding: 0rem 1.5rem;
  }
}
.cid-ujXzb48SIL .item-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #000000;
  padding: 0rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-ujXzb48SIL .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXzb48SIL .item-wrapper .item-footer {
    padding: 0 1.5rem 3rem;
  }
}
@media (min-width: 1201px) {
  .cid-ujXzb48SIL .item-wrapper .item-footer {
    padding: 0 2rem 3rem;
  }
}
.cid-ujXzb48SIL .btn {
  width: -webkit-fill-available;
}
.cid-ujXzb48SIL .item:focus,
.cid-ujXzb48SIL span:focus {
  outline: none;
}
.cid-ujXzb48SIL .mbr-section-btn {
  margin-top: auto !important;
  padding: 2rem 2rem 0;
}
@media (max-width: 991px) {
  .cid-ujXzb48SIL .mbr-section-btn {
    padding: 0rem 2.25rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXzb48SIL .mbr-section-btn {
    padding: 0rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-ujXzb48SIL .mbr-section-title {
  color: #ffffff;
}
.cid-ujXzb48SIL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujXzb48SIL .mbr-text,
.cid-ujXzb48SIL .mbr-section-btn {
  text-align: left;
}
.cid-ujXzb48SIL .item-title {
  text-align: center;
  color: #000000;
}
.cid-ujXzb48SIL .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-ujXzb48SIL .content-head {
  max-width: 800px;
}
.cid-ujXzb48SIL .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-ujXzb48SIL .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-ujXzb48SIL .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #000000;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-ujXzb48SIL .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-ujXzb48SIL .mbr-text UL {
  text-align: left;
}
.cid-ujXzb48SIL .mbr-text {
  color: #ffffff;
}
.cid-ujXGUuDImJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/smooth-3221868.jpeg");
}
.cid-ujXGUuDImJ .mbr-overlay {
  background: #fafafa;
  opacity: 0;
}
.cid-ujXGUuDImJ .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ujXGUuDImJ .item-mb {
    margin-bottom: 1rem;
  }
}
.cid-ujXGUuDImJ .item-head {
  background: #ffffff;
  padding: 2.25rem;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXGUuDImJ .item-head {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXGUuDImJ .item-head {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-ujXGUuDImJ .item-content {
  padding: 2.25rem 2.25rem 0;
  background: #000000;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXGUuDImJ .item-content {
    padding: 0rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXGUuDImJ .item-content {
    padding: 0rem 1.5rem;
  }
}
.cid-ujXGUuDImJ .item-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  background: #000000;
  padding: 0rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-ujXGUuDImJ .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-ujXGUuDImJ .item-wrapper .item-footer {
    padding: 0 1.5rem 3rem;
  }
}
@media (min-width: 1201px) {
  .cid-ujXGUuDImJ .item-wrapper .item-footer {
    padding: 0 2rem 3rem;
  }
}
.cid-ujXGUuDImJ .btn {
  width: -webkit-fill-available;
}
.cid-ujXGUuDImJ .item:focus,
.cid-ujXGUuDImJ span:focus {
  outline: none;
}
.cid-ujXGUuDImJ .mbr-section-btn {
  margin-top: auto !important;
  padding: 2rem 2rem 0;
}
@media (max-width: 991px) {
  .cid-ujXGUuDImJ .mbr-section-btn {
    padding: 0rem 2.25rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ujXGUuDImJ .mbr-section-btn {
    padding: 0rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.cid-ujXGUuDImJ .mbr-section-title {
  color: #ffffff;
}
.cid-ujXGUuDImJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujXGUuDImJ .mbr-text,
.cid-ujXGUuDImJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ujXGUuDImJ .item-title {
  text-align: center;
  color: #000000;
}
.cid-ujXGUuDImJ .item-subtitle {
  text-align: left;
  color: #000000;
}
.cid-ujXGUuDImJ .content-head {
  max-width: 800px;
}
.cid-ujXGUuDImJ .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-ujXGUuDImJ .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-ujXGUuDImJ .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ffffff;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-ujXGUuDImJ .counter-container ul li {
  margin-bottom: 1rem;
}
.cid-ujXGUuDImJ .mbr-text UL {
  text-align: left;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ultnoXdgEf {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/forgehub-original-logotipo-svg-1.svg");
}
.cid-ultnoXdgEf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ultnoXdgEf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ultnoXdgEf .mbr-section-title {
  color: #ff6600;
}
.cid-ujY3UTLgqL {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujY3UTLgqL .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ujY3UTLgqL .item {
    margin-bottom: 1rem;
  }
}
.cid-ujY3UTLgqL .item-wrapper {
  position: relative;
}
.cid-ujY3UTLgqL .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-ujY3UTLgqL .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ujY3UTLgqL .carousel-control,
.cid-ujY3UTLgqL .close {
  background: #1b1b1b;
}
.cid-ujY3UTLgqL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ujY3UTLgqL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ujY3UTLgqL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ujY3UTLgqL .carousel-control-next span {
  margin-left: 5px;
}
.cid-ujY3UTLgqL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ujY3UTLgqL .close::before {
  content: '\e91a';
}
.cid-ujY3UTLgqL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ujY3UTLgqL .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ujY3UTLgqL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujY3UTLgqL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ujY3UTLgqL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ujY3UTLgqL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ujY3UTLgqL .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ujY3UTLgqL .carousel-indicators li.active,
.cid-ujY3UTLgqL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ujY3UTLgqL .carousel-indicators li::after,
.cid-ujY3UTLgqL .carousel-indicators li::before {
  content: none;
}
.cid-ujY3UTLgqL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ujY3UTLgqL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ujY3UTLgqL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ujY3UTLgqL .carousel-indicators {
    display: none;
  }
}
.cid-ujY3UTLgqL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ujY3UTLgqL .carousel-inner > .active {
  display: block;
}
.cid-ujY3UTLgqL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ujY3UTLgqL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ujY3UTLgqL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ujY3UTLgqL .carousel-control,
  .cid-ujY3UTLgqL .carousel-indicators,
  .cid-ujY3UTLgqL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ujY3UTLgqL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ujY3UTLgqL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ujY3UTLgqL .carousel-indicators .active,
.cid-ujY3UTLgqL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ujY3UTLgqL .carousel-indicators .active {
  background: #fff;
}
.cid-ujY3UTLgqL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ujY3UTLgqL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ujY3UTLgqL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ujY3UTLgqL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ujY3UTLgqL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ujY3UTLgqL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ujY3UTLgqL .carousel {
  width: 100%;
}
.cid-ujY3UTLgqL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ujY3UTLgqL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ujY3UTLgqL .modal.fade .modal-dialog,
.cid-ujY3UTLgqL .modal.in .modal-dialog {
  transform: none;
}
.cid-ujY3UTLgqL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ujY3UTLgqL .content-head {
  max-width: 800px;
}
.cid-ujY3UTLgqL H3 {
  color: #22a5e5;
}
.cid-ujY3UTLgqL H4 {
  color: #11bafe;
}
.cid-ujY5nCr6Hy {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujY5nCr6Hy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujY5nCr6Hy .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-ujY5nCr6Hy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ujY5nCr6Hy .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ujY5nCr6Hy .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ujY5nCr6Hy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ujY5nCr6Hy .mbr-section-title {
  color: #002f6c;
}
.cid-ujY5nCr6Hy .mbr-text,
.cid-ujY5nCr6Hy .mbr-section-btn {
  color: #002f6c;
}
.cid-ux64j0IN1h {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ux64j0IN1h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ux64j0IN1h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ux64j0IN1h p {
  line-height: 1.2;
}
.cid-ux64j0IN1h .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 770px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-ux64j0IN1h .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ux64j0IN1h .embla__button--next,
.cid-ux64j0IN1h .embla__button--prev {
  display: flex;
}
.cid-ux64j0IN1h .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-ux64j0IN1h .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ux64j0IN1h .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ux64j0IN1h .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ux64j0IN1h .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-ux64j0IN1h .embla__button {
    top: auto;
  }
}
.cid-ux64j0IN1h .item-wrapper {
  height: 100%;
}
.cid-ux64j0IN1h .item-menu-overlay {
  border-radius: 2rem;
}
.cid-ux64j0IN1h .user_image {
  max-width: 600px;
  max-height: 400px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  margin: 0 auto 2rem auto;
}
.cid-ux64j0IN1h .user_image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-ux64j0IN1h .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-ux64j0IN1h .embla {
  position: relative;
  width: 100%;
}
.cid-ux64j0IN1h .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ux64j0IN1h .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ux64j0IN1h .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ux64j0IN1h .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ux64j0IN1h .user_desk {
  color: #232323;
}
.cid-ux64j0IN1h .user_name {
  color: #232323;
}
.cid-ux64j0IN1h .user_text,
.cid-ux64j0IN1h .user_name,
.cid-ux64j0IN1h .user_desk {
  padding: 0rem 1.5rem;
}
@media (max-width: 767px) {
  .cid-ux64j0IN1h .user_text,
  .cid-ux64j0IN1h .user_name,
  .cid-ux64j0IN1h .user_desk {
    padding: 0rem 0rem;
  }
}
.cid-ux64j0IN1h H3 {
  color: #002f6c;
}
.cid-ux64j0IN1h .user_text {
  color: #002f6c;
}
.cid-ultt2NfYnb {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #002f6c;
}
.cid-ultt2NfYnb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ultt2NfYnb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ultt2NfYnb .nav-tabs .nav-item.open .nav-link:focus,
.cid-ultt2NfYnb .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ultt2NfYnb .nav-tabs {
  flex-wrap: wrap;
  border-bottom: none;
}
@media (max-width: 767px) {
  .cid-ultt2NfYnb .nav-item {
    width: 100%;
    margin-right: 0 !important;
    text-align: center;
  }
}
.cid-ultt2NfYnb .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-ultt2NfYnb .nav-tabs .nav-link {
  transition: padding 0.3s ease, background-color 0.3s ease;
  border: none;
  border-radius: 2rem !important;
  padding: 1.25rem 0!important;
  background-color: transparent!important;
  overflow: hidden!important;
}
.cid-ultt2NfYnb .nav-tabs .nav-link:not(.active) {
  color: #62b6cb;
}
.cid-ultt2NfYnb .nav-tabs .nav-link.active {
  color: #ffffff !important;
  background-color: #62b6cb !important;
  padding: 1.25rem 2rem!important;
}
.cid-ultt2NfYnb .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ultt2NfYnb .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-ultt2NfYnb .mbr-text {
  color: #fff;
  margin: 0;
}
.cid-ultt2NfYnb .content-head {
  max-width: 800px;
}
.cid-ultt2NfYnb .item-wrapper {
  background-color: #002f6c;
  padding: 2.25rem;
}
@media (max-width: 767px) {
  .cid-ultt2NfYnb .item-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uz2Cn3ftqI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #62b6cb;
}
.cid-uz2Cn3ftqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz2Cn3ftqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz2Cn3ftqI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz2Cn3ftqI .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz2Cn3ftqI .item-wrapper {
  background: #002f6c;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz2Cn3ftqI .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uz2Cn3ftqI .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz2Cn3ftqI .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz2Cn3ftqI .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uz2Cn3ftqI .social-row {
  text-align: center;
}
.cid-uz2Cn3ftqI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
.cid-uz2Cn3ftqI .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-uz2Cn3ftqI .social-row .soc-item:hover {
  background-color: #ffffff;
}
.cid-uz2Cn3ftqI .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-uz2Cn3ftqI .card-title,
.cid-uz2Cn3ftqI .social-row {
  color: #002f6c;
}
.cid-uz2Cn3ftqI .mbr-role,
.cid-uz2Cn3ftqI .social-row {
  color: #ffffff;
}
.cid-uz2Cn3ftqI .card-text,
.cid-uz2Cn3ftqI .mbr-section-btn,
.cid-uz2Cn3ftqI .social-row {
  color: #ffffff;
}
.cid-uz2Cn3ftqI .mbr-section-title {
  color: #ffffff;
}
.cid-ukw6klS9Ii {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #62b6cb;
}
.cid-ukw6klS9Ii .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ukw6klS9Ii form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-ukw6klS9Ii form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-ukw6klS9Ii form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-ukw6klS9Ii .mbr-section-title {
  color: #edefeb;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umLRFObpbh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/pexels-pixabay-66905.jpg");
}
.cid-umLRFObpbh input {
  padding: 1.2rem 1.5rem;
  border: none !important;
  height: 100%;
}
.cid-umLRFObpbh input:hover {
  border: none !important;
}
.cid-umLRFObpbh .mbr-fallback-image.disabled {
  display: none;
}
.cid-umLRFObpbh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umLRFObpbh .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-umLRFObpbh .number {
  color: #ffffff;
  white-space: nowrap;
}
.cid-umLRFObpbh .row {
  justify-content: center;
}
.cid-umLRFObpbh .period {
  display: block;
}
.cid-umLRFObpbh .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-umLRFObpbh .period {
    font-size: 0.8rem;
  }
}
.cid-umLRFObpbh .btn {
  height: 100%;
  margin: auto;
}
@media (min-width: 768px) {
  .cid-umLRFObpbh .btn {
    margin-left: 0.625rem;
  }
}
.cid-umLRFObpbh .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.cid-umLRFObpbh .mbr-section-btn .btn {
  width: auto;
}
.cid-umLRFObpbh .justify-content-center {
  align-items: center;
}
.cid-umLRFObpbh .mbr-section-title {
  color: #ffffff;
}
.cid-umLRFObpbh .mbr-section-subtitle,
.cid-umLRFObpbh .mbr-text {
  color: #ffffff;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
.cid-um6qSIObyL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-um6qSIObyL nav.navbar {
  position: fixed;
}
.cid-um6qSIObyL .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-um6qSIObyL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-um6qSIObyL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-um6qSIObyL .dropdown-item:hover,
.cid-um6qSIObyL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-um6qSIObyL .dropdown-item:hover span {
  color: white;
}
.cid-um6qSIObyL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-um6qSIObyL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-um6qSIObyL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-um6qSIObyL .nav-link {
  position: relative;
}
.cid-um6qSIObyL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-um6qSIObyL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-um6qSIObyL .dropdown-menu,
.cid-um6qSIObyL .navbar.opened {
  background: #000000 !important;
}
.cid-um6qSIObyL .nav-item:focus,
.cid-um6qSIObyL .nav-link:focus {
  outline: none;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-um6qSIObyL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-um6qSIObyL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um6qSIObyL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um6qSIObyL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-um6qSIObyL .navbar.opened {
  transition: all 0.3s;
}
.cid-um6qSIObyL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-um6qSIObyL .navbar .navbar-logo img {
  width: auto;
}
.cid-um6qSIObyL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-um6qSIObyL .navbar.collapsed {
  justify-content: center;
}
.cid-um6qSIObyL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um6qSIObyL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-um6qSIObyL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um6qSIObyL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-um6qSIObyL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-um6qSIObyL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um6qSIObyL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um6qSIObyL .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-um6qSIObyL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-um6qSIObyL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um6qSIObyL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um6qSIObyL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-um6qSIObyL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-um6qSIObyL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-um6qSIObyL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-um6qSIObyL .navbar.navbar-short {
  min-height: 60px;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-um6qSIObyL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um6qSIObyL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um6qSIObyL .dropdown-item.active,
.cid-um6qSIObyL .dropdown-item:active {
  background-color: transparent;
}
.cid-um6qSIObyL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um6qSIObyL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-um6qSIObyL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um6qSIObyL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-um6qSIObyL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-um6qSIObyL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-um6qSIObyL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-um6qSIObyL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-um6qSIObyL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-um6qSIObyL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-um6qSIObyL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-um6qSIObyL .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-um6qSIObyL .navbar {
    height: 70px;
  }
  .cid-um6qSIObyL .navbar.opened {
    height: auto;
  }
  .cid-um6qSIObyL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uydcI2XsrE {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uydcI2XsrE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uydcI2XsrE .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-uydcI2XsrE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uydcI2XsrE .row {
  flex-direction: row-reverse;
}
.cid-uydcI2XsrE .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uydcI2XsrE .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uydcI2XsrE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uydcI2XsrE .mbr-section-title {
  color: #ffffff;
}
.cid-uydcI2XsrE .mbr-text,
.cid-uydcI2XsrE .mbr-section-btn {
  color: #ffffff;
}
.cid-ujSlTYnvlF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ujSlTYnvlF .row {
  flex-direction: row-reverse;
}
.cid-ujSlTYnvlF .justify-content-center {
  align-items: center;
}
.cid-ujSlTYnvlF .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-ujSlTYnvlF .mbr-text,
.cid-ujSlTYnvlF .mbr-section-btn {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ujSlTYnvlF .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ujSlTYnvlF .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ujSlTYnvlF .item-wrapper {
    padding: 4rem;
  }
}
.cid-sWiMVY0gH5 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-sWiMVY0gH5 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sWiMVY0gH5 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWiMVY0gH5 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWiMVY0gH5 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sWiMVY0gH5 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #ffffff;
}
.cid-sWiMVY0gH5 .card-title {
  color: #ffffff;
}
.cid-sWiMVY0gH5 P {
  color: #000000;
}
.cid-umdEw4BYCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umdEw4BYCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-umdEw4BYCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umdEw4BYCS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umdEw4BYCS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-umdEw4BYCS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-umdEw4BYCS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-umdEw4BYCS .copyright {
  color: #ffffff;
}
.cid-umdDRVLuUL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umdDRVLuUL .social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-umdDRVLuUL .social-row .soc-item {
  margin: 8px;
}
.cid-umdDRVLuUL .social-row .soc-item a:hover .mbr-iconfont,
.cid-umdDRVLuUL .social-row .soc-item a:focus .mbr-iconfont {
  background-color: #232323;
}
.cid-umdDRVLuUL .social-row .soc-item a .mbr-iconfont {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 32px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-umdDRVLuUL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-umdDRVLuUL .mbr-section-title {
  color: #ffffff;
}
.cid-umdDRVLuUL .mbr-section-title,
.cid-umdDRVLuUL .social-list {
  color: #000000;
}
