.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Open Sans', 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: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((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: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: #1d9374 !important;
}
.bg-success {
  background-color: #e1e1e1 !important;
}
.bg-info {
  background-color: #e1e1e1 !important;
}
.bg-warning {
  background-color: #e1e1e1 !important;
}
.bg-danger {
  background-color: #e1e1e1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1d9374 !important;
  border-color: #1d9374 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0f4b3b !important;
  border-color: #0f4b3b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0f4b3b !important;
  border-color: #0f4b3b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #575757 !important;
  border-color: #575757 !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: #2c2c2c !important;
  border-color: #2c2c2c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2c2c2c !important;
  border-color: #2c2c2c !important;
}
.btn-info,
.btn-info:active {
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  color: #626262 !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: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #626262 !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  color: #626262 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #626262 !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  color: #626262 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #626262 !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  color: #626262 !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: #b6b6b6 !important;
  border-color: #b6b6b6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #626262 !important;
  background-color: #b6b6b6 !important;
  border-color: #b6b6b6 !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: #1d9374;
  color: #1d9374;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0f4b3b !important;
  background-color: transparent!important;
  border-color: #0f4b3b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d9374 !important;
  border-color: #1d9374 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #575757;
  color: #575757;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2c2c2c !important;
  background-color: transparent!important;
  border-color: #2c2c2c !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #575757 !important;
  border-color: #575757 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #e1e1e1;
  color: #e1e1e1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b6b6b6 !important;
  background-color: transparent!important;
  border-color: #b6b6b6 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #626262 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #e1e1e1;
  color: #e1e1e1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b6b6b6 !important;
  background-color: transparent!important;
  border-color: #b6b6b6 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #626262 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e1e1e1;
  color: #e1e1e1;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b6b6b6 !important;
  background-color: transparent!important;
  border-color: #b6b6b6 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #626262 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e1e1e1;
  color: #e1e1e1;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b6b6b6 !important;
  background-color: transparent!important;
  border-color: #b6b6b6 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #626262 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1d9374 !important;
}
.text-secondary {
  color: #575757 !important;
}
.text-success {
  color: #e1e1e1 !important;
}
.text-info {
  color: #e1e1e1 !important;
}
.text-warning {
  color: #e1e1e1 !important;
}
.text-danger {
  color: #e1e1e1 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0c3e31 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242424 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #aeaeae !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #aeaeae !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #aeaeae !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #aeaeae !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1d9374;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e1e1e1;
}
.alert-warning {
  background-color: #e1e1e1;
}
.alert-danger {
  background-color: #e1e1e1;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1d9374;
  border-color: #1d9374;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1d9374;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #53ddb9;
}
.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: 'Open Sans', 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: #1d9374 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', 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: #1d9374;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1d9374;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1d9374;
}
.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: #1d9374;
  border-bottom-color: #1d9374;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #1d9374 !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: #575757 !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='%231d9374' %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-uH8EQqbnCN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uH8EQqbnCN nav.navbar {
  position: fixed;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uH8EQqbnCN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uH8EQqbnCN .dropdown-item:hover,
