.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #3eb967 !important;
}
.bg-info {
  background-color: #0c94e8 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #0c94e8 !important;
  border-color: #0c94e8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #085f96 !important;
  border-color: #085f96 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #085f96 !important;
  border-color: #085f96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #3eb967 !important;
  border-color: #3eb967 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #287843 !important;
  border-color: #287843 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #287843 !important;
  border-color: #287843 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0c94e8;
  color: #0c94e8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #085f96 !important;
  background-color: transparent!important;
  border-color: #085f96 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0c94e8 !important;
  border-color: #0c94e8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #3eb967;
  color: #3eb967;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #287843 !important;
  background-color: transparent!important;
  border-color: #287843 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #3eb967 !important;
  border-color: #3eb967 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #3eb967 !important;
}
.text-info {
  color: #0c94e8 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #246d3c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #075687 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0c94e8;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9addb0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c4e7fc;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEHjTOHCAP {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uEHjTOHCAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEHjTOHCAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEHjTOHCAP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEHjTOHCAP .row {
  flex-direction: row-reverse;
}
.cid-uEHjTOHCAP img {
  width: 100%;
}
.cid-sFzxmVl7J6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  color: #353535;
}
.cid-sFzyUE9AaP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #000000;
}
.cid-sFzyUE9AaP .card-text {
  color: #000000;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #0c94e8;
}
.cid-sFzyUE9AaP .mbr-section-subtitle {
  color: #3eb967;
}
.cid-uxkH33YDr0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-uxkH33YDr0 .container {
    max-width: 1400px;
  }
}
.cid-uxkH33YDr0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #4479d9;
  margin-bottom: 2rem;
}
.cid-uxkH33YDr0 .card-wrapper {
  margin-top: 3rem;
}
.cid-uxkH33YDr0 .row {
  justify-content: center;
}
.cid-uxkH33YDr0 .card-title,
.cid-uxkH33YDr0 .iconfont-wrapper {
  color: #000000;
}
.cid-uxkH33YDr0 .card-text {
  color: #000000;
}
.cid-uxkH33YDr0 .mbr-section-title {
  color: #000000;
}
.cid-sFzz5E692j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzz5E692j .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzz5E692j .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzz5E692j .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzz5E692j .mbr-section-title {
  color: #0c94e8;
}
.cid-sFzz5E692j .mbr-text,
.cid-sFzz5E692j .mbr-section-btn {
  color: #353535;
}
.cid-sFAyMcKwph {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0c94e8;
}
.cid-sFAyMcKwph .media-container-row {
  justify-content: space-between;
}
.cid-sFAyMcKwph .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .text-content {
    max-width: none;
  }
}
.cid-sFAyMcKwph .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sFAyMcKwph .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sFAyMcKwph .mbr-iconfont-social:hover {
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .icons {
    justify-content: center !important;
  }
  .cid-sFAyMcKwph .text-content * {
    text-align: center;
  }
}
.cid-sFAyMcKwph .mbr-section-title {
  color: #ffffff;
}
.cid-sFAyMcKwph P {
  color: #ffffff;
}
.cid-sFzDs3t9EG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #0c94e8;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #3eb967;
}
.cid-uytjMZkDKf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uytjMZkDKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytjMZkDKf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uytjMZkDKf .row {
    flex-direction: column-reverse;
  }
  .cid-uytjMZkDKf .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uytjMZkDKf .google-map {
  height: 100%;
  position: relative;
}
.cid-uytjMZkDKf .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uytjMZkDKf .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uytjMZkDKf .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uytjMZkDKf .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uytjMZkDKf .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uytjMZkDKf .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uytjMZkDKf .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uytjMZkDKf .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uytjMZkDKf .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uytjMZkDKf .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6592e6;
}
.cid-uytjMZkDKf .mbr-section-subtitle {
  color: #3eb967;
}
.cid-uytjMZkDKf P {
  color: #0c94e8;
}
.cid-uytjMZkDKf .card-title {
  color: #3eb967;
}
.cid-uytjMZkDKf .mbr-section-title {
  color: #0c94e8;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-sFCygHrmNf .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-sFCygHrmNf .group-title,
.cid-sFCygHrmNf .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-sFCygHrmNf .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-sFCygHrmNf .image-item {
  text-align: center;
}
.cid-sFCygHrmNf .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-sFCygHrmNf .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-sFCygHrmNf .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-sFCygHrmNf H2 {
  color: #bbbbbb;
}
.cid-sFCygHrmNf foot-menu-item {
  color: #ffe885;
}
.cid-uytrMLk47i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uytrMLk47i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uytrMLk47i .row {
  flex-direction: row-reverse;
}
.cid-uytrMLk47i img {
  width: 100%;
}
.cid-uyttaJTOEc {
  z-index: 1000;
  width: 100%;
}
.cid-uyttaJTOEc nav.navbar {
  position: fixed;
}
.cid-uyttaJTOEc .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-uyttaJTOEc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uyttaJTOEc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uyttaJTOEc .dropdown-item:hover,
.cid-uyttaJTOEc .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uyttaJTOEc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uyttaJTOEc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uyttaJTOEc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uyttaJTOEc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uyttaJTOEc .nav-link {
  position: relative;
}
.cid-uyttaJTOEc .container {
  display: flex;
  margin: auto;
}
.cid-uyttaJTOEc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uyttaJTOEc .dropdown-menu,
.cid-uyttaJTOEc .navbar.opened {
  background: #fafafa !important;
}
.cid-uyttaJTOEc .nav-item:focus,
.cid-uyttaJTOEc .nav-link:focus {
  outline: none;
}
.cid-uyttaJTOEc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyttaJTOEc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyttaJTOEc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyttaJTOEc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyttaJTOEc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyttaJTOEc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyttaJTOEc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uyttaJTOEc .navbar.opened {
  transition: all 0.3s;
}
.cid-uyttaJTOEc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uyttaJTOEc .navbar .navbar-logo img {
  width: auto;
}
.cid-uyttaJTOEc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uyttaJTOEc .navbar.collapsed {
  justify-content: center;
}
.cid-uyttaJTOEc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyttaJTOEc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uyttaJTOEc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uyttaJTOEc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyttaJTOEc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyttaJTOEc .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-uyttaJTOEc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyttaJTOEc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uyttaJTOEc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uyttaJTOEc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyttaJTOEc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyttaJTOEc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyttaJTOEc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uyttaJTOEc .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-uyttaJTOEc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyttaJTOEc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uyttaJTOEc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uyttaJTOEc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uyttaJTOEc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyttaJTOEc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uyttaJTOEc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyttaJTOEc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyttaJTOEc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyttaJTOEc .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-uyttaJTOEc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uyttaJTOEc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyttaJTOEc .dropdown-item.active,
.cid-uyttaJTOEc .dropdown-item:active {
  background-color: transparent;
}
.cid-uyttaJTOEc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uyttaJTOEc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyttaJTOEc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyttaJTOEc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uyttaJTOEc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyttaJTOEc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyttaJTOEc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uyttaJTOEc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyttaJTOEc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uyttaJTOEc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uyttaJTOEc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyttaJTOEc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyttaJTOEc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyttaJTOEc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyttaJTOEc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyttaJTOEc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyttaJTOEc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyttaJTOEc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyttaJTOEc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uyttaJTOEc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uyttaJTOEc .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-uyttaJTOEc .navbar {
    height: 70px;
  }
  .cid-uyttaJTOEc .navbar.opened {
    height: auto;
  }
  .cid-uyttaJTOEc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uytvNVr2lt {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uytvNVr2lt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytvNVr2lt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytvNVr2lt .mbr-section-title {
  color: #0c94e8;
}
.cid-uytvNVr2lt .mbr-section-subtitle {
  text-align: left;
}
.cid-uytvNVr2lt .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uytucO4Klr {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uytucO4Klr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytucO4Klr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytucO4Klr ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uytucO4Klr li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uytucO4Klr ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #0c94e8;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uytucO4Klr H3 {
  color: #0c94e8;
}
.cid-uytucO4Klr .list {
  color: #353535;
}
.cid-uytvODh7eH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uytvODh7eH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytvODh7eH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytvODh7eH .mbr-section-title {
  color: #0c94e8;
}
.cid-uytvdssblr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uytvdssblr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uytvdssblr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uytvdssblr .col-lg-8 {
  padding: 4rem 6rem;
}
@media (max-width: 1600px) {
  .cid-uytvdssblr .col-lg-8 {
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uytvdssblr .col-lg-8 {
    padding: 2rem 1rem;
  }
}
.cid-uytvdssblr .img-col {
  border-left: 1px solid lightgray;
  padding: 1rem;
}
.cid-uytvdssblr .img-col img {
  width: 140px;
}
@media (max-width: 767px) {
  .cid-uytvdssblr .img-col {
    border-left: 0px solid lightgray;
    padding: 0;
    padding-top: 1rem;
  }
}
.cid-uytvdssblr .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uytvdssblr .mbr-text,
.cid-uytvdssblr .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-uytvdssblr .mbr-section-title,
.cid-uytvdssblr .line {
  color: #808080;
}
.cid-uytvdssblr .mbr-section-subtitle,
.cid-uytvdssblr .align {
  text-align: left;
  color: #232323;
}
.cid-uyttaM3oSd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uyttaM3oSd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyttaM3oSd .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyttaM3oSd .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uyttaM3oSd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyttaM3oSd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uyttaM3oSd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyttaM3oSd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyttaM3oSd .social-row {
  text-align: center;
}
.cid-uyttaM3oSd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyttaM3oSd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyttaM3oSd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyttaM3oSd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyttaM3oSd .mbr-section-title {
  color: #000000;
}
.cid-uyttaM3oSd .mbr-section-title1 {
  color: #0c94e8;
}
.cid-uyW7FYzNCb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #fafafa;
}
.cid-uyW7FYzNCb .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyW7FYzNCb .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyW7FYzNCb .card-wrap {
  background: #fafafa;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uyW7FYzNCb .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyW7FYzNCb .card-wrap .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uyW7FYzNCb .card-wrap .image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cid-uyW7FYzNCb .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyW7FYzNCb .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyW7FYzNCb .social-row {
  text-align: center;
}
.cid-uyW7FYzNCb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyW7FYzNCb .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyW7FYzNCb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyW7FYzNCb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyW7FYzNCb .mbr-section-title {
  color: #000000;
}
.cid-uyW7FYzNCb .mbr-section-title1 {
  color: #0c94e8;
}
.cid-uyW9ex2n8X {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uyW9ex2n8X .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyW9ex2n8X .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyW9ex2n8X .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uyW9ex2n8X .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyW9ex2n8X .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uyW9ex2n8X .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyW9ex2n8X .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyW9ex2n8X .social-row {
  text-align: center;
}
.cid-uyW9ex2n8X .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyW9ex2n8X .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyW9ex2n8X .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyW9ex2n8X .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyW9ex2n8X .mbr-section-title {
  color: #000000;
}
.cid-uyW9ex2n8X .mbr-section-title1 {
  color: #0c94e8;
}
.cid-uyWaHoWnXf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uyWaHoWnXf .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyWaHoWnXf .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyWaHoWnXf .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uyWaHoWnXf .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyWaHoWnXf .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uyWaHoWnXf .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyWaHoWnXf .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyWaHoWnXf .social-row {
  text-align: center;
}
.cid-uyWaHoWnXf .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyWaHoWnXf .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyWaHoWnXf .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyWaHoWnXf .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyWaHoWnXf .mbr-section-title {
  color: #000000;
}
.cid-uyWaHoWnXf .mbr-section-title1 {
  color: #353535;
}
.cid-uyWd6YKqnu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uyWd6YKqnu .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyWd6YKqnu .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyWd6YKqnu .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uyWd6YKqnu .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyWd6YKqnu .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uyWd6YKqnu .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyWd6YKqnu .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyWd6YKqnu .social-row {
  text-align: center;
}
.cid-uyWd6YKqnu .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyWd6YKqnu .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyWd6YKqnu .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyWd6YKqnu .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyWd6YKqnu .mbr-section-title {
  color: #000000;
}
.cid-uyWd6YKqnu .mbr-section-title1 {
  color: #353535;
}
.cid-uyWdDJntnX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uyWdDJntnX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uyWdDJntnX .team-card:hover {
  transform: translateY(-10px);
}
.cid-uyWdDJntnX .card-wrap {
  background: #f1efef;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cid-uyWdDJntnX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uyWdDJntnX .card-wrap .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  margin-bottom: 1rem;
}
.cid-uyWdDJntnX .card-wrap .image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cid-uyWdDJntnX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uyWdDJntnX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uyWdDJntnX .social-row {
  text-align: center;
}
.cid-uyWdDJntnX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uyWdDJntnX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uyWdDJntnX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uyWdDJntnX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uyWdDJntnX .mbr-section-title {
  color: #000000;
}
.cid-uyWdDJntnX .mbr-section-title1 {
  color: #353535;
}
.cid-uyWjfCgS7x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWjfCgS7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWjfCgS7x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWjfCgS7x .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uyWjfCgS7x .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uyWjfCgS7x .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyWjfCgS7x .card-wrapper {
    padding: 4rem;
  }
}
.cid-uyWjfCgS7x .mbr-text,
.cid-uyWjfCgS7x .mbr-section-btn {
  color: #ffffff;
}
.cid-uyWjfCgS7x .card-title,
.cid-uyWjfCgS7x .card-box {
  text-align: center;
  color: #0c94e8;
}
.cid-uyWl7VdoJn .full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uyWl7VdoJn .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.cid-uyttaO5U0l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uyttaO5U0l .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uyttaO5U0l .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uyttaO5U0l .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uyttaO5U0l .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uyttaO5U0l .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uyttaO5U0l .row .foot-menu li p {
  margin: 0;
}
.cid-uyttaO5U0l .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uyttaO5U0l .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uyttaO5U0l .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyttaO5U0l .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uyttaO5U0l .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyttaO5U0l .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyttaO5U0l .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uyttaO5U0l .row .row-copirayt p {
  width: 100%;
}
.cid-uyttaO5U0l .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyttaO5U0l .group-title,
.cid-uyttaO5U0l .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uyttaO5U0l .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uyttaO5U0l .image-item {
  text-align: center;
}
.cid-uyttaO5U0l .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyttaO5U0l .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyttaO5U0l .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyttaO5U0l H2 {
  color: #bbbbbb;
}
.cid-uyttaO5U0l foot-menu-item {
  color: #ffe885;
}
.cid-uyttaOEQIY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyttaOEQIY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyttaOEQIY .row {
  flex-direction: row-reverse;
}
.cid-uyttaOEQIY img {
  width: 100%;
}
.cid-uyWI70D4pr {
  z-index: 1000;
  width: 100%;
}
.cid-uyWI70D4pr nav.navbar {
  position: fixed;
}
.cid-uyWI70D4pr .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-uyWI70D4pr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uyWI70D4pr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uyWI70D4pr .dropdown-item:hover,
.cid-uyWI70D4pr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uyWI70D4pr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uyWI70D4pr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uyWI70D4pr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uyWI70D4pr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uyWI70D4pr .nav-link {
  position: relative;
}
.cid-uyWI70D4pr .container {
  display: flex;
  margin: auto;
}
.cid-uyWI70D4pr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uyWI70D4pr .dropdown-menu,
.cid-uyWI70D4pr .navbar.opened {
  background: #fafafa !important;
}
.cid-uyWI70D4pr .nav-item:focus,
.cid-uyWI70D4pr .nav-link:focus {
  outline: none;
}
.cid-uyWI70D4pr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyWI70D4pr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyWI70D4pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyWI70D4pr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyWI70D4pr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyWI70D4pr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyWI70D4pr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uyWI70D4pr .navbar.opened {
  transition: all 0.3s;
}
.cid-uyWI70D4pr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uyWI70D4pr .navbar .navbar-logo img {
  width: auto;
}
.cid-uyWI70D4pr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uyWI70D4pr .navbar.collapsed {
  justify-content: center;
}
.cid-uyWI70D4pr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyWI70D4pr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uyWI70D4pr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uyWI70D4pr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyWI70D4pr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyWI70D4pr .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-uyWI70D4pr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyWI70D4pr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uyWI70D4pr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uyWI70D4pr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyWI70D4pr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyWI70D4pr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyWI70D4pr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uyWI70D4pr .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-uyWI70D4pr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyWI70D4pr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uyWI70D4pr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uyWI70D4pr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uyWI70D4pr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyWI70D4pr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uyWI70D4pr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyWI70D4pr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyWI70D4pr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyWI70D4pr .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-uyWI70D4pr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uyWI70D4pr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyWI70D4pr .dropdown-item.active,
.cid-uyWI70D4pr .dropdown-item:active {
  background-color: transparent;
}
.cid-uyWI70D4pr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uyWI70D4pr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyWI70D4pr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyWI70D4pr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uyWI70D4pr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyWI70D4pr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyWI70D4pr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uyWI70D4pr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyWI70D4pr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uyWI70D4pr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uyWI70D4pr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyWI70D4pr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyWI70D4pr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyWI70D4pr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyWI70D4pr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyWI70D4pr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyWI70D4pr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyWI70D4pr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyWI70D4pr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uyWI70D4pr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uyWI70D4pr .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-uyWI70D4pr .navbar {
    height: 70px;
  }
  .cid-uyWI70D4pr .navbar.opened {
    height: auto;
  }
  .cid-uyWI70D4pr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyWI71FoTT {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWI71FoTT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWI71FoTT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWI71FoTT .mbr-section-title {
  color: #0c94e8;
}
.cid-uyWIw5wlLo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.cid-uyWIw5wlLo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-uyWIw5wlLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWIw5wlLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uyWIw5wlLo .container {
    padding: 0 16px;
  }
}
.cid-uyWIw5wlLo .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uyWIw5wlLo .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uyWIw5wlLo .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyWIw5wlLo .mbr-section-title {
  color: #000000;
}
.cid-uyWIw5wlLo .mbr-text {
  color: #000000;
}
.cid-uyWIw5wlLo .mbr-text,
.cid-uyWIw5wlLo .icon-wrapper {
  color: #000000;
}
.cid-uyWI788607 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWI788607 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWI788607 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWI788607 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uyWI788607 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uyWI788607 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyWI788607 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uyWI788607 .mbr-text,
.cid-uyWI788607 .mbr-section-btn {
  color: #ffffff;
}
.cid-uyWI788607 .card-title,
.cid-uyWI788607 .card-box {
  text-align: center;
  color: #0c94e8;
}
.cid-uyWI78OHdh .full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uyWI78OHdh .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.cid-uyWI79kyQ9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uyWI79kyQ9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uyWI79kyQ9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uyWI79kyQ9 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uyWI79kyQ9 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uyWI79kyQ9 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uyWI79kyQ9 .row .foot-menu li p {
  margin: 0;
}
.cid-uyWI79kyQ9 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uyWI79kyQ9 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uyWI79kyQ9 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyWI79kyQ9 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uyWI79kyQ9 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyWI79kyQ9 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyWI79kyQ9 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uyWI79kyQ9 .row .row-copirayt p {
  width: 100%;
}
.cid-uyWI79kyQ9 .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyWI79kyQ9 .group-title,
.cid-uyWI79kyQ9 .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uyWI79kyQ9 .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uyWI79kyQ9 .image-item {
  text-align: center;
}
.cid-uyWI79kyQ9 .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyWI79kyQ9 .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyWI79kyQ9 .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyWI79kyQ9 H2 {
  color: #bbbbbb;
}
.cid-uyWI79kyQ9 foot-menu-item {
  color: #ffe885;
}
.cid-uyWI7a8pv4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyWI7a8pv4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyWI7a8pv4 .row {
  flex-direction: row-reverse;
}
.cid-uyWI7a8pv4 img {
  width: 100%;
}
.cid-uyWJKaPhmU {
  z-index: 1000;
  width: 100%;
}
.cid-uyWJKaPhmU nav.navbar {
  position: fixed;
}
.cid-uyWJKaPhmU .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-uyWJKaPhmU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uyWJKaPhmU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uyWJKaPhmU .dropdown-item:hover,
.cid-uyWJKaPhmU .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uyWJKaPhmU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uyWJKaPhmU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uyWJKaPhmU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uyWJKaPhmU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uyWJKaPhmU .nav-link {
  position: relative;
}
.cid-uyWJKaPhmU .container {
  display: flex;
  margin: auto;
}
.cid-uyWJKaPhmU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uyWJKaPhmU .dropdown-menu,
.cid-uyWJKaPhmU .navbar.opened {
  background: #fafafa !important;
}
.cid-uyWJKaPhmU .nav-item:focus,
.cid-uyWJKaPhmU .nav-link:focus {
  outline: none;
}
.cid-uyWJKaPhmU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyWJKaPhmU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyWJKaPhmU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyWJKaPhmU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyWJKaPhmU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyWJKaPhmU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyWJKaPhmU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uyWJKaPhmU .navbar.opened {
  transition: all 0.3s;
}
.cid-uyWJKaPhmU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uyWJKaPhmU .navbar .navbar-logo img {
  width: auto;
}
.cid-uyWJKaPhmU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uyWJKaPhmU .navbar.collapsed {
  justify-content: center;
}
.cid-uyWJKaPhmU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyWJKaPhmU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uyWJKaPhmU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uyWJKaPhmU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyWJKaPhmU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyWJKaPhmU .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-uyWJKaPhmU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyWJKaPhmU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uyWJKaPhmU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uyWJKaPhmU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyWJKaPhmU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyWJKaPhmU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyWJKaPhmU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uyWJKaPhmU .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-uyWJKaPhmU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyWJKaPhmU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uyWJKaPhmU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uyWJKaPhmU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uyWJKaPhmU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyWJKaPhmU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uyWJKaPhmU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uyWJKaPhmU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyWJKaPhmU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uyWJKaPhmU .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-uyWJKaPhmU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uyWJKaPhmU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyWJKaPhmU .dropdown-item.active,
.cid-uyWJKaPhmU .dropdown-item:active {
  background-color: transparent;
}
.cid-uyWJKaPhmU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uyWJKaPhmU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyWJKaPhmU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyWJKaPhmU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uyWJKaPhmU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyWJKaPhmU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyWJKaPhmU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uyWJKaPhmU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uyWJKaPhmU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uyWJKaPhmU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uyWJKaPhmU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uyWJKaPhmU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyWJKaPhmU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uyWJKaPhmU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uyWJKaPhmU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyWJKaPhmU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uyWJKaPhmU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyWJKaPhmU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uyWJKaPhmU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uyWJKaPhmU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uyWJKaPhmU .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-uyWJKaPhmU .navbar {
    height: 70px;
  }
  .cid-uyWJKaPhmU .navbar.opened {
    height: auto;
  }
  .cid-uyWJKaPhmU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyWJKbnwLj {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWJKbnwLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWJKbnwLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWJKbnwLj .mbr-section-title {
  color: #0c94e8;
}
.cid-uyWJKbJfyK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.cid-uyWJKbJfyK::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-uyWJKbJfyK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWJKbJfyK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uyWJKbJfyK .container {
    padding: 0 16px;
  }
}
.cid-uyWJKbJfyK .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uyWJKbJfyK .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uyWJKbJfyK .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyWJKbJfyK .mbr-section-title {
  color: #000000;
}
.cid-uyWJKbJfyK .mbr-text {
  color: #000000;
}
.cid-uyWJKbJfyK .mbr-text,
.cid-uyWJKbJfyK .icon-wrapper {
  color: #000000;
}
.cid-uyWKd6RTyc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWKd6RTyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWKd6RTyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWKd6RTyc .mbr-section-title {
  color: #0c94e8;
}
.cid-uyWKjhIBRJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.cid-uyWKjhIBRJ::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-uyWKjhIBRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWKjhIBRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uyWKjhIBRJ .container {
    padding: 0 16px;
  }
}
.cid-uyWKjhIBRJ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uyWKjhIBRJ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uyWKjhIBRJ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uyWKjhIBRJ .mbr-section-title {
  color: #000000;
}
.cid-uyWKjhIBRJ .mbr-text {
  color: #000000;
}
.cid-uyWKjhIBRJ .mbr-text,
.cid-uyWKjhIBRJ .icon-wrapper {
  color: #000000;
}
.cid-uyWJKckKfm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uyWJKckKfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyWJKckKfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyWJKckKfm .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uyWJKckKfm .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uyWJKckKfm .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyWJKckKfm .card-wrapper {
    padding: 4rem;
  }
}
.cid-uyWJKckKfm .mbr-text,
.cid-uyWJKckKfm .mbr-section-btn {
  color: #ffffff;
}
.cid-uyWJKckKfm .card-title,
.cid-uyWJKckKfm .card-box {
  text-align: center;
  color: #0c94e8;
}
.cid-uyWJKcL0Jv .full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uyWJKcL0Jv .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.cid-uyWJKd7N9i {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uyWJKd7N9i .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uyWJKd7N9i .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uyWJKd7N9i .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uyWJKd7N9i .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uyWJKd7N9i .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uyWJKd7N9i .row .foot-menu li p {
  margin: 0;
}
.cid-uyWJKd7N9i .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uyWJKd7N9i .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uyWJKd7N9i .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uyWJKd7N9i .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uyWJKd7N9i .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyWJKd7N9i .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uyWJKd7N9i .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uyWJKd7N9i .row .row-copirayt p {
  width: 100%;
}
.cid-uyWJKd7N9i .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyWJKd7N9i .group-title,
.cid-uyWJKd7N9i .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uyWJKd7N9i .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uyWJKd7N9i .image-item {
  text-align: center;
}
.cid-uyWJKd7N9i .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyWJKd7N9i .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uyWJKd7N9i .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uyWJKd7N9i H2 {
  color: #bbbbbb;
}
.cid-uyWJKd7N9i foot-menu-item {
  color: #ffe885;
}
.cid-uyWJKdLNM6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyWJKdLNM6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyWJKdLNM6 .row {
  flex-direction: row-reverse;
}
.cid-uyWJKdLNM6 img {
  width: 100%;
}
.cid-uz7ALB7ut2 {
  z-index: 1000;
  width: 100%;
}
.cid-uz7ALB7ut2 nav.navbar {
  position: fixed;
}
.cid-uz7ALB7ut2 .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-uz7ALB7ut2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uz7ALB7ut2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uz7ALB7ut2 .dropdown-item:hover,
.cid-uz7ALB7ut2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uz7ALB7ut2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uz7ALB7ut2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uz7ALB7ut2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uz7ALB7ut2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uz7ALB7ut2 .nav-link {
  position: relative;
}
.cid-uz7ALB7ut2 .container {
  display: flex;
  margin: auto;
}
.cid-uz7ALB7ut2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uz7ALB7ut2 .dropdown-menu,
.cid-uz7ALB7ut2 .navbar.opened {
  background: #fafafa !important;
}
.cid-uz7ALB7ut2 .nav-item:focus,
.cid-uz7ALB7ut2 .nav-link:focus {
  outline: none;
}
.cid-uz7ALB7ut2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uz7ALB7ut2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uz7ALB7ut2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uz7ALB7ut2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uz7ALB7ut2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uz7ALB7ut2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uz7ALB7ut2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uz7ALB7ut2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uz7ALB7ut2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uz7ALB7ut2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uz7ALB7ut2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uz7ALB7ut2 .navbar.collapsed {
  justify-content: center;
}
.cid-uz7ALB7ut2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uz7ALB7ut2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uz7ALB7ut2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uz7ALB7ut2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uz7ALB7ut2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uz7ALB7ut2 .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-uz7ALB7ut2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uz7ALB7ut2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uz7ALB7ut2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uz7ALB7ut2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uz7ALB7ut2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uz7ALB7ut2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uz7ALB7ut2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uz7ALB7ut2 .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-uz7ALB7ut2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uz7ALB7ut2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uz7ALB7ut2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uz7ALB7ut2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uz7ALB7ut2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uz7ALB7ut2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uz7ALB7ut2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uz7ALB7ut2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uz7ALB7ut2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uz7ALB7ut2 .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-uz7ALB7ut2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uz7ALB7ut2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uz7ALB7ut2 .dropdown-item.active,
.cid-uz7ALB7ut2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uz7ALB7ut2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uz7ALB7ut2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uz7ALB7ut2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uz7ALB7ut2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uz7ALB7ut2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uz7ALB7ut2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uz7ALB7ut2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uz7ALB7ut2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uz7ALB7ut2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uz7ALB7ut2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uz7ALB7ut2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uz7ALB7ut2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uz7ALB7ut2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uz7ALB7ut2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uz7ALB7ut2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uz7ALB7ut2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uz7ALB7ut2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uz7ALB7ut2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uz7ALB7ut2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uz7ALB7ut2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uz7ALB7ut2 .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-uz7ALB7ut2 .navbar {
    height: 70px;
  }
  .cid-uz7ALB7ut2 .navbar.opened {
    height: auto;
  }
  .cid-uz7ALB7ut2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uz7ALADoi6 {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uz7ALADoi6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uz7ALADoi6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uz7ALADoi6 .mbr-section-title {
  color: #0c94e8;
}
.cid-uz7ALADoi6 .mbr-section-subtitle {
  text-align: left;
}
.cid-uz7ALADoi6 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uzbeIK3Mer .full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uzbeIK3Mer .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.cid-uz7ALEtEb1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7ALEtEb1 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7ALEtEb1 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7ALEtEb1 .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7ALEtEb1 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7ALEtEb1 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7ALEtEb1 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7ALEtEb1 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7ALEtEb1 .social-row {
  text-align: center;
}
.cid-uz7ALEtEb1 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7ALEtEb1 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7ALEtEb1 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7ALEtEb1 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7ALEtEb1 .mbr-section-title {
  color: #000000;
}
.cid-uz7ALEtEb1 .mbr-section-title1 {
  color: #0c94e8;
}
.cid-uz7ALFj1z3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7ALFj1z3 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7ALFj1z3 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7ALFj1z3 .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7ALFj1z3 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7ALFj1z3 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7ALFj1z3 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7ALFj1z3 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7ALFj1z3 .social-row {
  text-align: center;
}
.cid-uz7ALFj1z3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7ALFj1z3 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7ALFj1z3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7ALFj1z3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7ALFj1z3 .mbr-section-title {
  color: #000000;
}
.cid-uz7ALFj1z3 .mbr-section-title1 {
  color: #353535;
}
.cid-uz7ALG78Mc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7ALG78Mc .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7ALG78Mc .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7ALG78Mc .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7ALG78Mc .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7ALG78Mc .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7ALG78Mc .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7ALG78Mc .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7ALG78Mc .social-row {
  text-align: center;
}
.cid-uz7ALG78Mc .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7ALG78Mc .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7ALG78Mc .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7ALG78Mc .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7ALG78Mc .mbr-section-title {
  color: #000000;
}
.cid-uz7ALG78Mc .mbr-section-title1 {
  color: #353535;
}
.cid-uz7HuVHO8e {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7HuVHO8e .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7HuVHO8e .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7HuVHO8e .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7HuVHO8e .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7HuVHO8e .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7HuVHO8e .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7HuVHO8e .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7HuVHO8e .social-row {
  text-align: center;
}
.cid-uz7HuVHO8e .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7HuVHO8e .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7HuVHO8e .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7HuVHO8e .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7HuVHO8e .mbr-section-title {
  color: #000000;
}
.cid-uz7HuVHO8e .mbr-section-title1 {
  color: #353535;
}
.cid-uz7IHMRPqe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7IHMRPqe .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7IHMRPqe .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7IHMRPqe .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7IHMRPqe .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7IHMRPqe .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7IHMRPqe .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7IHMRPqe .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7IHMRPqe .social-row {
  text-align: center;
}
.cid-uz7IHMRPqe .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7IHMRPqe .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7IHMRPqe .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7IHMRPqe .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7IHMRPqe .mbr-section-title {
  color: #000000;
}
.cid-uz7IHMRPqe .mbr-section-title1 {
  color: #353535;
}
.cid-uz7Ku9fjKP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7Ku9fjKP .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7Ku9fjKP .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7Ku9fjKP .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7Ku9fjKP .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7Ku9fjKP .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7Ku9fjKP .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7Ku9fjKP .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7Ku9fjKP .social-row {
  text-align: center;
}
.cid-uz7Ku9fjKP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7Ku9fjKP .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7Ku9fjKP .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7Ku9fjKP .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7Ku9fjKP .mbr-section-title {
  color: #000000;
}
.cid-uz7Ku9fjKP .mbr-section-title1 {
  color: #353535;
}
.cid-uz7MDyweZd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7MDyweZd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7MDyweZd .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7MDyweZd .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7MDyweZd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7MDyweZd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7MDyweZd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7MDyweZd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7MDyweZd .social-row {
  text-align: center;
}
.cid-uz7MDyweZd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7MDyweZd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7MDyweZd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7MDyweZd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7MDyweZd .mbr-section-title {
  color: #000000;
}
.cid-uz7MDyweZd .mbr-section-title1 {
  color: #353535;
}
.cid-uz7OVdBBTd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7OVdBBTd .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7OVdBBTd .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7OVdBBTd .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7OVdBBTd .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7OVdBBTd .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7OVdBBTd .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7OVdBBTd .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7OVdBBTd .social-row {
  text-align: center;
}
.cid-uz7OVdBBTd .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7OVdBBTd .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7OVdBBTd .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7OVdBBTd .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7OVdBBTd .mbr-section-title {
  color: #000000;
}
.cid-uz7OVdBBTd .mbr-section-title1 {
  color: #353535;
}
.cid-uz7RvYgzpX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7RvYgzpX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7RvYgzpX .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7RvYgzpX .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7RvYgzpX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7RvYgzpX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7RvYgzpX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7RvYgzpX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7RvYgzpX .social-row {
  text-align: center;
}
.cid-uz7RvYgzpX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7RvYgzpX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7RvYgzpX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7RvYgzpX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7RvYgzpX .mbr-section-title {
  color: #000000;
}
.cid-uz7RvYgzpX .mbr-section-title1 {
  color: #353535;
}
.cid-uz7V7uP6Z3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7V7uP6Z3 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7V7uP6Z3 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7V7uP6Z3 .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7V7uP6Z3 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7V7uP6Z3 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7V7uP6Z3 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7V7uP6Z3 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7V7uP6Z3 .social-row {
  text-align: center;
}
.cid-uz7V7uP6Z3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7V7uP6Z3 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7V7uP6Z3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7V7uP6Z3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7V7uP6Z3 .mbr-section-title {
  color: #000000;
}
.cid-uz7V7uP6Z3 .mbr-section-title1 {
  color: #353535;
}
.cid-uz7YDBGrvI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz7YDBGrvI .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz7YDBGrvI .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz7YDBGrvI .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz7YDBGrvI .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz7YDBGrvI .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz7YDBGrvI .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz7YDBGrvI .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz7YDBGrvI .social-row {
  text-align: center;
}
.cid-uz7YDBGrvI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz7YDBGrvI .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz7YDBGrvI .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz7YDBGrvI .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz7YDBGrvI .mbr-section-title {
  color: #000000;
}
.cid-uz7YDBGrvI .mbr-section-title1 {
  color: #353535;
}
.cid-uz84olewjN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz84olewjN .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz84olewjN .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz84olewjN .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz84olewjN .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz84olewjN .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz84olewjN .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz84olewjN .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz84olewjN .social-row {
  text-align: center;
}
.cid-uz84olewjN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz84olewjN .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz84olewjN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz84olewjN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz84olewjN .mbr-section-title {
  color: #000000;
}
.cid-uz84olewjN .mbr-section-title1 {
  color: #353535;
}
.cid-uz86V0ZjGm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz86V0ZjGm .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz86V0ZjGm .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz86V0ZjGm .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz86V0ZjGm .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz86V0ZjGm .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz86V0ZjGm .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz86V0ZjGm .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz86V0ZjGm .social-row {
  text-align: center;
}
.cid-uz86V0ZjGm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz86V0ZjGm .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz86V0ZjGm .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz86V0ZjGm .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz86V0ZjGm .mbr-section-title {
  color: #000000;
}
.cid-uz86V0ZjGm .mbr-section-title1 {
  color: #353535;
}
.cid-uz88gP2FQX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz88gP2FQX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz88gP2FQX .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz88gP2FQX .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz88gP2FQX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz88gP2FQX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz88gP2FQX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz88gP2FQX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz88gP2FQX .social-row {
  text-align: center;
}
.cid-uz88gP2FQX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz88gP2FQX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz88gP2FQX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz88gP2FQX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz88gP2FQX .mbr-section-title {
  color: #000000;
}
.cid-uz88gP2FQX .mbr-section-title1 {
  color: #353535;
}
.cid-uz8afLR5sY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8afLR5sY .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8afLR5sY .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8afLR5sY .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8afLR5sY .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8afLR5sY .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8afLR5sY .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8afLR5sY .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8afLR5sY .social-row {
  text-align: center;
}
.cid-uz8afLR5sY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8afLR5sY .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8afLR5sY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8afLR5sY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8afLR5sY .mbr-section-title {
  color: #000000;
}
.cid-uz8afLR5sY .mbr-section-title1 {
  color: #353535;
}
.cid-uz8cPgdCHl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8cPgdCHl .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8cPgdCHl .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8cPgdCHl .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8cPgdCHl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8cPgdCHl .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8cPgdCHl .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8cPgdCHl .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8cPgdCHl .social-row {
  text-align: center;
}
.cid-uz8cPgdCHl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8cPgdCHl .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8cPgdCHl .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8cPgdCHl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8cPgdCHl .mbr-section-title {
  color: #000000;
}
.cid-uz8cPgdCHl .mbr-section-title1 {
  color: #353535;
}
.cid-uz8eGh5ONO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8eGh5ONO .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8eGh5ONO .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8eGh5ONO .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8eGh5ONO .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8eGh5ONO .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8eGh5ONO .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8eGh5ONO .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8eGh5ONO .social-row {
  text-align: center;
}
.cid-uz8eGh5ONO .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8eGh5ONO .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8eGh5ONO .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8eGh5ONO .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8eGh5ONO .mbr-section-title {
  color: #000000;
}
.cid-uz8eGh5ONO .mbr-section-title1 {
  color: #353535;
}
.cid-uz8i2ZOJBR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8i2ZOJBR .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8i2ZOJBR .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8i2ZOJBR .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8i2ZOJBR .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8i2ZOJBR .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8i2ZOJBR .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8i2ZOJBR .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8i2ZOJBR .social-row {
  text-align: center;
}
.cid-uz8i2ZOJBR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8i2ZOJBR .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8i2ZOJBR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8i2ZOJBR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8i2ZOJBR .mbr-section-title {
  color: #000000;
}
.cid-uz8i2ZOJBR .mbr-section-title1 {
  color: #353535;
}
.cid-uz8keA85iA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8keA85iA .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8keA85iA .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8keA85iA .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8keA85iA .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8keA85iA .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8keA85iA .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8keA85iA .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8keA85iA .social-row {
  text-align: center;
}
.cid-uz8keA85iA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8keA85iA .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8keA85iA .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8keA85iA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8keA85iA .mbr-section-title {
  color: #000000;
}
.cid-uz8keA85iA .mbr-section-title1 {
  color: #353535;
}
.cid-uz8mjw1wgK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8mjw1wgK .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8mjw1wgK .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8mjw1wgK .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8mjw1wgK .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8mjw1wgK .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8mjw1wgK .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8mjw1wgK .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8mjw1wgK .social-row {
  text-align: center;
}
.cid-uz8mjw1wgK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8mjw1wgK .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8mjw1wgK .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8mjw1wgK .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8mjw1wgK .mbr-section-title {
  color: #000000;
}
.cid-uz8mjw1wgK .mbr-section-title1 {
  color: #353535;
}
.cid-uz8oX3iAPa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uz8oX3iAPa .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uz8oX3iAPa .team-card:hover {
  transform: translateY(-10px);
}
.cid-uz8oX3iAPa .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uz8oX3iAPa .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uz8oX3iAPa .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uz8oX3iAPa .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uz8oX3iAPa .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uz8oX3iAPa .social-row {
  text-align: center;
}
.cid-uz8oX3iAPa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uz8oX3iAPa .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uz8oX3iAPa .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uz8oX3iAPa .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uz8oX3iAPa .mbr-section-title {
  color: #000000;
}
.cid-uz8oX3iAPa .mbr-section-title1 {
  color: #353535;
}
.cid-uzaCigpxyM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaCigpxyM .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaCigpxyM .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaCigpxyM .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaCigpxyM .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaCigpxyM .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaCigpxyM .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaCigpxyM .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaCigpxyM .social-row {
  text-align: center;
}
.cid-uzaCigpxyM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaCigpxyM .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaCigpxyM .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaCigpxyM .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaCigpxyM .mbr-section-title {
  color: #000000;
}
.cid-uzaCigpxyM .mbr-section-title1 {
  color: #353535;
}
.cid-uzaFcBBfOA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaFcBBfOA .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaFcBBfOA .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaFcBBfOA .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaFcBBfOA .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaFcBBfOA .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaFcBBfOA .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaFcBBfOA .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaFcBBfOA .social-row {
  text-align: center;
}
.cid-uzaFcBBfOA .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaFcBBfOA .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaFcBBfOA .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaFcBBfOA .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaFcBBfOA .mbr-section-title {
  color: #000000;
}
.cid-uzaFcBBfOA .mbr-section-title1 {
  color: #353535;
}
.cid-uzaHiohjOp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaHiohjOp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaHiohjOp .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaHiohjOp .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaHiohjOp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaHiohjOp .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaHiohjOp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaHiohjOp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaHiohjOp .social-row {
  text-align: center;
}
.cid-uzaHiohjOp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaHiohjOp .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaHiohjOp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaHiohjOp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaHiohjOp .mbr-section-title {
  color: #000000;
}
.cid-uzaHiohjOp .mbr-section-title1 {
  color: #353535;
}
.cid-uzaKBcYgWn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaKBcYgWn .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaKBcYgWn .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaKBcYgWn .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaKBcYgWn .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaKBcYgWn .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaKBcYgWn .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaKBcYgWn .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaKBcYgWn .social-row {
  text-align: center;
}
.cid-uzaKBcYgWn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaKBcYgWn .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaKBcYgWn .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaKBcYgWn .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaKBcYgWn .mbr-section-title {
  color: #000000;
}
.cid-uzaKBcYgWn .mbr-section-title1 {
  color: #353535;
}
.cid-uzaNrxCnnp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaNrxCnnp .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaNrxCnnp .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaNrxCnnp .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaNrxCnnp .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaNrxCnnp .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaNrxCnnp .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaNrxCnnp .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaNrxCnnp .social-row {
  text-align: center;
}
.cid-uzaNrxCnnp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaNrxCnnp .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaNrxCnnp .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaNrxCnnp .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaNrxCnnp .mbr-section-title {
  color: #000000;
}
.cid-uzaNrxCnnp .mbr-section-title1 {
  color: #353535;
}
.cid-uzaZ6vrATX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzaZ6vrATX .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzaZ6vrATX .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzaZ6vrATX .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzaZ6vrATX .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzaZ6vrATX .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzaZ6vrATX .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzaZ6vrATX .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzaZ6vrATX .social-row {
  text-align: center;
}
.cid-uzaZ6vrATX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzaZ6vrATX .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzaZ6vrATX .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzaZ6vrATX .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzaZ6vrATX .mbr-section-title {
  color: #000000;
}
.cid-uzaZ6vrATX .mbr-section-title1 {
  color: #353535;
}
.cid-uzb1hNHuXn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzb1hNHuXn .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzb1hNHuXn .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzb1hNHuXn .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzb1hNHuXn .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzb1hNHuXn .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzb1hNHuXn .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzb1hNHuXn .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzb1hNHuXn .social-row {
  text-align: center;
}
.cid-uzb1hNHuXn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzb1hNHuXn .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzb1hNHuXn .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzb1hNHuXn .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzb1hNHuXn .mbr-section-title {
  color: #000000;
}
.cid-uzb1hNHuXn .mbr-section-title1 {
  color: #353535;
}
.cid-uzb2e1Y1zG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzb2e1Y1zG .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzb2e1Y1zG .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzb2e1Y1zG .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzb2e1Y1zG .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzb2e1Y1zG .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzb2e1Y1zG .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzb2e1Y1zG .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzb2e1Y1zG .social-row {
  text-align: center;
}
.cid-uzb2e1Y1zG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzb2e1Y1zG .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzb2e1Y1zG .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzb2e1Y1zG .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzb2e1Y1zG .mbr-section-title {
  color: #000000;
}
.cid-uzb2e1Y1zG .mbr-section-title1 {
  color: #353535;
}
.cid-uzb5fz101v {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzb5fz101v .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzb5fz101v .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzb5fz101v .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzb5fz101v .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzb5fz101v .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzb5fz101v .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzb5fz101v .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzb5fz101v .social-row {
  text-align: center;
}
.cid-uzb5fz101v .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzb5fz101v .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzb5fz101v .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzb5fz101v .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzb5fz101v .mbr-section-title {
  color: #000000;
}
.cid-uzb5fz101v .mbr-section-title1 {
  color: #353535;
}
.cid-uzb6VM9He2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uzb6VM9He2 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uzb6VM9He2 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uzb6VM9He2 .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uzb6VM9He2 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uzb6VM9He2 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uzb6VM9He2 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzb6VM9He2 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uzb6VM9He2 .social-row {
  text-align: center;
}
.cid-uzb6VM9He2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uzb6VM9He2 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uzb6VM9He2 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uzb6VM9He2 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uzb6VM9He2 .mbr-section-title {
  color: #000000;
}
.cid-uzb6VM9He2 .mbr-section-title1 {
  color: #353535;
}
.cid-uEHjs3sjTx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uEHjs3sjTx .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uEHjs3sjTx .team-card:hover {
  transform: translateY(-10px);
}
.cid-uEHjs3sjTx .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uEHjs3sjTx .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uEHjs3sjTx .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uEHjs3sjTx .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uEHjs3sjTx .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uEHjs3sjTx .social-row {
  text-align: center;
}
.cid-uEHjs3sjTx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEHjs3sjTx .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uEHjs3sjTx .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEHjs3sjTx .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uEHjs3sjTx .mbr-section-title {
  color: #000000;
}
.cid-uEHjs3sjTx .mbr-section-title1 {
  color: #353535;
}
.cid-uEHjuJQoF8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uEHjuJQoF8 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uEHjuJQoF8 .team-card:hover {
  transform: translateY(-10px);
}
.cid-uEHjuJQoF8 .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uEHjuJQoF8 .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uEHjuJQoF8 .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uEHjuJQoF8 .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uEHjuJQoF8 .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uEHjuJQoF8 .social-row {
  text-align: center;
}
.cid-uEHjuJQoF8 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEHjuJQoF8 .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uEHjuJQoF8 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEHjuJQoF8 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uEHjuJQoF8 .mbr-section-title {
  color: #000000;
}
.cid-uEHjuJQoF8 .mbr-section-title1 {
  color: #353535;
}
.cid-uEHjwwkSMN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1efef;
}
.cid-uEHjwwkSMN .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uEHjwwkSMN .team-card:hover {
  transform: translateY(-10px);
}
.cid-uEHjwwkSMN .card-wrap {
  background: #f1efef;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uEHjwwkSMN .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uEHjwwkSMN .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uEHjwwkSMN .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uEHjwwkSMN .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uEHjwwkSMN .social-row {
  text-align: center;
}
.cid-uEHjwwkSMN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uEHjwwkSMN .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uEHjwwkSMN .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uEHjwwkSMN .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uEHjwwkSMN .mbr-section-title {
  color: #000000;
}
.cid-uEHjwwkSMN .mbr-section-title1 {
  color: #353535;
}
.cid-uzbmgf2uqM {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #0c94e8;
}
.cid-uzbmgf2uqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzbmgf2uqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzbmgf2uqM h3 {
  margin: 0;
  opacity: 0.8;
}
.cid-uzbmgf2uqM h3:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: 1;
}
.cid-uzbmgf2uqM .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uz7ALImR7G .full-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uz7ALImR7G .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.cid-uz7ALIRjTd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uz7ALIRjTd .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uz7ALIRjTd .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uz7ALIRjTd .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uz7ALIRjTd .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uz7ALIRjTd .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uz7ALIRjTd .row .foot-menu li p {
  margin: 0;
}
.cid-uz7ALIRjTd .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uz7ALIRjTd .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uz7ALIRjTd .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uz7ALIRjTd .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uz7ALIRjTd .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uz7ALIRjTd .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uz7ALIRjTd .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uz7ALIRjTd .row .row-copirayt p {
  width: 100%;
}
.cid-uz7ALIRjTd .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uz7ALIRjTd .group-title,
.cid-uz7ALIRjTd .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uz7ALIRjTd .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uz7ALIRjTd .image-item {
  text-align: center;
}
.cid-uz7ALIRjTd .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uz7ALIRjTd .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uz7ALIRjTd .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uz7ALIRjTd H2 {
  color: #bbbbbb;
}
.cid-uz7ALIRjTd foot-menu-item {
  color: #ffe885;
}
.cid-uz7ALJCmo9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uz7ALJCmo9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uz7ALJCmo9 .row {
  flex-direction: row-reverse;
}
.cid-uz7ALJCmo9 img {
  width: 100%;
}
.cid-uCkPLz3OSB {
  z-index: 1000;
  width: 100%;
}
.cid-uCkPLz3OSB nav.navbar {
  position: fixed;
}
.cid-uCkPLz3OSB .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-uCkPLz3OSB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCkPLz3OSB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCkPLz3OSB .dropdown-item:hover,
.cid-uCkPLz3OSB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uCkPLz3OSB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCkPLz3OSB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCkPLz3OSB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCkPLz3OSB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCkPLz3OSB .nav-link {
  position: relative;
}
.cid-uCkPLz3OSB .container {
  display: flex;
  margin: auto;
}
.cid-uCkPLz3OSB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCkPLz3OSB .dropdown-menu,
.cid-uCkPLz3OSB .navbar.opened {
  background: #fafafa !important;
}
.cid-uCkPLz3OSB .nav-item:focus,
.cid-uCkPLz3OSB .nav-link:focus {
  outline: none;
}
.cid-uCkPLz3OSB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCkPLz3OSB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCkPLz3OSB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCkPLz3OSB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCkPLz3OSB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCkPLz3OSB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCkPLz3OSB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uCkPLz3OSB .navbar.opened {
  transition: all 0.3s;
}
.cid-uCkPLz3OSB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCkPLz3OSB .navbar .navbar-logo img {
  width: auto;
}
.cid-uCkPLz3OSB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCkPLz3OSB .navbar.collapsed {
  justify-content: center;
}
.cid-uCkPLz3OSB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCkPLz3OSB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCkPLz3OSB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uCkPLz3OSB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCkPLz3OSB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCkPLz3OSB .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-uCkPLz3OSB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCkPLz3OSB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCkPLz3OSB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCkPLz3OSB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCkPLz3OSB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCkPLz3OSB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCkPLz3OSB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCkPLz3OSB .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-uCkPLz3OSB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCkPLz3OSB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCkPLz3OSB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCkPLz3OSB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCkPLz3OSB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCkPLz3OSB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCkPLz3OSB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCkPLz3OSB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCkPLz3OSB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCkPLz3OSB .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-uCkPLz3OSB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCkPLz3OSB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCkPLz3OSB .dropdown-item.active,
.cid-uCkPLz3OSB .dropdown-item:active {
  background-color: transparent;
}
.cid-uCkPLz3OSB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCkPLz3OSB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCkPLz3OSB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCkPLz3OSB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uCkPLz3OSB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCkPLz3OSB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCkPLz3OSB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCkPLz3OSB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCkPLz3OSB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCkPLz3OSB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCkPLz3OSB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCkPLz3OSB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCkPLz3OSB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCkPLz3OSB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCkPLz3OSB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCkPLz3OSB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCkPLz3OSB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCkPLz3OSB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCkPLz3OSB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCkPLz3OSB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCkPLz3OSB .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-uCkPLz3OSB .navbar {
    height: 70px;
  }
  .cid-uCkPLz3OSB .navbar.opened {
    height: auto;
  }
  .cid-uCkPLz3OSB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCThwfxFNv {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCThwfxFNv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCThwfxFNv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCThwfxFNv .mbr-section-title {
  color: #0c94e8;
}
#custom-html-3n {
  /* Type valid CSS here */
}
#custom-html-3n div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3n p {
  font-size: 60px;
  color: #777;
}
.cid-uCkPLzsDwc {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uCkPLzsDwc .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uCkPLzsDwc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uCkPLzsDwc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uCkPLzsDwc .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uCkPLzsDwc .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uCkPLzsDwc .mbr-text,
.cid-uCkPLzsDwc .mbr-section-btn {
  color: #353535;
}
.cid-uCkPLzsDwc .mbr-section-title {
  color: #353535;
}
.cid-uCkQvWskBw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uCkQvWskBw .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCkQvWskBw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCkQvWskBw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uCkQvWskBw .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uCkQvWskBw .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCkQvWskBw .embla__slide .slide-content {
  width: 100%;
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uCkQvWskBw .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uCkQvWskBw .embla__button--next,
.cid-uCkQvWskBw .embla__button--prev {
  display: flex;
}
.cid-uCkQvWskBw .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uCkQvWskBw .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCkQvWskBw .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCkQvWskBw .embla__button.embla__button--next {
  right: 0;
}
.cid-uCkQvWskBw .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uCkQvWskBw .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCkQvWskBw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCkQvWskBw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCkQvWskBw .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCkQvWskBw .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCkQvWskBw .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCkQvWskBw .item-tag {
  color: #ffffff;
}
.cid-uCkQvWskBw .item-name {
  color: #ffffff;
}
.cid-uCkSe5KTN8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uCkSe5KTN8 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCkSe5KTN8 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCkSe5KTN8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uCkSe5KTN8 .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uCkSe5KTN8 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCkSe5KTN8 .embla__slide .slide-content {
  width: 100%;
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uCkSe5KTN8 .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uCkSe5KTN8 .embla__button--next,
.cid-uCkSe5KTN8 .embla__button--prev {
  display: flex;
}
.cid-uCkSe5KTN8 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uCkSe5KTN8 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCkSe5KTN8 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCkSe5KTN8 .embla__button.embla__button--next {
  right: 0;
}
.cid-uCkSe5KTN8 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uCkSe5KTN8 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCkSe5KTN8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCkSe5KTN8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCkSe5KTN8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCkSe5KTN8 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCkSe5KTN8 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCkSe5KTN8 .item-tag {
  color: #ffffff;
}
.cid-uCkSe5KTN8 .item-name {
  color: #ffffff;
}
.cid-uCliEAHPXY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uCliEAHPXY .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCliEAHPXY .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCliEAHPXY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uCliEAHPXY .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uCliEAHPXY .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCliEAHPXY .embla__slide .slide-content {
  width: 100%;
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uCliEAHPXY .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uCliEAHPXY .embla__button--next,
.cid-uCliEAHPXY .embla__button--prev {
  display: flex;
}
.cid-uCliEAHPXY .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uCliEAHPXY .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCliEAHPXY .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCliEAHPXY .embla__button.embla__button--next {
  right: 0;
}
.cid-uCliEAHPXY .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uCliEAHPXY .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCliEAHPXY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCliEAHPXY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCliEAHPXY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCliEAHPXY .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCliEAHPXY .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCliEAHPXY .item-tag {
  color: #ffffff;
}
.cid-uCliEAHPXY .item-name {
  color: #ffffff;
}
.cid-uCljrbdXUT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uCljrbdXUT .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCljrbdXUT .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCljrbdXUT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uCljrbdXUT .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uCljrbdXUT .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uCljrbdXUT .embla__slide .slide-content {
  width: 100%;
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uCljrbdXUT .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uCljrbdXUT .embla__button--next,
.cid-uCljrbdXUT .embla__button--prev {
  display: flex;
}
.cid-uCljrbdXUT .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uCljrbdXUT .embla__button:hover {
  opacity: .7 !important;
}
.cid-uCljrbdXUT .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uCljrbdXUT .embla__button.embla__button--next {
  right: 0;
}
.cid-uCljrbdXUT .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uCljrbdXUT .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uCljrbdXUT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uCljrbdXUT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uCljrbdXUT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCljrbdXUT .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uCljrbdXUT .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uCljrbdXUT .item-tag {
  color: #ffffff;
}
.cid-uCljrbdXUT .item-name {
  color: #ffffff;
}
.cid-uClkfaXT9b {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClkfaXT9b .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClkfaXT9b .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClkfaXT9b .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClkfaXT9b .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClkfaXT9b .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClkfaXT9b .embla__slide .slide-content {
  width: 100%;
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClkfaXT9b .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClkfaXT9b .embla__button--next,
.cid-uClkfaXT9b .embla__button--prev {
  display: flex;
}
.cid-uClkfaXT9b .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClkfaXT9b .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClkfaXT9b .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClkfaXT9b .embla__button.embla__button--next {
  right: 0;
}
.cid-uClkfaXT9b .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClkfaXT9b .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClkfaXT9b .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClkfaXT9b .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClkfaXT9b .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClkfaXT9b .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClkfaXT9b .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClkfaXT9b .item-tag {
  color: #ffffff;
}
.cid-uClkfaXT9b .item-name {
  color: #ffffff;
}
.cid-uCkPLBXLd4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uCkPLBXLd4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uCkPLBXLd4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uCkPLBXLd4 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uCkPLBXLd4 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uCkPLBXLd4 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uCkPLBXLd4 .row .foot-menu li p {
  margin: 0;
}
.cid-uCkPLBXLd4 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uCkPLBXLd4 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uCkPLBXLd4 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uCkPLBXLd4 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uCkPLBXLd4 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uCkPLBXLd4 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uCkPLBXLd4 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uCkPLBXLd4 .row .row-copirayt p {
  width: 100%;
}
.cid-uCkPLBXLd4 .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uCkPLBXLd4 .group-title,
.cid-uCkPLBXLd4 .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uCkPLBXLd4 .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uCkPLBXLd4 .image-item {
  text-align: center;
}
.cid-uCkPLBXLd4 .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uCkPLBXLd4 .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uCkPLBXLd4 .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uCkPLBXLd4 H2 {
  color: #bbbbbb;
}
.cid-uCkPLBXLd4 foot-menu-item {
  color: #ffe885;
}
.cid-uCkPLCtHeZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uCkPLCtHeZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCkPLCtHeZ .row {
  flex-direction: row-reverse;
}
.cid-uCkPLCtHeZ img {
  width: 100%;
}
.cid-uClnqQHTSN {
  z-index: 1000;
  width: 100%;
}
.cid-uClnqQHTSN nav.navbar {
  position: fixed;
}
.cid-uClnqQHTSN .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-uClnqQHTSN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uClnqQHTSN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uClnqQHTSN .dropdown-item:hover,
.cid-uClnqQHTSN .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uClnqQHTSN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uClnqQHTSN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uClnqQHTSN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uClnqQHTSN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uClnqQHTSN .nav-link {
  position: relative;
}
.cid-uClnqQHTSN .container {
  display: flex;
  margin: auto;
}
.cid-uClnqQHTSN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uClnqQHTSN .dropdown-menu,
.cid-uClnqQHTSN .navbar.opened {
  background: #fafafa !important;
}
.cid-uClnqQHTSN .nav-item:focus,
.cid-uClnqQHTSN .nav-link:focus {
  outline: none;
}
.cid-uClnqQHTSN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uClnqQHTSN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uClnqQHTSN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uClnqQHTSN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uClnqQHTSN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uClnqQHTSN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uClnqQHTSN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uClnqQHTSN .navbar.opened {
  transition: all 0.3s;
}
.cid-uClnqQHTSN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uClnqQHTSN .navbar .navbar-logo img {
  width: auto;
}
.cid-uClnqQHTSN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uClnqQHTSN .navbar.collapsed {
  justify-content: center;
}
.cid-uClnqQHTSN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uClnqQHTSN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uClnqQHTSN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uClnqQHTSN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uClnqQHTSN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uClnqQHTSN .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-uClnqQHTSN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uClnqQHTSN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uClnqQHTSN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uClnqQHTSN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uClnqQHTSN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uClnqQHTSN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uClnqQHTSN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uClnqQHTSN .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-uClnqQHTSN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uClnqQHTSN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uClnqQHTSN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uClnqQHTSN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uClnqQHTSN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uClnqQHTSN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uClnqQHTSN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uClnqQHTSN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uClnqQHTSN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uClnqQHTSN .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-uClnqQHTSN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uClnqQHTSN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uClnqQHTSN .dropdown-item.active,
.cid-uClnqQHTSN .dropdown-item:active {
  background-color: transparent;
}
.cid-uClnqQHTSN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uClnqQHTSN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uClnqQHTSN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uClnqQHTSN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uClnqQHTSN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uClnqQHTSN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uClnqQHTSN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uClnqQHTSN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uClnqQHTSN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uClnqQHTSN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uClnqQHTSN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uClnqQHTSN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uClnqQHTSN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uClnqQHTSN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uClnqQHTSN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uClnqQHTSN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uClnqQHTSN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uClnqQHTSN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uClnqQHTSN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uClnqQHTSN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uClnqQHTSN .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-uClnqQHTSN .navbar {
    height: 70px;
  }
  .cid-uClnqQHTSN .navbar.opened {
    height: auto;
  }
  .cid-uClnqQHTSN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uClnMUwDLQ {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uClnMUwDLQ img,
.cid-uClnMUwDLQ .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uClnMUwDLQ .item:focus,
.cid-uClnMUwDLQ span:focus {
  outline: none;
}
.cid-uClnMUwDLQ .item-wrapper {
  position: relative;
}
.cid-uClnMUwDLQ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uClnMUwDLQ .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uClnMUwDLQ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uClnMUwDLQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uClnMUwDLQ .mbr-section-title {
  color: #232323;
}
.cid-uClnMUwDLQ .mbr-text,
.cid-uClnMUwDLQ .mbr-section-btn {
  text-align: center;
}
.cid-uClnMUwDLQ .item-title {
  text-align: center;
}
.cid-uClnMUwDLQ .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uClnMUwDLQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uClnMUwDLQ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uClnMUwDLQ .embla__button--next,
.cid-uClnMUwDLQ .embla__button--prev {
  display: flex;
}
.cid-uClnMUwDLQ .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-uClnMUwDLQ .embla__button {
    display: none;
  }
}
.cid-uClnMUwDLQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uClnMUwDLQ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uClnMUwDLQ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uClnMUwDLQ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uClnMUwDLQ .embla__button {
    top: auto;
  }
}
.cid-uClnMUwDLQ .embla {
  position: relative;
  width: 100%;
}
.cid-uClnMUwDLQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uClnMUwDLQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnMUwDLQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnMUwDLQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uCloXKsIaD {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCloXKsIaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCloXKsIaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCloXKsIaD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uCloXKsIaD .row {
  flex-direction: row-reverse;
}
.cid-uCloXKsIaD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uCloXKsIaD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uKYrwH3bAo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uKYrwH3bAo .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKYrwH3bAo .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uKYrwH3bAo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uKYrwH3bAo .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uKYrwH3bAo .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uKYrwH3bAo .embla__slide .slide-content {
  width: 100%;
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uKYrwH3bAo .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uKYrwH3bAo .embla__button--next,
.cid-uKYrwH3bAo .embla__button--prev {
  display: flex;
}
.cid-uKYrwH3bAo .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uKYrwH3bAo .embla__button:hover {
  opacity: .7 !important;
}
.cid-uKYrwH3bAo .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uKYrwH3bAo .embla__button.embla__button--next {
  right: 0;
}
.cid-uKYrwH3bAo .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uKYrwH3bAo .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uKYrwH3bAo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKYrwH3bAo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKYrwH3bAo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uKYrwH3bAo .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uKYrwH3bAo .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uKYrwH3bAo .item-tag {
  color: #ffffff;
}
.cid-uKYrwH3bAo .item-name {
  color: #ffffff;
}
.cid-uClnqRC7Y1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClnqRC7Y1 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClnqRC7Y1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClnqRC7Y1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClnqRC7Y1 .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClnqRC7Y1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClnqRC7Y1 .embla__slide .slide-content {
  width: 100%;
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClnqRC7Y1 .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClnqRC7Y1 .embla__button--next,
.cid-uClnqRC7Y1 .embla__button--prev {
  display: flex;
}
.cid-uClnqRC7Y1 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClnqRC7Y1 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClnqRC7Y1 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClnqRC7Y1 .embla__button.embla__button--next {
  right: 0;
}
.cid-uClnqRC7Y1 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClnqRC7Y1 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClnqRC7Y1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnqRC7Y1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnqRC7Y1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClnqRC7Y1 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClnqRC7Y1 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClnqRC7Y1 .item-tag {
  color: #ffffff;
}
.cid-uClnqRC7Y1 .item-name {
  color: #ffffff;
}
.cid-uClnqS6tDQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClnqS6tDQ .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClnqS6tDQ .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClnqS6tDQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClnqS6tDQ .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClnqS6tDQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClnqS6tDQ .embla__slide .slide-content {
  width: 100%;
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClnqS6tDQ .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClnqS6tDQ .embla__button--next,
.cid-uClnqS6tDQ .embla__button--prev {
  display: flex;
}
.cid-uClnqS6tDQ .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClnqS6tDQ .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClnqS6tDQ .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClnqS6tDQ .embla__button.embla__button--next {
  right: 0;
}
.cid-uClnqS6tDQ .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClnqS6tDQ .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClnqS6tDQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnqS6tDQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnqS6tDQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClnqS6tDQ .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClnqS6tDQ .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClnqS6tDQ .item-tag {
  color: #ffffff;
}
.cid-uClnqS6tDQ .item-name {
  color: #ffffff;
}
.cid-uClnqSCvf6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClnqSCvf6 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClnqSCvf6 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClnqSCvf6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClnqSCvf6 .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClnqSCvf6 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClnqSCvf6 .embla__slide .slide-content {
  width: 100%;
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClnqSCvf6 .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClnqSCvf6 .embla__button--next,
.cid-uClnqSCvf6 .embla__button--prev {
  display: flex;
}
.cid-uClnqSCvf6 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClnqSCvf6 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClnqSCvf6 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClnqSCvf6 .embla__button.embla__button--next {
  right: 0;
}
.cid-uClnqSCvf6 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClnqSCvf6 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClnqSCvf6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnqSCvf6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnqSCvf6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClnqSCvf6 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClnqSCvf6 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClnqSCvf6 .item-tag {
  color: #ffffff;
}
.cid-uClnqSCvf6 .item-name {
  color: #ffffff;
}
.cid-uClnqTaMvG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClnqTaMvG .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClnqTaMvG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClnqTaMvG .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClnqTaMvG .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClnqTaMvG .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClnqTaMvG .embla__slide .slide-content {
  width: 100%;
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClnqTaMvG .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClnqTaMvG .embla__button--next,
.cid-uClnqTaMvG .embla__button--prev {
  display: flex;
}
.cid-uClnqTaMvG .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClnqTaMvG .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClnqTaMvG .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClnqTaMvG .embla__button.embla__button--next {
  right: 0;
}
.cid-uClnqTaMvG .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClnqTaMvG .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClnqTaMvG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnqTaMvG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnqTaMvG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClnqTaMvG .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClnqTaMvG .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClnqTaMvG .item-tag {
  color: #ffffff;
}
.cid-uClnqTaMvG .item-name {
  color: #ffffff;
}
.cid-uClnqTG0X1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f2f2f2;
}
.cid-uClnqTG0X1 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uClnqTG0X1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uClnqTG0X1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 354px;
  max-width: 354px;
}
@media (max-width: 992px) {
  .cid-uClnqTG0X1 .embla__slide {
    min-width: 620px;
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .cid-uClnqTG0X1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uClnqTG0X1 .embla__slide .slide-content {
  width: 100%;
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  height: 450px;
}
@media (max-width: 992px) {
  .cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper {
    height: 350px;
  }
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #272b2e, transparent);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 8px;
}
.cid-uClnqTG0X1 .embla__slide .slide-content .item-wrapper .item-content .desc-wrapper .item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 12px;
  border: 1px solid #ffffff;
  margin: 0;
}
.cid-uClnqTG0X1 .embla__button--next,
.cid-uClnqTG0X1 .embla__button--prev {
  display: flex;
}
.cid-uClnqTG0X1 .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 26px;
  background: transparent !important;
  color: #272b2e !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uClnqTG0X1 .embla__button:hover {
  opacity: .7 !important;
}
.cid-uClnqTG0X1 .embla__button.embla__button--prev {
  right: 48px;
}
.cid-uClnqTG0X1 .embla__button.embla__button--next {
  right: 0;
}
.cid-uClnqTG0X1 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uClnqTG0X1 .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uClnqTG0X1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uClnqTG0X1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uClnqTG0X1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uClnqTG0X1 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uClnqTG0X1 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uClnqTG0X1 .item-tag {
  color: #ffffff;
}
.cid-uClnqTG0X1 .item-name {
  color: #ffffff;
}
.cid-uClnqUcLlL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uClnqUcLlL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uClnqUcLlL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uClnqUcLlL .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uClnqUcLlL .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uClnqUcLlL .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uClnqUcLlL .row .foot-menu li p {
  margin: 0;
}
.cid-uClnqUcLlL .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uClnqUcLlL .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uClnqUcLlL .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uClnqUcLlL .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uClnqUcLlL .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uClnqUcLlL .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uClnqUcLlL .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uClnqUcLlL .row .row-copirayt p {
  width: 100%;
}
.cid-uClnqUcLlL .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uClnqUcLlL .group-title,
.cid-uClnqUcLlL .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uClnqUcLlL .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uClnqUcLlL .image-item {
  text-align: center;
}
.cid-uClnqUcLlL .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uClnqUcLlL .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uClnqUcLlL .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uClnqUcLlL H2 {
  color: #bbbbbb;
}
.cid-uClnqUcLlL foot-menu-item {
  color: #ffe885;
}
.cid-uClnqUKAKI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uClnqUKAKI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uClnqUKAKI .row {
  flex-direction: row-reverse;
}
.cid-uClnqUKAKI img {
  width: 100%;
}
.cid-uEHehf1Ywf {
  z-index: 1000;
  width: 100%;
}
.cid-uEHehf1Ywf nav.navbar {
  position: fixed;
}
.cid-uEHehf1Ywf .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-uEHehf1Ywf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEHehf1Ywf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEHehf1Ywf .dropdown-item:hover,
.cid-uEHehf1Ywf .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uEHehf1Ywf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEHehf1Ywf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEHehf1Ywf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEHehf1Ywf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEHehf1Ywf .nav-link {
  position: relative;
}
.cid-uEHehf1Ywf .container {
  display: flex;
  margin: auto;
}
.cid-uEHehf1Ywf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEHehf1Ywf .dropdown-menu,
.cid-uEHehf1Ywf .navbar.opened {
  background: #fafafa !important;
}
.cid-uEHehf1Ywf .nav-item:focus,
.cid-uEHehf1Ywf .nav-link:focus {
  outline: none;
}
.cid-uEHehf1Ywf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEHehf1Ywf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEHehf1Ywf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEHehf1Ywf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEHehf1Ywf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEHehf1Ywf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEHehf1Ywf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uEHehf1Ywf .navbar.opened {
  transition: all 0.3s;
}
.cid-uEHehf1Ywf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEHehf1Ywf .navbar .navbar-logo img {
  width: auto;
}
.cid-uEHehf1Ywf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEHehf1Ywf .navbar.collapsed {
  justify-content: center;
}
.cid-uEHehf1Ywf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEHehf1Ywf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEHehf1Ywf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uEHehf1Ywf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEHehf1Ywf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEHehf1Ywf .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-uEHehf1Ywf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEHehf1Ywf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEHehf1Ywf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEHehf1Ywf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEHehf1Ywf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEHehf1Ywf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEHehf1Ywf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEHehf1Ywf .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-uEHehf1Ywf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEHehf1Ywf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEHehf1Ywf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEHehf1Ywf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEHehf1Ywf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEHehf1Ywf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uEHehf1Ywf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEHehf1Ywf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEHehf1Ywf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEHehf1Ywf .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-uEHehf1Ywf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEHehf1Ywf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEHehf1Ywf .dropdown-item.active,
.cid-uEHehf1Ywf .dropdown-item:active {
  background-color: transparent;
}
.cid-uEHehf1Ywf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEHehf1Ywf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEHehf1Ywf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEHehf1Ywf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uEHehf1Ywf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEHehf1Ywf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEHehf1Ywf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEHehf1Ywf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEHehf1Ywf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEHehf1Ywf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uEHehf1Ywf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEHehf1Ywf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEHehf1Ywf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEHehf1Ywf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEHehf1Ywf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEHehf1Ywf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEHehf1Ywf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEHehf1Ywf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEHehf1Ywf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEHehf1Ywf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEHehf1Ywf .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-uEHehf1Ywf .navbar {
    height: 70px;
  }
  .cid-uEHehf1Ywf .navbar.opened {
    height: auto;
  }
  .cid-uEHehf1Ywf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEHeMBdYzS {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uEHeMBdYzS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEHeMBdYzS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEHeMBdYzS .mbr-section-title {
  color: #0c94e8;
}
.cid-uEHeMBdYzS .mbr-section-subtitle {
  text-align: left;
}
.cid-uEHeMBdYzS .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uEHfKB2fSo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uEHfKB2fSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEHfKB2fSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uEHfKB2fSo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEHfKB2fSo .row {
  flex-direction: row-reverse;
}
.cid-uEHfKB2fSo img {
  width: 50%;
}
.cid-uEHfKB2fSo .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cid-uEHfKB2fSo .image-wrapper img {
  max-width: 100%;
  height: auto;
}
.cid-uEHeNuzSz8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uEHeNuzSz8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uEHeNuzSz8 form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uEHeNuzSz8 form.mbr-form {
    padding: 3rem 2rem;
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-uEHeNuzSz8 form.mbr-form {
    padding: 1rem;
  }
}
.cid-uEHeNuzSz8 form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uEHeNuzSz8 form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uEHeNuzSz8 .mbr-section-title {
  color: #0c94e8;
}
#custom-html-45 {
  /* Type valid CSS here */
}
#custom-html-45 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-45 p {
  font-size: 60px;
  color: #777;
}
.cid-uEHehkbUHp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c94e8;
}
.cid-uEHehkbUHp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uEHehkbUHp .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uEHehkbUHp .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uEHehkbUHp .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uEHehkbUHp .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uEHehkbUHp .row .foot-menu li p {
  margin: 0;
}
.cid-uEHehkbUHp .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uEHehkbUHp .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uEHehkbUHp .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uEHehkbUHp .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uEHehkbUHp .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEHehkbUHp .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uEHehkbUHp .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uEHehkbUHp .row .row-copirayt p {
  width: 100%;
}
.cid-uEHehkbUHp .image-section {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uEHehkbUHp .group-title,
.cid-uEHehkbUHp .image-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.cid-uEHehkbUHp .horizontal-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.cid-uEHehkbUHp .image-item {
  text-align: center;
}
.cid-uEHehkbUHp .horizontal-image {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uEHehkbUHp .single-image {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
}
.cid-uEHehkbUHp .additional-image {
  width: 200px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cid-uEHehkbUHp H2 {
  color: #bbbbbb;
}
.cid-uEHehkbUHp foot-menu-item {
  color: #ffe885;
}
.cid-uEHehliQQt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uEHehliQQt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uEHehliQQt .row {
  flex-direction: row-reverse;
}
.cid-uEHehliQQt img {
  width: 100%;
}