.cid-uH8EQqbnCN .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uH8EQqbnCN .dropdown-item:hover span {
  color: white;
}
.cid-uH8EQqbnCN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uH8EQqbnCN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uH8EQqbnCN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH8EQqbnCN .nav-link {
  position: relative;
}
.cid-uH8EQqbnCN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uH8EQqbnCN .container {
    flex-wrap: nowrap;
  }
}
.cid-uH8EQqbnCN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH8EQqbnCN .dropdown-menu,
.cid-uH8EQqbnCN .navbar.opened {
  background: #ffffff !important;
}
.cid-uH8EQqbnCN .nav-item:focus,
.cid-uH8EQqbnCN .nav-link:focus {
  outline: none;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH8EQqbnCN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH8EQqbnCN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH8EQqbnCN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uH8EQqbnCN .navbar.opened {
  transition: all 0.3s;
}
.cid-uH8EQqbnCN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH8EQqbnCN .navbar .navbar-logo img {
  width: auto;
}
.cid-uH8EQqbnCN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH8EQqbnCN .navbar.collapsed {
  justify-content: center;
}
.cid-uH8EQqbnCN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH8EQqbnCN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH8EQqbnCN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH8EQqbnCN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH8EQqbnCN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH8EQqbnCN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH8EQqbnCN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH8EQqbnCN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH8EQqbnCN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH8EQqbnCN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uH8EQqbnCN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uH8EQqbnCN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uH8EQqbnCN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH8EQqbnCN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH8EQqbnCN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH8EQqbnCN .dropdown-item.active,
.cid-uH8EQqbnCN .dropdown-item:active {
  background-color: transparent;
}
.cid-uH8EQqbnCN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH8EQqbnCN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uH8EQqbnCN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH8EQqbnCN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH8EQqbnCN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH8EQqbnCN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH8EQqbnCN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH8EQqbnCN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar {
    height: 70px;
  }
  .cid-uH8EQqbnCN .navbar.opened {
    height: auto;
  }
  .cid-uH8EQqbnCN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tL5xamMlOt {
  background-image: url("../../../assets/images/screenshot-2024-04-07-100253.png-1675x1112.png");
}
.cid-tL5xamMlOt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tL5xamMlOt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFl1Nvwi4c {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFl1Nvwi4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFl1Nvwi4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFl1Nvwi4c .video-wrapper iframe {
  width: 100%;
}
.cid-uFl1Nvwi4c .mbr-section-title,
.cid-uFl1Nvwi4c .mbr-section-subtitle,
.cid-uFl1Nvwi4c .mbr-text {
  text-align: center;
}
.cid-uFl3lm8uu7 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFl3lm8uu7 img,
.cid-uFl3lm8uu7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uFl3lm8uu7 .item:focus,
.cid-uFl3lm8uu7 span:focus {
  outline: none;
}
.cid-uFl3lm8uu7 .item-wrapper {
  position: relative;
}
.cid-uFl3lm8uu7 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFl3lm8uu7 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uFl3lm8uu7 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFl3lm8uu7 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uFl3lm8uu7 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uFl3lm8uu7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFl3lm8uu7 .mbr-section-title {
  color: #232323;
}
.cid-uFl3lm8uu7 .mbr-text,
.cid-uFl3lm8uu7 .mbr-section-btn {
  text-align: left;
}
.cid-uFl3lm8uu7 .item-title {
  text-align: left;
}
.cid-uFl3lm8uu7 .item-subtitle {
  text-align: left;
}
.cid-uFl3lm8uu7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uFl3lm8uu7 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uFl3lm8uu7 .embla__button--next,
.cid-uFl3lm8uu7 .embla__button--prev {
  display: flex;
}
.cid-uFl3lm8uu7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uFl3lm8uu7 .embla__button {
    display: none;
  }
}
.cid-uFl3lm8uu7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uFl3lm8uu7 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uFl3lm8uu7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFl3lm8uu7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFl3lm8uu7 .embla__button {
    top: auto;
  }
}
.cid-uFl3lm8uu7 .embla {
  position: relative;
  width: 100%;
}
.cid-uFl3lm8uu7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uFl3lm8uu7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uFl3lm8uu7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uFl3lm8uu7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uFkBu6m1X8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1d9374;
}
.cid-uFkBu6m1X8 .item:focus,
.cid-uFkBu6m1X8 span:focus {
  outline: none;
}
.cid-uFkBu6m1X8 .item-wrapper {
  position: relative;
}
.cid-uFkBu6m1X8 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #e1e1e1;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFkBu6m1X8 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uFkBu6m1X8 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFkBu6m1X8 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uFkBu6m1X8 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uFkBu6m1X8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFkBu6m1X8 .mbr-section-title {
  color: #ffffff;
}
.cid-uFkBu6m1X8 .mbr-text,
.cid-uFkBu6m1X8 .mbr-section-btn {
  text-align: center;
}
.cid-uFkBu6m1X8 .item-title {
  text-align: center;
}
.cid-uFkBu6m1X8 .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uFkBu6m1X8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uFkBu6m1X8 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uFkBu6m1X8 .embla__button--next,
.cid-uFkBu6m1X8 .embla__button--prev {
  display: flex;
}
.cid-uFkBu6m1X8 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uFkBu6m1X8 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uFkBu6m1X8 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uFkBu6m1X8 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uFkBu6m1X8 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uFkBu6m1X8 .embla__button {
    top: auto;
  }
}
.cid-uFkBu6m1X8 .embla {
  position: relative;
  width: 100%;
}
.cid-uFkBu6m1X8 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uFkBu6m1X8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uFkBu6m1X8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uFkBu6m1X8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uFkBu6m1X8 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uLIIVuZp2A {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIIVuZp2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIIVuZp2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIIVuZp2A .media-container-row {
  justify-content: space-between;
}
.cid-uLIIVuZp2A .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIIVuZp2A .text-content {
    max-width: none;
  }
}
.cid-uLIIVuZp2A .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIIVuZp2A .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIIVuZp2A .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIIVuZp2A .icons {
    justify-content: center !important;
  }
  .cid-uLIIVuZp2A .text-content * {
    text-align: center;
  }
}
.cid-uLIIVuZp2A P {
  color: #575757;
}
.cid-uLIIVuZp2A .mbr-section-title {
  color: #1d9374;
}
.cid-uH8EQqbnCN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uH8EQqbnCN nav.navbar {
  position: fixed;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uH8EQqbnCN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uH8EQqbnCN .dropdown-item:hover,
.cid-uH8EQqbnCN .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uH8EQqbnCN .dropdown-item:hover span {
  color: white;
}
.cid-uH8EQqbnCN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uH8EQqbnCN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uH8EQqbnCN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH8EQqbnCN .nav-link {
  position: relative;
}
.cid-uH8EQqbnCN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uH8EQqbnCN .container {
    flex-wrap: nowrap;
  }
}
.cid-uH8EQqbnCN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH8EQqbnCN .dropdown-menu,
.cid-uH8EQqbnCN .navbar.opened {
  background: #ffffff !important;
}
.cid-uH8EQqbnCN .nav-item:focus,
.cid-uH8EQqbnCN .nav-link:focus {
  outline: none;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH8EQqbnCN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH8EQqbnCN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH8EQqbnCN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH8EQqbnCN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uH8EQqbnCN .navbar.opened {
  transition: all 0.3s;
}
.cid-uH8EQqbnCN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH8EQqbnCN .navbar .navbar-logo img {
  width: auto;
}
.cid-uH8EQqbnCN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH8EQqbnCN .navbar.collapsed {
  justify-content: center;
}
.cid-uH8EQqbnCN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH8EQqbnCN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH8EQqbnCN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH8EQqbnCN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH8EQqbnCN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH8EQqbnCN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH8EQqbnCN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH8EQqbnCN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH8EQqbnCN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH8EQqbnCN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH8EQqbnCN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH8EQqbnCN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uH8EQqbnCN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uH8EQqbnCN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uH8EQqbnCN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH8EQqbnCN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH8EQqbnCN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH8EQqbnCN .dropdown-item.active,
.cid-uH8EQqbnCN .dropdown-item:active {
  background-color: transparent;
}
.cid-uH8EQqbnCN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH8EQqbnCN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH8EQqbnCN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uH8EQqbnCN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH8EQqbnCN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH8EQqbnCN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH8EQqbnCN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH8EQqbnCN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8EQqbnCN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH8EQqbnCN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8EQqbnCN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH8EQqbnCN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH8EQqbnCN .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-uH8EQqbnCN .navbar {
    height: 70px;
  }
  .cid-uH8EQqbnCN .navbar.opened {
    height: auto;
  }
  .cid-uH8EQqbnCN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH6W4uh1sM {
  background-image: url("../../../assets/images/screenshot-2025-03-13-205816.jpg-2000x1114.jpg");
}
.cid-uH6W4uh1sM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH6W4uh1sM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH72u7outf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uH72u7outf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH72u7outf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH72u7outf .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uH72u7outf .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uH72u7outf .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uH72u7outf .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uH72u7outf .row .row {
    flex-direction: column-reverse;
  }
  .cid-uH72u7outf .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uH72u7outf .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH72u7outf .card-subtitle {
  color: #0095ff;
}
.cid-uH72u7outf .mbr-text {
  color: #555555;
}
.cid-uH7RmgqI64 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH7RmgqI64 img,
.cid-uH7RmgqI64 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uH7RmgqI64 .item:focus,
.cid-uH7RmgqI64 span:focus {
  outline: none;
}
.cid-uH7RmgqI64 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uH7RmgqI64 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uH7RmgqI64 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uH7RmgqI64 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uH7RmgqI64 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uH7RmgqI64 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uH7RmgqI64 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uH7RmgqI64 .mbr-section-title {
  color: #1d9374;
}
.cid-uH7RmgqI64 .mbr-text,
.cid-uH7RmgqI64 .mbr-section-btn {
  text-align: left;
}
.cid-uH7RmgqI64 .item-title {
  text-align: left;
}
.cid-uH7RmgqI64 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uH7RmgqI64 .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-uLIIZjBJXA {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIIZjBJXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIIZjBJXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIIZjBJXA .media-container-row {
  justify-content: space-between;
}
.cid-uLIIZjBJXA .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIIZjBJXA .text-content {
    max-width: none;
  }
}
.cid-uLIIZjBJXA .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIIZjBJXA .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIIZjBJXA .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIIZjBJXA .icons {
    justify-content: center !important;
  }
  .cid-uLIIZjBJXA .text-content * {
    text-align: center;
  }
}
.cid-uLIIZjBJXA P {
  color: #575757;
}
.cid-uLIIZjBJXA .mbr-section-title {
  color: #1d9374;
}
.cid-uIezy2y2LY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIezy2y2LY nav.navbar {
  position: fixed;
}
.cid-uIezy2y2LY .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-uIezy2y2LY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIezy2y2LY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIezy2y2LY .dropdown-item:hover,
.cid-uIezy2y2LY .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uIezy2y2LY .dropdown-item:hover span {
  color: white;
}
.cid-uIezy2y2LY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIezy2y2LY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIezy2y2LY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIezy2y2LY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIezy2y2LY .nav-link {
  position: relative;
}
.cid-uIezy2y2LY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uIezy2y2LY .container {
    flex-wrap: nowrap;
  }
}
.cid-uIezy2y2LY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIezy2y2LY .dropdown-menu,
.cid-uIezy2y2LY .navbar.opened {
  background: #ffffff !important;
}
.cid-uIezy2y2LY .nav-item:focus,
.cid-uIezy2y2LY .nav-link:focus {
  outline: none;
}
.cid-uIezy2y2LY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIezy2y2LY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIezy2y2LY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIezy2y2LY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIezy2y2LY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIezy2y2LY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIezy2y2LY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uIezy2y2LY .navbar.opened {
  transition: all 0.3s;
}
.cid-uIezy2y2LY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIezy2y2LY .navbar .navbar-logo img {
  width: auto;
}
.cid-uIezy2y2LY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIezy2y2LY .navbar.collapsed {
  justify-content: center;
}
.cid-uIezy2y2LY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIezy2y2LY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIezy2y2LY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uIezy2y2LY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIezy2y2LY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIezy2y2LY .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-uIezy2y2LY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIezy2y2LY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIezy2y2LY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIezy2y2LY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIezy2y2LY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIezy2y2LY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIezy2y2LY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIezy2y2LY .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-uIezy2y2LY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIezy2y2LY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIezy2y2LY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIezy2y2LY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIezy2y2LY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIezy2y2LY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIezy2y2LY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIezy2y2LY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIezy2y2LY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIezy2y2LY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIezy2y2LY .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-uIezy2y2LY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIezy2y2LY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIezy2y2LY .dropdown-item.active,
.cid-uIezy2y2LY .dropdown-item:active {
  background-color: transparent;
}
.cid-uIezy2y2LY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIezy2y2LY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIezy2y2LY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIezy2y2LY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uIezy2y2LY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIezy2y2LY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIezy2y2LY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIezy2y2LY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIezy2y2LY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIezy2y2LY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIezy2y2LY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIezy2y2LY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIezy2y2LY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIezy2y2LY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIezy2y2LY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIezy2y2LY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIezy2y2LY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIezy2y2LY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIezy2y2LY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIezy2y2LY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIezy2y2LY .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-uIezy2y2LY .navbar {
    height: 70px;
  }
  .cid-uIezy2y2LY .navbar.opened {
    height: auto;
  }
  .cid-uIezy2y2LY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIezy3121I {
  background-image: url("../../../assets/images/bloomberg-presentation-03.27.2025-kal-kassa-bitcoinbirr-sized.jpg-2000x1159.jpg");
}
.cid-uIezy3121I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIezy3121I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIezy3121I .mbr-text,
.cid-uIezy3121I .mbr-section-btn {
  text-align: center;
}
.cid-uIezy3swTA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIezy3swTA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIezy3swTA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIezy3swTA .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uIezy3swTA .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIezy3swTA .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uIezy3swTA .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uIezy3swTA .row .row {
    flex-direction: column-reverse;
  }
  .cid-uIezy3swTA .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uIezy3swTA .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uIezy3swTA .card-subtitle {
  color: #0095ff;
}
.cid-uIezy3swTA .mbr-text {
  color: #555555;
}
.cid-uIeEO9YwM0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIeEO9YwM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIeEO9YwM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIeEO9YwM0 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uIeEO9YwM0 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uQ5NYL0AgR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQ5NYL0AgR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQ5NYL0AgR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQ5NYL0AgR .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-uQ5NYL0AgR .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uLIJ7DFayB {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJ7DFayB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJ7DFayB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJ7DFayB .media-container-row {
  justify-content: space-between;
}
.cid-uLIJ7DFayB .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJ7DFayB .text-content {
    max-width: none;
  }
}
.cid-uLIJ7DFayB .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJ7DFayB .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJ7DFayB .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJ7DFayB .icons {
    justify-content: center !important;
  }
  .cid-uLIJ7DFayB .text-content * {
    text-align: center;
  }
}
.cid-uLIJ7DFayB P {
  color: #575757;
}
.cid-uLIJ7DFayB .mbr-section-title {
  color: #1d9374;
}
.cid-uIEOOuWQgy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIEOOuWQgy nav.navbar {
  position: fixed;
}
.cid-uIEOOuWQgy .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-uIEOOuWQgy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIEOOuWQgy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIEOOuWQgy .dropdown-item:hover,
.cid-uIEOOuWQgy .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uIEOOuWQgy .dropdown-item:hover span {
  color: white;
}
.cid-uIEOOuWQgy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIEOOuWQgy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIEOOuWQgy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIEOOuWQgy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIEOOuWQgy .nav-link {
  position: relative;
}
.cid-uIEOOuWQgy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uIEOOuWQgy .container {
    flex-wrap: nowrap;
  }
}
.cid-uIEOOuWQgy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIEOOuWQgy .dropdown-menu,
.cid-uIEOOuWQgy .navbar.opened {
  background: #ffffff !important;
}
.cid-uIEOOuWQgy .nav-item:focus,
.cid-uIEOOuWQgy .nav-link:focus {
  outline: none;
}
.cid-uIEOOuWQgy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIEOOuWQgy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIEOOuWQgy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIEOOuWQgy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIEOOuWQgy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIEOOuWQgy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIEOOuWQgy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uIEOOuWQgy .navbar.opened {
  transition: all 0.3s;
}
.cid-uIEOOuWQgy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIEOOuWQgy .navbar .navbar-logo img {
  width: auto;
}
.cid-uIEOOuWQgy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIEOOuWQgy .navbar.collapsed {
  justify-content: center;
}
.cid-uIEOOuWQgy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIEOOuWQgy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIEOOuWQgy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uIEOOuWQgy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIEOOuWQgy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIEOOuWQgy .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-uIEOOuWQgy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIEOOuWQgy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIEOOuWQgy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIEOOuWQgy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIEOOuWQgy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIEOOuWQgy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIEOOuWQgy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIEOOuWQgy .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-uIEOOuWQgy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIEOOuWQgy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIEOOuWQgy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIEOOuWQgy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIEOOuWQgy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIEOOuWQgy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIEOOuWQgy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIEOOuWQgy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIEOOuWQgy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIEOOuWQgy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIEOOuWQgy .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-uIEOOuWQgy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIEOOuWQgy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIEOOuWQgy .dropdown-item.active,
.cid-uIEOOuWQgy .dropdown-item:active {
  background-color: transparent;
}
.cid-uIEOOuWQgy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIEOOuWQgy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIEOOuWQgy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIEOOuWQgy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uIEOOuWQgy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIEOOuWQgy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIEOOuWQgy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIEOOuWQgy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIEOOuWQgy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIEOOuWQgy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIEOOuWQgy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIEOOuWQgy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIEOOuWQgy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIEOOuWQgy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIEOOuWQgy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIEOOuWQgy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIEOOuWQgy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIEOOuWQgy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIEOOuWQgy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIEOOuWQgy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIEOOuWQgy .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-uIEOOuWQgy .navbar {
    height: 70px;
  }
  .cid-uIEOOuWQgy .navbar.opened {
    height: auto;
  }
  .cid-uIEOOuWQgy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIEOOvyrCI {
  background-image: url("../../../assets/images/dsc-1048-sized.jpg-2000x1116.jpg");
}
.cid-uIEOOvyrCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIEOOvyrCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIEOOxSgUR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #1d9374;
}
.cid-uIEOOxSgUR .item:focus,
.cid-uIEOOxSgUR span:focus {
  outline: none;
}
.cid-uIEOOxSgUR .item-wrapper {
  position: relative;
}
.cid-uIEOOxSgUR .slide-content {
  position: relative;
  border-radius: 4px;
  background: #e1e1e1;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIEOOxSgUR .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uIEOOxSgUR .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIEOOxSgUR .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uIEOOxSgUR .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uIEOOxSgUR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIEOOxSgUR .mbr-section-title {
  color: #ffffff;
}
.cid-uIEOOxSgUR .mbr-text,
.cid-uIEOOxSgUR .mbr-section-btn {
  text-align: center;
}
.cid-uIEOOxSgUR .item-title {
  text-align: center;
}
.cid-uIEOOxSgUR .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uIEOOxSgUR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uIEOOxSgUR .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uIEOOxSgUR .embla__button--next,
.cid-uIEOOxSgUR .embla__button--prev {
  display: flex;
}
.cid-uIEOOxSgUR .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uIEOOxSgUR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIEOOxSgUR .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uIEOOxSgUR .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIEOOxSgUR .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uIEOOxSgUR .embla__button {
    top: auto;
  }
}
.cid-uIEOOxSgUR .embla {
  position: relative;
  width: 100%;
}
.cid-uIEOOxSgUR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uIEOOxSgUR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIEOOxSgUR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIEOOxSgUR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIEOOxSgUR .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uLIJaRs2Je {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJaRs2Je .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJaRs2Je .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJaRs2Je .media-container-row {
  justify-content: space-between;
}
.cid-uLIJaRs2Je .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJaRs2Je .text-content {
    max-width: none;
  }
}
.cid-uLIJaRs2Je .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJaRs2Je .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJaRs2Je .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJaRs2Je .icons {
    justify-content: center !important;
  }
  .cid-uLIJaRs2Je .text-content * {
    text-align: center;
  }
}
.cid-uLIJaRs2Je P {
  color: #575757;
}
.cid-uLIJaRs2Je .mbr-section-title {
  color: #1d9374;
}
.cid-uJRiIhTY3i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJRiIhTY3i nav.navbar {
  position: fixed;
}
.cid-uJRiIhTY3i .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-uJRiIhTY3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJRiIhTY3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJRiIhTY3i .dropdown-item:hover,
.cid-uJRiIhTY3i .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uJRiIhTY3i .dropdown-item:hover span {
  color: white;
}
.cid-uJRiIhTY3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJRiIhTY3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJRiIhTY3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJRiIhTY3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJRiIhTY3i .nav-link {
  position: relative;
}
.cid-uJRiIhTY3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJRiIhTY3i .container {
    flex-wrap: nowrap;
  }
}
.cid-uJRiIhTY3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJRiIhTY3i .dropdown-menu,
.cid-uJRiIhTY3i .navbar.opened {
  background: #ffffff !important;
}
.cid-uJRiIhTY3i .nav-item:focus,
.cid-uJRiIhTY3i .nav-link:focus {
  outline: none;
}
.cid-uJRiIhTY3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJRiIhTY3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJRiIhTY3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJRiIhTY3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJRiIhTY3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJRiIhTY3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJRiIhTY3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJRiIhTY3i .navbar.opened {
  transition: all 0.3s;
}
.cid-uJRiIhTY3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJRiIhTY3i .navbar .navbar-logo img {
  width: auto;
}
.cid-uJRiIhTY3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJRiIhTY3i .navbar.collapsed {
  justify-content: center;
}
.cid-uJRiIhTY3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJRiIhTY3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJRiIhTY3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uJRiIhTY3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJRiIhTY3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJRiIhTY3i .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-uJRiIhTY3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJRiIhTY3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJRiIhTY3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJRiIhTY3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJRiIhTY3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJRiIhTY3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJRiIhTY3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJRiIhTY3i .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-uJRiIhTY3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJRiIhTY3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJRiIhTY3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJRiIhTY3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJRiIhTY3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJRiIhTY3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJRiIhTY3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJRiIhTY3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJRiIhTY3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJRiIhTY3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJRiIhTY3i .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-uJRiIhTY3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJRiIhTY3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJRiIhTY3i .dropdown-item.active,
.cid-uJRiIhTY3i .dropdown-item:active {
  background-color: transparent;
}
.cid-uJRiIhTY3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJRiIhTY3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJRiIhTY3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJRiIhTY3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJRiIhTY3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJRiIhTY3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJRiIhTY3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJRiIhTY3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJRiIhTY3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJRiIhTY3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJRiIhTY3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJRiIhTY3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJRiIhTY3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJRiIhTY3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJRiIhTY3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJRiIhTY3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJRiIhTY3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJRiIhTY3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJRiIhTY3i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJRiIhTY3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJRiIhTY3i .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-uJRiIhTY3i .navbar {
    height: 70px;
  }
  .cid-uJRiIhTY3i .navbar.opened {
    height: auto;
  }
  .cid-uJRiIhTY3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJRiIihuVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJRiIihuVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-uJRiIihuVY .mbr-text,
.cid-uJRiIihuVY .mbr-section-btn {
  text-align: center;
}
.cid-uJRiIizlgz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uJRiIizlgz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJRiIizlgz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJRiIizlgz .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uJRiIizlgz .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJRiIizlgz .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uJRiIizlgz .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uJRiIizlgz .row .row {
    flex-direction: column-reverse;
  }
  .cid-uJRiIizlgz .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uJRiIizlgz .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJRiIizlgz .card-subtitle {
  color: #0095ff;
}
.cid-uJRiIizlgz .mbr-text {
  color: #555555;
}
.cid-uLIJizImdF {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJizImdF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJizImdF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJizImdF .media-container-row {
  justify-content: space-between;
}
.cid-uLIJizImdF .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJizImdF .text-content {
    max-width: none;
  }
}
.cid-uLIJizImdF .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJizImdF .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJizImdF .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJizImdF .icons {
    justify-content: center !important;
  }
  .cid-uLIJizImdF .text-content * {
    text-align: center;
  }
}
.cid-uLIJizImdF P {
  color: #575757;
}
.cid-uLIJizImdF .mbr-section-title {
  color: #1d9374;
}
.cid-uJWP9kyITP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJWP9kyITP nav.navbar {
  position: fixed;
}
.cid-uJWP9kyITP .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-uJWP9kyITP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJWP9kyITP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJWP9kyITP .dropdown-item:hover,
.cid-uJWP9kyITP .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uJWP9kyITP .dropdown-item:hover span {
  color: white;
}
.cid-uJWP9kyITP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJWP9kyITP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJWP9kyITP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJWP9kyITP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJWP9kyITP .nav-link {
  position: relative;
}
.cid-uJWP9kyITP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJWP9kyITP .container {
    flex-wrap: nowrap;
  }
}
.cid-uJWP9kyITP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJWP9kyITP .dropdown-menu,
.cid-uJWP9kyITP .navbar.opened {
  background: #ffffff !important;
}
.cid-uJWP9kyITP .nav-item:focus,
.cid-uJWP9kyITP .nav-link:focus {
  outline: none;
}
.cid-uJWP9kyITP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJWP9kyITP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJWP9kyITP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJWP9kyITP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJWP9kyITP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJWP9kyITP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJWP9kyITP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJWP9kyITP .navbar.opened {
  transition: all 0.3s;
}
.cid-uJWP9kyITP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJWP9kyITP .navbar .navbar-logo img {
  width: auto;
}
.cid-uJWP9kyITP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJWP9kyITP .navbar.collapsed {
  justify-content: center;
}
.cid-uJWP9kyITP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJWP9kyITP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJWP9kyITP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uJWP9kyITP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJWP9kyITP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJWP9kyITP .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-uJWP9kyITP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJWP9kyITP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJWP9kyITP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJWP9kyITP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJWP9kyITP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJWP9kyITP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJWP9kyITP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJWP9kyITP .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-uJWP9kyITP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJWP9kyITP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJWP9kyITP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJWP9kyITP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJWP9kyITP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJWP9kyITP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJWP9kyITP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJWP9kyITP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJWP9kyITP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJWP9kyITP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJWP9kyITP .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-uJWP9kyITP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJWP9kyITP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJWP9kyITP .dropdown-item.active,
.cid-uJWP9kyITP .dropdown-item:active {
  background-color: transparent;
}
.cid-uJWP9kyITP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJWP9kyITP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJWP9kyITP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJWP9kyITP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJWP9kyITP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJWP9kyITP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJWP9kyITP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJWP9kyITP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJWP9kyITP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJWP9kyITP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJWP9kyITP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJWP9kyITP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJWP9kyITP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJWP9kyITP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJWP9kyITP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJWP9kyITP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJWP9kyITP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJWP9kyITP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJWP9kyITP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJWP9kyITP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJWP9kyITP .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-uJWP9kyITP .navbar {
    height: 70px;
  }
  .cid-uJWP9kyITP .navbar.opened {
    height: auto;
  }
  .cid-uJWP9kyITP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJWP9kWFoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJWP9kWFoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-uJWP9kWFoe .mbr-text,
.cid-uJWP9kWFoe .mbr-section-btn {
  text-align: center;
}
.cid-uJWP9le1bu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uJWP9le1bu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJWP9le1bu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJWP9le1bu .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uJWP9le1bu .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJWP9le1bu .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uJWP9le1bu .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uJWP9le1bu .row .row {
    flex-direction: column-reverse;
  }
  .cid-uJWP9le1bu .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uJWP9le1bu .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJWP9le1bu .card-subtitle {
  color: #0095ff;
}
.cid-uJWP9le1bu .mbr-text {
  color: #555555;
}
.cid-uLIJw7dD3f {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJw7dD3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJw7dD3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJw7dD3f .media-container-row {
  justify-content: space-between;
}
.cid-uLIJw7dD3f .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJw7dD3f .text-content {
    max-width: none;
  }
}
.cid-uLIJw7dD3f .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJw7dD3f .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJw7dD3f .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJw7dD3f .icons {
    justify-content: center !important;
  }
  .cid-uLIJw7dD3f .text-content * {
    text-align: center;
  }
}
.cid-uLIJw7dD3f P {
  color: #575757;
}
.cid-uLIJw7dD3f .mbr-section-title {
  color: #1d9374;
}
.cid-uLfAlom0pM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLfAlom0pM nav.navbar {
  position: fixed;
}
.cid-uLfAlom0pM .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-uLfAlom0pM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLfAlom0pM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLfAlom0pM .dropdown-item:hover,
.cid-uLfAlom0pM .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uLfAlom0pM .dropdown-item:hover span {
  color: white;
}
.cid-uLfAlom0pM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLfAlom0pM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLfAlom0pM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLfAlom0pM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLfAlom0pM .nav-link {
  position: relative;
}
.cid-uLfAlom0pM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uLfAlom0pM .container {
    flex-wrap: nowrap;
  }
}
.cid-uLfAlom0pM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLfAlom0pM .dropdown-menu,
.cid-uLfAlom0pM .navbar.opened {
  background: #ffffff !important;
}
.cid-uLfAlom0pM .nav-item:focus,
.cid-uLfAlom0pM .nav-link:focus {
  outline: none;
}
.cid-uLfAlom0pM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLfAlom0pM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLfAlom0pM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLfAlom0pM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLfAlom0pM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLfAlom0pM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLfAlom0pM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLfAlom0pM .navbar.opened {
  transition: all 0.3s;
}
.cid-uLfAlom0pM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLfAlom0pM .navbar .navbar-logo img {
  width: auto;
}
.cid-uLfAlom0pM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLfAlom0pM .navbar.collapsed {
  justify-content: center;
}
.cid-uLfAlom0pM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLfAlom0pM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLfAlom0pM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uLfAlom0pM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLfAlom0pM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLfAlom0pM .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-uLfAlom0pM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLfAlom0pM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLfAlom0pM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLfAlom0pM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLfAlom0pM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLfAlom0pM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLfAlom0pM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLfAlom0pM .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-uLfAlom0pM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLfAlom0pM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLfAlom0pM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLfAlom0pM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLfAlom0pM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLfAlom0pM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLfAlom0pM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLfAlom0pM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLfAlom0pM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLfAlom0pM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLfAlom0pM .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-uLfAlom0pM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLfAlom0pM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLfAlom0pM .dropdown-item.active,
.cid-uLfAlom0pM .dropdown-item:active {
  background-color: transparent;
}
.cid-uLfAlom0pM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLfAlom0pM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLfAlom0pM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLfAlom0pM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLfAlom0pM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLfAlom0pM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLfAlom0pM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLfAlom0pM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLfAlom0pM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLfAlom0pM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLfAlom0pM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLfAlom0pM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLfAlom0pM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLfAlom0pM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLfAlom0pM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLfAlom0pM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLfAlom0pM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLfAlom0pM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLfAlom0pM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLfAlom0pM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLfAlom0pM .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-uLfAlom0pM .navbar {
    height: 70px;
  }
  .cid-uLfAlom0pM .navbar.opened {
    height: auto;
  }
  .cid-uLfAlom0pM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLfAlp2az7 {
  background-image: url("../../../assets/images/ngc3324-jwst-scaled.jpg-2000x1141.jpg");
}
.cid-uLfAlp2az7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLfAlp2az7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLfAlp2az7 .mbr-text,
.cid-uLfAlp2az7 .mbr-section-btn {
  text-align: center;
}
.cid-uLfCSpDg57 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLfKGiP5dC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uLfKGiP5dC img {
  width: 120px;
  margin: auto;
}
.cid-uLfKGiP5dC .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uLfKGiP5dC .card {
    max-width: 12.5%;
  }
}
.cid-uLfCHNQn2X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uLfCHNQn2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLfCHNQn2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLfCHNQn2X .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uLfCHNQn2X .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uLfCHNQn2X .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #1d9374;
}
.cid-uLfCHNQn2X .panel-body,
.cid-uLfCHNQn2X .card-header {
  padding: 1rem 0;
}
.cid-uLfCHNQn2X .panel-title-edit {
  color: #575757;
}
.cid-uLfCHNQn2X H3 {
  color: #1d9374;
}
.cid-uLIJ3TxAo5 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJ3TxAo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJ3TxAo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJ3TxAo5 .media-container-row {
  justify-content: space-between;
}
.cid-uLIJ3TxAo5 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJ3TxAo5 .text-content {
    max-width: none;
  }
}
.cid-uLIJ3TxAo5 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJ3TxAo5 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJ3TxAo5 .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJ3TxAo5 .icons {
    justify-content: center !important;
  }
  .cid-uLIJ3TxAo5 .text-content * {
    text-align: center;
  }
}
.cid-uLIJ3TxAo5 P {
  color: #575757;
}
.cid-uLIJ3TxAo5 .mbr-section-title {
  color: #1d9374;
}
.cid-uLwEDt4m6K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLwEDt4m6K nav.navbar {
  position: fixed;
}
.cid-uLwEDt4m6K .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-uLwEDt4m6K .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLwEDt4m6K .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLwEDt4m6K .dropdown-item:hover,
.cid-uLwEDt4m6K .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uLwEDt4m6K .dropdown-item:hover span {
  color: white;
}
.cid-uLwEDt4m6K .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLwEDt4m6K .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLwEDt4m6K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLwEDt4m6K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLwEDt4m6K .nav-link {
  position: relative;
}
.cid-uLwEDt4m6K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uLwEDt4m6K .container {
    flex-wrap: nowrap;
  }
}
.cid-uLwEDt4m6K .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLwEDt4m6K .dropdown-menu,
.cid-uLwEDt4m6K .navbar.opened {
  background: #ffffff !important;
}
.cid-uLwEDt4m6K .nav-item:focus,
.cid-uLwEDt4m6K .nav-link:focus {
  outline: none;
}
.cid-uLwEDt4m6K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLwEDt4m6K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLwEDt4m6K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLwEDt4m6K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLwEDt4m6K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLwEDt4m6K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLwEDt4m6K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLwEDt4m6K .navbar.opened {
  transition: all 0.3s;
}
.cid-uLwEDt4m6K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLwEDt4m6K .navbar .navbar-logo img {
  width: auto;
}
.cid-uLwEDt4m6K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLwEDt4m6K .navbar.collapsed {
  justify-content: center;
}
.cid-uLwEDt4m6K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLwEDt4m6K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLwEDt4m6K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uLwEDt4m6K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLwEDt4m6K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLwEDt4m6K .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-uLwEDt4m6K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLwEDt4m6K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLwEDt4m6K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLwEDt4m6K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLwEDt4m6K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLwEDt4m6K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLwEDt4m6K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLwEDt4m6K .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-uLwEDt4m6K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLwEDt4m6K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLwEDt4m6K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLwEDt4m6K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLwEDt4m6K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLwEDt4m6K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLwEDt4m6K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLwEDt4m6K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLwEDt4m6K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLwEDt4m6K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLwEDt4m6K .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-uLwEDt4m6K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLwEDt4m6K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLwEDt4m6K .dropdown-item.active,
.cid-uLwEDt4m6K .dropdown-item:active {
  background-color: transparent;
}
.cid-uLwEDt4m6K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLwEDt4m6K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLwEDt4m6K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLwEDt4m6K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLwEDt4m6K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLwEDt4m6K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLwEDt4m6K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLwEDt4m6K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLwEDt4m6K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLwEDt4m6K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLwEDt4m6K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLwEDt4m6K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLwEDt4m6K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLwEDt4m6K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLwEDt4m6K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLwEDt4m6K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLwEDt4m6K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLwEDt4m6K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLwEDt4m6K .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLwEDt4m6K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLwEDt4m6K .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-uLwEDt4m6K .navbar {
    height: 70px;
  }
  .cid-uLwEDt4m6K .navbar.opened {
    height: auto;
  }
  .cid-uLwEDt4m6K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLwEDtmTPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLwEDtmTPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-uLwEDtmTPp .mbr-text,
.cid-uLwEDtmTPp .mbr-section-btn {
  text-align: center;
}
.cid-uLwEDtDTmi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uLwEDtDTmi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLwEDtDTmi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLwEDtDTmi .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uLwEDtDTmi .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLwEDtDTmi .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uLwEDtDTmi .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uLwEDtDTmi .row .row {
    flex-direction: column-reverse;
  }
  .cid-uLwEDtDTmi .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLwEDtDTmi .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLwEDtDTmi .card-subtitle {
  color: #0095ff;
}
.cid-uLwEDtDTmi .mbr-text {
  color: #555555;
}
.cid-uLIJoICuZv {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIJoICuZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIJoICuZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIJoICuZv .media-container-row {
  justify-content: space-between;
}
.cid-uLIJoICuZv .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIJoICuZv .text-content {
    max-width: none;
  }
}
.cid-uLIJoICuZv .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIJoICuZv .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIJoICuZv .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIJoICuZv .icons {
    justify-content: center !important;
  }
  .cid-uLIJoICuZv .text-content * {
    text-align: center;
  }
}
.cid-uLIJoICuZv P {
  color: #575757;
}
.cid-uLIJoICuZv .mbr-section-title {
  color: #1d9374;
}
.cid-uLIslq5sH6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLIslq5sH6 nav.navbar {
  position: fixed;
}
.cid-uLIslq5sH6 .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-uLIslq5sH6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLIslq5sH6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLIslq5sH6 .dropdown-item:hover,
.cid-uLIslq5sH6 .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uLIslq5sH6 .dropdown-item:hover span {
  color: white;
}
.cid-uLIslq5sH6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLIslq5sH6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLIslq5sH6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLIslq5sH6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLIslq5sH6 .nav-link {
  position: relative;
}
.cid-uLIslq5sH6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uLIslq5sH6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uLIslq5sH6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLIslq5sH6 .dropdown-menu,
.cid-uLIslq5sH6 .navbar.opened {
  background: #ffffff !important;
}
.cid-uLIslq5sH6 .nav-item:focus,
.cid-uLIslq5sH6 .nav-link:focus {
  outline: none;
}
.cid-uLIslq5sH6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLIslq5sH6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLIslq5sH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLIslq5sH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLIslq5sH6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLIslq5sH6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLIslq5sH6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLIslq5sH6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLIslq5sH6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLIslq5sH6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uLIslq5sH6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLIslq5sH6 .navbar.collapsed {
  justify-content: center;
}
.cid-uLIslq5sH6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLIslq5sH6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLIslq5sH6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uLIslq5sH6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLIslq5sH6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLIslq5sH6 .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-uLIslq5sH6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLIslq5sH6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLIslq5sH6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLIslq5sH6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLIslq5sH6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLIslq5sH6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLIslq5sH6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLIslq5sH6 .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-uLIslq5sH6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLIslq5sH6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLIslq5sH6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLIslq5sH6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLIslq5sH6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLIslq5sH6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLIslq5sH6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLIslq5sH6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLIslq5sH6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLIslq5sH6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLIslq5sH6 .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-uLIslq5sH6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLIslq5sH6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLIslq5sH6 .dropdown-item.active,
.cid-uLIslq5sH6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLIslq5sH6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLIslq5sH6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLIslq5sH6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLIslq5sH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLIslq5sH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLIslq5sH6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLIslq5sH6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLIslq5sH6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLIslq5sH6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLIslq5sH6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLIslq5sH6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLIslq5sH6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLIslq5sH6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLIslq5sH6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLIslq5sH6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLIslq5sH6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLIslq5sH6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLIslq5sH6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLIslq5sH6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLIslq5sH6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLIslq5sH6 .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-uLIslq5sH6 .navbar {
    height: 70px;
  }
  .cid-uLIslq5sH6 .navbar.opened {
    height: auto;
  }
  .cid-uLIslq5sH6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLIslqukCd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIslqukCd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-uLIslqukCd .mbr-text,
.cid-uLIslqukCd .mbr-section-btn {
  text-align: center;
}
.cid-uWhTV6Ah0u {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWhTV6Ah0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWhTV6Ah0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWhTV6Ah0u .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uWhTV6Ah0u img {
  margin: auto;
  width: 140px;
}
.cid-uWhTV6Ah0u .row {
  align-items: flex-start;
}
.cid-uWhTV6Ah0u .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-uWhTV6Ah0u .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uWhTV6Ah0u .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWhTV6Ah0u .item-wrapper {
    padding: 1rem;
  }
}
.cid-uWi1wlCsee {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWi1wlCsee .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWi1wlCsee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWi1wlCsee .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uWi1wlCsee .icon-box {
  background: #1d9374;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uWi1wlCsee .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uWi1wlCsee .card {
    margin-bottom: 2rem;
  }
  .cid-uWi1wlCsee .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uWi1wlCsee .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIslrsuMj {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLIslrsuMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLIslrsuMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLIslrsuMj .media-container-row {
  justify-content: space-between;
}
.cid-uLIslrsuMj .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLIslrsuMj .text-content {
    max-width: none;
  }
}
.cid-uLIslrsuMj .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLIslrsuMj .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLIslrsuMj .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLIslrsuMj .icons {
    justify-content: center !important;
  }
  .cid-uLIslrsuMj .text-content * {
    text-align: center;
  }
}
.cid-uLIslrsuMj P {
  color: #575757;
}
.cid-uLIslrsuMj .mbr-section-title {
  color: #1d9374;
}
.cid-uLWAH30NZd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLWAH30NZd nav.navbar {
  position: fixed;
}
.cid-uLWAH30NZd .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-uLWAH30NZd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLWAH30NZd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLWAH30NZd .dropdown-item:hover,
.cid-uLWAH30NZd .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uLWAH30NZd .dropdown-item:hover span {
  color: white;
}
.cid-uLWAH30NZd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLWAH30NZd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLWAH30NZd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLWAH30NZd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLWAH30NZd .nav-link {
  position: relative;
}
.cid-uLWAH30NZd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uLWAH30NZd .container {
    flex-wrap: nowrap;
  }
}
.cid-uLWAH30NZd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLWAH30NZd .dropdown-menu,
.cid-uLWAH30NZd .navbar.opened {
  background: #ffffff !important;
}
.cid-uLWAH30NZd .nav-item:focus,
.cid-uLWAH30NZd .nav-link:focus {
  outline: none;
}
.cid-uLWAH30NZd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLWAH30NZd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLWAH30NZd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLWAH30NZd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLWAH30NZd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLWAH30NZd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLWAH30NZd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLWAH30NZd .navbar.opened {
  transition: all 0.3s;
}
.cid-uLWAH30NZd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLWAH30NZd .navbar .navbar-logo img {
  width: auto;
}
.cid-uLWAH30NZd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLWAH30NZd .navbar.collapsed {
  justify-content: center;
}
.cid-uLWAH30NZd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLWAH30NZd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLWAH30NZd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uLWAH30NZd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLWAH30NZd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLWAH30NZd .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-uLWAH30NZd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLWAH30NZd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLWAH30NZd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLWAH30NZd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLWAH30NZd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLWAH30NZd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLWAH30NZd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLWAH30NZd .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-uLWAH30NZd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLWAH30NZd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLWAH30NZd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLWAH30NZd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLWAH30NZd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLWAH30NZd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLWAH30NZd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLWAH30NZd .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLWAH30NZd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLWAH30NZd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLWAH30NZd .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-uLWAH30NZd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLWAH30NZd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLWAH30NZd .dropdown-item.active,
.cid-uLWAH30NZd .dropdown-item:active {
  background-color: transparent;
}
.cid-uLWAH30NZd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLWAH30NZd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLWAH30NZd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLWAH30NZd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLWAH30NZd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLWAH30NZd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLWAH30NZd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLWAH30NZd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLWAH30NZd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLWAH30NZd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLWAH30NZd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLWAH30NZd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLWAH30NZd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLWAH30NZd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLWAH30NZd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLWAH30NZd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLWAH30NZd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLWAH30NZd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLWAH30NZd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLWAH30NZd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLWAH30NZd .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-uLWAH30NZd .navbar {
    height: 70px;
  }
  .cid-uLWAH30NZd .navbar.opened {
    height: auto;
  }
  .cid-uLWAH30NZd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLWAH3Jjyw {
  background-image: url("../../../assets/images/ktc-promo-privacy-policy-lg.jpg-2000x586.jpg");
}
.cid-uLWAH3Jjyw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLWAH3Jjyw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLWAH4ihcF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLWGJBVj5k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLWAH4L4N0 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLWAH4L4N0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLWAH4L4N0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLWAH4L4N0 .media-container-row {
  justify-content: space-between;
}
.cid-uLWAH4L4N0 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLWAH4L4N0 .text-content {
    max-width: none;
  }
}
.cid-uLWAH4L4N0 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLWAH4L4N0 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLWAH4L4N0 .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLWAH4L4N0 .icons {
    justify-content: center !important;
  }
  .cid-uLWAH4L4N0 .text-content * {
    text-align: center;
  }
}
.cid-uLWAH4L4N0 P {
  color: #575757;
}
.cid-uLWAH4L4N0 .mbr-section-title {
  color: #1d9374;
}
.cid-uLWxmsbuzP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uLWxmsbuzP nav.navbar {
  position: fixed;
}
.cid-uLWxmsbuzP .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-uLWxmsbuzP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLWxmsbuzP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLWxmsbuzP .dropdown-item:hover,
.cid-uLWxmsbuzP .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-uLWxmsbuzP .dropdown-item:hover span {
  color: white;
}
.cid-uLWxmsbuzP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLWxmsbuzP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLWxmsbuzP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLWxmsbuzP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLWxmsbuzP .nav-link {
  position: relative;
}
.cid-uLWxmsbuzP .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uLWxmsbuzP .container {
    flex-wrap: nowrap;
  }
}
.cid-uLWxmsbuzP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLWxmsbuzP .dropdown-menu,
.cid-uLWxmsbuzP .navbar.opened {
  background: #ffffff !important;
}
.cid-uLWxmsbuzP .nav-item:focus,
.cid-uLWxmsbuzP .nav-link:focus {
  outline: none;
}
.cid-uLWxmsbuzP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLWxmsbuzP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLWxmsbuzP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLWxmsbuzP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLWxmsbuzP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLWxmsbuzP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLWxmsbuzP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uLWxmsbuzP .navbar.opened {
  transition: all 0.3s;
}
.cid-uLWxmsbuzP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLWxmsbuzP .navbar .navbar-logo img {
  width: auto;
}
.cid-uLWxmsbuzP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLWxmsbuzP .navbar.collapsed {
  justify-content: center;
}
.cid-uLWxmsbuzP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLWxmsbuzP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLWxmsbuzP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uLWxmsbuzP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLWxmsbuzP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLWxmsbuzP .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-uLWxmsbuzP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLWxmsbuzP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLWxmsbuzP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLWxmsbuzP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLWxmsbuzP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLWxmsbuzP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLWxmsbuzP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLWxmsbuzP .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-uLWxmsbuzP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLWxmsbuzP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLWxmsbuzP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLWxmsbuzP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLWxmsbuzP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLWxmsbuzP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uLWxmsbuzP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uLWxmsbuzP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLWxmsbuzP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLWxmsbuzP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLWxmsbuzP .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-uLWxmsbuzP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLWxmsbuzP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLWxmsbuzP .dropdown-item.active,
.cid-uLWxmsbuzP .dropdown-item:active {
  background-color: transparent;
}
.cid-uLWxmsbuzP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLWxmsbuzP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLWxmsbuzP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLWxmsbuzP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uLWxmsbuzP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLWxmsbuzP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLWxmsbuzP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLWxmsbuzP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLWxmsbuzP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLWxmsbuzP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLWxmsbuzP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLWxmsbuzP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLWxmsbuzP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLWxmsbuzP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLWxmsbuzP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLWxmsbuzP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLWxmsbuzP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLWxmsbuzP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLWxmsbuzP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uLWxmsbuzP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLWxmsbuzP .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-uLWxmsbuzP .navbar {
    height: 70px;
  }
  .cid-uLWxmsbuzP .navbar.opened {
    height: auto;
  }
  .cid-uLWxmsbuzP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLWxmsURro {
  background-image: url("../../../assets/images/premium-photo-1725384940713-45cdbbb49d94.jpeg-2000x1333.jpg");
}
.cid-uLWxmsURro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLWxmsURro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLWxUl1LW3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLWxmvq1Md {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uLWxmvq1Md .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLWxmvq1Md .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLWxmvq1Md .media-container-row {
  justify-content: space-between;
}
.cid-uLWxmvq1Md .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uLWxmvq1Md .text-content {
    max-width: none;
  }
}
.cid-uLWxmvq1Md .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uLWxmvq1Md .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uLWxmvq1Md .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uLWxmvq1Md .icons {
    justify-content: center !important;
  }
  .cid-uLWxmvq1Md .text-content * {
    text-align: center;
  }
}
.cid-uLWxmvq1Md P {
  color: #575757;
}
.cid-uLWxmvq1Md .mbr-section-title {
  color: #1d9374;
}
.cid-v3b8IK7Uk3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3b8IK7Uk3 nav.navbar {
  position: fixed;
}
.cid-v3b8IK7Uk3 .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-v3b8IK7Uk3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3b8IK7Uk3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3b8IK7Uk3 .dropdown-item:hover,
.cid-v3b8IK7Uk3 .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-v3b8IK7Uk3 .dropdown-item:hover span {
  color: white;
}
.cid-v3b8IK7Uk3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3b8IK7Uk3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3b8IK7Uk3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3b8IK7Uk3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3b8IK7Uk3 .nav-link {
  position: relative;
}
.cid-v3b8IK7Uk3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3b8IK7Uk3 .container {
    flex-wrap: nowrap;
  }
}
.cid-v3b8IK7Uk3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3b8IK7Uk3 .dropdown-menu,
.cid-v3b8IK7Uk3 .navbar.opened {
  background: #ffffff !important;
}
.cid-v3b8IK7Uk3 .nav-item:focus,
.cid-v3b8IK7Uk3 .nav-link:focus {
  outline: none;
}
.cid-v3b8IK7Uk3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3b8IK7Uk3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3b8IK7Uk3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3b8IK7Uk3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3b8IK7Uk3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3b8IK7Uk3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3b8IK7Uk3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3b8IK7Uk3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3b8IK7Uk3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3b8IK7Uk3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3b8IK7Uk3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3b8IK7Uk3 .navbar.collapsed {
  justify-content: center;
}
.cid-v3b8IK7Uk3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3b8IK7Uk3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3b8IK7Uk3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v3b8IK7Uk3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3b8IK7Uk3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3b8IK7Uk3 .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-v3b8IK7Uk3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3b8IK7Uk3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3b8IK7Uk3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3b8IK7Uk3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3b8IK7Uk3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3b8IK7Uk3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3b8IK7Uk3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3b8IK7Uk3 .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-v3b8IK7Uk3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3b8IK7Uk3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3b8IK7Uk3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3b8IK7Uk3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3b8IK7Uk3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3b8IK7Uk3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3b8IK7Uk3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3b8IK7Uk3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3b8IK7Uk3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3b8IK7Uk3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3b8IK7Uk3 .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-v3b8IK7Uk3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3b8IK7Uk3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3b8IK7Uk3 .dropdown-item.active,
.cid-v3b8IK7Uk3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3b8IK7Uk3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3b8IK7Uk3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3b8IK7Uk3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3b8IK7Uk3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3b8IK7Uk3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3b8IK7Uk3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3b8IK7Uk3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3b8IK7Uk3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3b8IK7Uk3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3b8IK7Uk3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3b8IK7Uk3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3b8IK7Uk3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3b8IK7Uk3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3b8IK7Uk3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3b8IK7Uk3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3b8IK7Uk3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3b8IK7Uk3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3b8IK7Uk3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3b8IK7Uk3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3b8IK7Uk3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3b8IK7Uk3 .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-v3b8IK7Uk3 .navbar {
    height: 70px;
  }
  .cid-v3b8IK7Uk3 .navbar.opened {
    height: auto;
  }
  .cid-v3b8IK7Uk3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3b8IKAVp0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3b8IKAVp0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-v3b8IKAVp0 .mbr-text,
.cid-v3b8IKAVp0 .mbr-section-btn {
  text-align: center;
}
.cid-v3b8IL6M8S {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3b8IL6M8S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3b8IL6M8S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3b8IL6M8S .media-container-row {
  justify-content: space-between;
}
.cid-v3b8IL6M8S .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-v3b8IL6M8S .text-content {
    max-width: none;
  }
}
.cid-v3b8IL6M8S .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3b8IL6M8S .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-v3b8IL6M8S .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-v3b8IL6M8S .icons {
    justify-content: center !important;
  }
  .cid-v3b8IL6M8S .text-content * {
    text-align: center;
  }
}
.cid-v3b8IL6M8S P {
  color: #575757;
}
.cid-v3b8IL6M8S .mbr-section-title {
  color: #1d9374;
}
.cid-v3b90rMp1u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3b90rMp1u nav.navbar {
  position: fixed;
}
.cid-v3b90rMp1u .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-v3b90rMp1u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3b90rMp1u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3b90rMp1u .dropdown-item:hover,
.cid-v3b90rMp1u .dropdown-item:focus {
  background: #1d9374 !important;
  color: white !important;
}
.cid-v3b90rMp1u .dropdown-item:hover span {
  color: white;
}
.cid-v3b90rMp1u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3b90rMp1u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3b90rMp1u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3b90rMp1u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3b90rMp1u .nav-link {
  position: relative;
}
.cid-v3b90rMp1u .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3b90rMp1u .container {
    flex-wrap: nowrap;
  }
}
.cid-v3b90rMp1u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3b90rMp1u .dropdown-menu,
.cid-v3b90rMp1u .navbar.opened {
  background: #ffffff !important;
}
.cid-v3b90rMp1u .nav-item:focus,
.cid-v3b90rMp1u .nav-link:focus {
  outline: none;
}
.cid-v3b90rMp1u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3b90rMp1u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3b90rMp1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3b90rMp1u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3b90rMp1u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3b90rMp1u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3b90rMp1u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3b90rMp1u .navbar.opened {
  transition: all 0.3s;
}
.cid-v3b90rMp1u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3b90rMp1u .navbar .navbar-logo img {
  width: auto;
}
.cid-v3b90rMp1u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3b90rMp1u .navbar.collapsed {
  justify-content: center;
}
.cid-v3b90rMp1u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3b90rMp1u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3b90rMp1u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-v3b90rMp1u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3b90rMp1u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3b90rMp1u .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-v3b90rMp1u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3b90rMp1u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3b90rMp1u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3b90rMp1u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3b90rMp1u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3b90rMp1u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3b90rMp1u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3b90rMp1u .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-v3b90rMp1u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3b90rMp1u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3b90rMp1u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3b90rMp1u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3b90rMp1u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3b90rMp1u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3b90rMp1u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3b90rMp1u .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3b90rMp1u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3b90rMp1u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3b90rMp1u .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-v3b90rMp1u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3b90rMp1u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3b90rMp1u .dropdown-item.active,
.cid-v3b90rMp1u .dropdown-item:active {
  background-color: transparent;
}
.cid-v3b90rMp1u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3b90rMp1u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3b90rMp1u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3b90rMp1u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3b90rMp1u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3b90rMp1u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3b90rMp1u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3b90rMp1u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3b90rMp1u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3b90rMp1u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3b90rMp1u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3b90rMp1u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3b90rMp1u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3b90rMp1u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3b90rMp1u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3b90rMp1u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3b90rMp1u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3b90rMp1u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3b90rMp1u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3b90rMp1u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3b90rMp1u .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-v3b90rMp1u .navbar {
    height: 70px;
  }
  .cid-v3b90rMp1u .navbar.opened {
    height: auto;
  }
  .cid-v3b90rMp1u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3b90shjKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3b90shjKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/yohannes-minas-yplossc3w6a-unsplash-2000x1500.jpg");
}
.cid-v3b90shjKU .mbr-text,
.cid-v3b90shjKU .mbr-section-btn {
  text-align: center;
}
.cid-v3b90sYFE2 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v3b90sYFE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3b90sYFE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3b90sYFE2 .media-container-row {
  justify-content: space-between;
}
.cid-v3b90sYFE2 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-v3b90sYFE2 .text-content {
    max-width: none;
  }
}
.cid-v3b90sYFE2 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #1d9374;
  border: 2px solid #1d9374;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3b90sYFE2 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-v3b90sYFE2 .mbr-iconfont-social:hover {
  background-color: #1d9374;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-v3b90sYFE2 .icons {
    justify-content: center !important;
  }
  .cid-v3b90sYFE2 .text-content * {
    text-align: center;
  }
}
.cid-v3b90sYFE2 P {
  color: #575757;
}
.cid-v3b90sYFE2 .mbr-section-title {
  color: #1d9374;
}
